Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By aRustyDev
Generates, validates, and maintains Homebrew formulas for custom taps โ research GitHub repos, detect build systems, batch-create formulas, debug builds/tests, audit with brew style, and manage macOS packages via MCP server.
npx claudepluginhub arustydev/agents --plugin homebrew-devResearch a package and generate a Homebrew formula via the template pipeline
Research and generate multiple Homebrew formulas in parallel from a list of packages
Validate a Homebrew formula with ruby syntax check, brew audit, and brew style
Modifies files
Hook triggers on file write and edit operations
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Multi-agent orchestrator for Claude Code. Track work with convoys, sling to polecats. The Cognition Engine for AI-powered software factories.
Brewcode - full-featured development platform for Claude Code: infinite focus tasks, prompt optimization, skill/agent creation, quorum reviews, rules management
Curated skills for Claude Code and Codex power users - tool selection, workflow optimization, and productivity
Workflow skills and shared instructions for coding agents.
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Production-grade engineering skills for AI coding agents โ covering the full software development lifecycle from spec to ship.
Comprehensive SwiftUI development support for UI testing, integration testing, data-driven apps, and interactive development practices
Comprehensive end-to-end support for building, testing, and deploying cross-browser extensions across Firefox, Chrome, and Safari with modern patterns, WASM integration, and best practices.
Multi-phase blog content creation with personas, templates, and iterative review. Supports tutorials, deep dives, research summaries, and development journals.
Comprehensive job hunting toolkit โ analyze job descriptions, extract resume bullets from career history, identify skill gaps, tailor applications, and research employers with salary data.
Bridge design tools and code generation, enabling seamless translation of design files into production-ready UI code across multiple frameworks.
Reusable Claude Code components: skills, agents, commands, rules, plugins, MCP server configurations, and a universal component management system.
just init # Install deps, init knowledge graph, pull embedding model
just agents --help # CLI tool for component management
content/ Component source of truth
โโโ skills/ SKILL.md files (130+)
โโโ agents/ Agent definitions (markdown + frontmatter)
โโโ commands/ Slash commands (markdown + frontmatter)
โโโ rules/ Instruction rules (markdown)
โโโ plugins/ Plugin bundles (.claude-plugin/plugin.json)
โโโ hooks/ Hook configurations
โโโ output-styles/ Output formatting templates
โโโ reference/ Reference documentation
packages/cli/ TypeScript tooling (Bun + Citty)
โโโ src/
โ โโโ bin/agents.ts CLI entrypoint
โ โโโ commands/ Command modules (verb-first + legacy noun-first)
โ โโโ lib/ Library modules
โ โ โโโ component/ Universal component model (7 providers)
โ โ โโโ skill-*.ts Skill lifecycle (add/find/list/outdated/update/remove/info/init)
โ โ โโโ ... Hash, lockfile, output, runtime, schemas, etc.
โ โโโ client/ Graph viewer frontend
โ โโโ server/ Graph viewer backend
โ โโโ sql/ SQL query files
โโโ test/ bun:test suites (900+ tests)
settings/mcp/ MCP server configurations
docs/src/adr/ Architecture Decision Records
just agents skill add owner/repo@skill # Install a skill
just agents skill find "kubernetes" # Search registries
just agents skill list # List installed skills
just agents skill list --agent claude-code # Filter by agent
just agents skill outdated # Check for updates
just agents skill update # Update outdated skills
just agents skill remove skill-name # Remove a skill
just agents skill info skill-name # Detailed metadata
just agents skill init my-skill # Scaffold new skill
just agents mcp search "postgres" # Search Smithery registry
just agents mcp add smithery://ns/server --client cursor # Add to client config
just agents mcp list --client claude-desktop # List in client config
just agents mcp remove server-name --client cursor # Remove from client
just agents mcp info ns/server-name # Server details
just agents mcp publish --name ns/server --url https://...# Publish to Smithery
just agents component search "kubernetes" # Search all types
just agents component list # List all installed
just agents component list --type agent # Filter by type
just agents plugin check <name> # Validate a plugin
just agents skill validate <name> # Validate skill frontmatter
just kg-search "query" # Semantic search (knowledge graph)
All entity types flow through a universal ComponentProvider interface:
| Provider | ID | Entity Types | Backend |
|---|---|---|---|
| LocalProvider | local | skill | Filesystem (wraps skill-* modules) |
| LocalAgentProvider | local-agent | agent | content/agents/**/*.md |
| LocalPluginProvider | local-plugin | plugin | content/plugins/**/.claude-plugin/ |
| LocalRuleProvider | local-rule | rule | content/rules/**/*.md |
| LocalCommandProvider | local-command | command | content/commands/**/*.md |
| LocalOutputStyleProvider | local-output-style | output-style | content/output-styles/**/*.md |
| SmitheryProvider | smithery | mcp-server | registry.smithery.ai API |
The ComponentManager aggregates search across all providers, deduplicates results, and handles pagination.
MCP servers can be installed to 19 AI client config files:
| Client | Method | Format |
|---|---|---|
| Claude Desktop | file | JSON |
| Claude Code | command | claude mcp add |
| Cursor | file | JSON |
| Windsurf | file | JSON |
| VS Code | command | code --add-mcp |
| Cline, Roo Code, Continue, Zed, Goose, OpenCode, ... | file | JSON/YAML/JSONC |
Curated plugins at .claude-plugin/marketplace.json:
| Plugin | Description |
|---|---|
homebrew-dev | Homebrew formula development |
browser-extension-dev | Cross-browser extension development |
blog-workflow | Technical blog post creation |
job-hunting | Job hunting toolkit |
swiftui-dev | SwiftUI development |
design-to-code | Design-to-code conversion |