Skip to main content
geoffjay
Perfil de criador do GitHub

geoffjay

Visão por repositório de 53 skills coletadas em 6 repositórios do GitHub.

skills coletadas
53
repositórios
6
atualizado
2026-08-03
explorador de repositórios

Repositórios e skills representativas

clap-patterns
Desenvolvedores de software

Common Clap patterns and idioms for argument parsing, validation, and CLI design. Use when implementing CLI arguments with Clap v4+.

2025-11-04
cli-configuration
Desenvolvedores de software

Configuration management patterns including file formats, precedence, environment variables, and XDG directories. Use when implementing configuration systems for CLI applications.

2025-11-04
cli-distribution
Desenvolvedores de software

Distribution and packaging patterns including shell completions, man pages, cross-compilation, and release automation. Use when preparing CLI tools for distribution.

2025-11-04
cli-ux-patterns
Desenvolvedores de software

CLI user experience best practices for error messages, colors, progress indicators, and output formatting. Use when improving CLI usability and user experience.

2025-11-04
tokio-concurrency
Desenvolvedores de software

Advanced concurrency patterns for Tokio including fan-out/fan-in, pipeline processing, rate limiting, and coordinated shutdown. Use when building high-concurrency async systems.

2025-11-04
tokio-networking
Desenvolvedores de software

Network programming patterns with Hyper, Tonic, and Tower. Use when building HTTP services, gRPC applications, implementing middleware, connection pooling, or health checks.

2025-11-04
tokio-patterns
Desenvolvedores de software

Common Tokio patterns and idioms for async programming. Use when implementing worker pools, request-response patterns, pub/sub, timeouts, retries, or graceful shutdown.

2025-11-04
tokio-troubleshooting
Desenvolvedores de software

Debugging and troubleshooting Tokio applications using tokio-console, detecting deadlocks, memory leaks, and performance issues. Use when diagnosing async runtime problems.

2025-11-04
Mostrando as 8 principais de 22 skills coletadas neste repositório.
agent-memory
Outras ocupações de informática

Store, search, and manage shared knowledge through the memory service. Use for persisting information across agent sessions, semantic search over stored knowledge, and inter-agent knowledge sharing.

2026-06-17
agent-knowledge
Outras ocupações de informática

Browse, read, and author per-project knowledgebase documents through the knowledge service CLI. Use for creating, updating, listing, and reading markdown documents stored against a project, and reconciling DB rows against disk.

2026-06-17
release
Desenvolvedores de software

Cut a new agentd release. Suggests the next semver version from conventional commits (or accepts an explicit `x.y.z`), bumps the workspace version, regenerates the changelog with git-cliff, then commits, tags, and pushes the `v*` tag that triggers the Release workflow. Use when the user runs /release or asks to publish/cut/tag a new version.

2026-06-07
create-plan-issue
Desenvolvedores de software

Create a new GitHub plan issue with the "Plan: <title>" format, appropriate labels, and structured body. Use when the user wants to capture a high-level plan for future work.

2026-05-12
agent-ask
Administradores de redes e sistemas de computador

Ask the human user a question during workflow execution and check for answers. Use for agent-to-human Q&A, collecting decisions, and reacting to human responses via ask_response workflow triggers.

2026-04-04
git-spice
Desenvolvedores de software

Branch stacking and PR management with git-spice for the agentd project. Use when creating stacked branches, submitting PRs, syncing with upstream, resolving rebase conflicts, or navigating a branch stack.

2026-03-22
agent-communicate
Desenvolvedores de software

Create, list, and manage conversation rooms, participants, and messages through the communicate service. Use for inter-agent messaging, room management, real-time message watching, and participant coordination.

2026-03-20
agent-apply
Administradores de redes e sistemas de computador

Apply and teardown declarative YAML templates for agents and workflows. Use for deploying agent stacks from .agentd/ directories, validating templates, and cleaning up resources.

2026-03-18
Mostrando as 8 principais de 16 skills coletadas neste repositório.
nemo-xml-reference
Desenvolvedores de software

Complete XML configuration reference for Nemo applications including all component types, properties, data sources, expressions, bindings, and templates. Use when writing or debugging Nemo XML config files.

2026-08-03
nemo-xml-reference
Desenvolvedores de software

Complete XML configuration reference for Nemo applications including all component types, properties, data sources, expressions, bindings, and templates. Use when writing or debugging Nemo XML config files.

2026-08-01
nemo-component-patterns
Desenvolvedores de software

Reference for contributing new built-in components to the Nemo source tree (Rust) — the 4-file workflow, NemoComponent derive, RenderOnce vs Render, stateful vs stateless patterns, sizing gotchas, and color resolution. NOT for authoring app.xml configs — use nemo-xml-reference for that.

2026-07-16
nemo-plugin-patterns
Desenvolvedores de software

Native and WASM plugin development patterns for Nemo including PluginContext API, plugin lifecycle, manifest configuration, and build/deploy workflows. Use when creating or debugging Nemo plugins.

2026-07-16
td-task-management
Desenvolvedores de software

Task management for AI agents across context windows. Use when agents need to track work, log progress, hand off state, and maintain context across sessions. Includes workflows for single-issue focus, multi-issue work sessions, and structured handoffs. Essential for AI-assisted development where context windows reset between sessions.

2026-02-12
jughead-components
Desenvolvedores de software

Use jughead's templ-based daisyUI component library in templates/components/daisyui before writing raw daisyUI class markup. MANDATORY when rendering UI in a jughead site or plugin. Use when building pages, layouts, nav, cards, code mockups, buttons, or any daisyUI element within a jughead site.

2026-07-07
layouts
Desenvolvedores de software

Use jughead's site-type layout system in templates/layouts to render full pages for a category of site (documentation, blog, admin, SaaS landing). Use when designing a new site, picking a layout, composing a page body into a layout Config, or adding a new site-type layout.

2026-07-07
provider-plugin
Desenvolvedores de software

Develop jughead auth-provider plugins (.so) that ship OAuth/credential flows loaded at runtime by the host. Use when building a new provider, scaffolding with `jughead init --plugin provider`, implementing sdk/auth.Provider/ProviderInstance, or wiring AuthConfig onto a site.

2026-07-07
site-design
Desenvolvedores de software

Design preferences and conventions for building jughead sites — templ-first rendering, daisyUI 5 via jughead's typed component wrappers, htmx for interactivity, link resolution that survives the reverse proxy, and per-site theming. Use when designing a new site, choosing components, theming, or making UI/UX decisions within jughead.

2026-07-07
site-plugin
Desenvolvedores de software

Develop jughead site plugins (.so) that ship templ/gini-rendered sites loaded at runtime by the host. Use when building a new site, scaffolding with `jughead init`, writing a Site's Template/Proxy/Routes, or referencing the sdk.Site contract across the .so boundary.

2026-07-07
templ-charts-composition
Desenvolvedores web

Build custom charts from templ-charts' Use* layout hooks — compute scales/series/generators with UseLine (or UseBar, UsePie, …), reuse the exported grid/axes/lines sub-components, and hand-write SVG marks (custom point symbols, direct labels, sparklines). Use when a stock templ-charts chart component isn't enough and you need a bespoke chart or custom layer.

2026-07-06
templ-charts-interactivity
Desenvolvedores web

Add interactivity to templ-charts charts — hover tooltips, line crosshair/slices, HTMX series toggle and hierarchy zoom, hover-highlight for chord/sankey/network, SMIL animation, resize re-fetch, and the Canvas backend for large datasets. Use when making a templ-charts chart interactive, wiring charts/htmx endpoints, or rendering big scatterplots/heatmaps.

2026-07-06
templ-charts
Desenvolvedores web

Render server-side SVG charts in Go with templ-charts — nivo-style templ components covering 28 chart families (bar, line, pie, heatmap, treemap, sankey, geo, …). Use when adding a chart to a Go templ/HTMX app, choosing a chart's data shape, rendering a chart to an SVG string, or wiring sample data. For hover/HTMX interactivity see templ-charts-interactivity; for colors/themes/legends see templ-charts-theming; for custom charts see templ-charts-composition.

2026-07-06
templ-charts-theming
Desenvolvedores de software

Style templ-charts charts — color palettes and the five Colors config shapes, custom/dark themes, legends, and gradient/pattern fills with match rules. Use when setting chart colors, building a dark or branded theme, adding a legend, or applying gradients/patterns to templ-charts marks.

2026-07-06
Mostrando 6 de 6 repositórios
Todos os repositórios foram exibidos