By guanyang
Unified hub for managing and executing skills, agents, and commands in Claude Code. Enables AI-assisted workflows including code review, testing, documentation generation, UI creation, multi-agent coordination, and context optimization. Provides 130+ skills, 5 agents, and 3 commands for automating development tasks.
Run when user calls /commit or asks to generate a commit message. Analyzes staged changes and writes a structured commit message.
Run when user calls /review. Analyzes local changes and runs a comprehensive code review using the agent-reviewer prompt.
Run when user calls /test-tdd. Scans modified files, locates their corresponding unit/integration test suites, and runs them.
Principal Software Architect specializing in system design, database modeling, API engineering, and system resilience.
Principal Diagnostics Engineer specializing in root cause analysis, error troubleshooting, and hotfixes.
Principal Clean Code Specialist specializing in code simplification, performance tuning, and refactoring loops.
Senior Technical Lead and Security Auditor specializing in code quality, correctness, and security audits.
Senior QA Automation Engineer specializing in unit, integration, and E2E test suite creation.
Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.
This skill should be used when designing autonomous agent harnesses: research loops, evaluation scaffolds, locked and editable surfaces, durable logs, novelty gates, pruning, rollback, PR preparation, and human approval boundaries.
This skill should be used for advanced LLM evaluation: LLM-as-judge systems, direct scoring, pairwise comparison, rubric calibration, evaluator bias mitigation, confidence scoring, and automated quality assessment.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Analyzes article structure, identifies positions requiring visual aids, generates illustrations with Type × Style × Palette three-dimension approach. Use when user asks to "illustrate article", "add images", "generate images for article", or "为文章配图".
External network access
Connects to servers outside your machine
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
English | 简体中文
A lightweight, zero-dependency CLI tool to manage and activate capabilities for AI coding assistants (such as Claude Code, Cursor, Trae, etc.). With a single command, you can link Skills (modular prompting), Agents (expert workflow roles), and Commands (slash commands) to your project workspaces or global system configurations.
.
├── agents/ # System prompts for expert Agents (agent-*.md)
├── commands/ # Agent runtime Slash Commands (*.md)
├── docs/ # Technical specs and user guidelines
├── scripts/ # CLI manager source code (hub.js)
├── skills/ # Modular capability skills (83+ skills)
├── spec/ # Technical specification definitions for capabilities
├── template/ # Development templates for Skills, Agents, and Commands
├── AGENTS.md # Project-level LLM coding guidelines
├── CLAUDE.md # Claude-specific coding guidelines
├── GEMINI.md # Gemini-specific coding guidelines
├── CHANGELOG.md # Changelog of project versions
├── CONTRIBUTING.md # Community guidelines for contributions
├── LICENSE # MIT license file
├── SECURITY.md # Vulnerability reporting policies
├── package.json # CLI configuration and npm registration
├── skills_index.json # Scanned and generated global metadata index for skills
├── skills_sources.json # Data sources configuration for `oah sync` command
├── README.md # English documentation (this file)
└── README.zh-CN.md # Chinese translation documentation
(Note: AGENTS.md, CLAUDE.md, and GEMINI.md contain project-level LLM coding behavioral guidelines, derived from andrej-karpathy-skills)
To maintain clean and focused documentation, deep-dive specifications have been moved under the docs/ directory. Please refer to:
/commit, /review, and /test-tdd).open-agent-hub follows standardized Markdown prompts with YAML frontmatter metadata. The CLI dynamically links components (Skills, Agents, Commands) to their respective subdirectories (/skills/, /agents/, /commands/) within the project or global configuration directories of the AI assistant:
| Tool Name (Agent) | Type | Compatibility | Project Path (Workspace) | Global Path (System) |
|---|---|---|---|---|
| Claude Code | CLI | ✅ Full | .claude/ | ~/.claude/ |
| Antigravity | IDE | ✅ Full | .agents/ | ~/.gemini/antigravity/ |
| Gemini CLI | CLI | ✅ Full | .gemini/ | ~/.gemini/ |
| Codex | CLI | ✅ Full | .codex/ | ~/.codex/ |
| Cursor | IDE | ✅ Full | .cursor/ | ~/.cursor/ |
| Trae | IDE | ✅ Full | .trae/ | ~/.trae/ |
| OpenCode | CLI | ✅ Full | .opencode/ | ~/.config/opencode/ |
| Kiro | CLI/Agent | ✅ Full | .kiro/ | ~/.kiro/ |
[!TIP] The CLI tool (
oah) links files into subdirectories under these paths, e.g.,<Path>/skills/for skills,<Path>/agents/for agents, and<Path>/commands/for slash commands.
Clone this repository locally (it is recommended to place it in a fixed location for global reference):
git clone https://github.com/guanyang/open-agent-hub.git ~/open-agent-hub
In the root directory, run the link command to register the CLI manager open-agent (with aliases open-agent-hub, oah, ahub):
cd ~/open-agent-hub
npm link
After linking, you can manage your local agent environments from anywhere:
# List all dynamically scanned Skills, Agents, and Commands
oah list
# Check link status in your current project workspace (default behavior)
oah status
# Check link status in global system configurations (e.g. ~/.claude/)
oah status --global
# Enable a specific component inside the current project workspace
oah enable canvas-design
# Enable all components (Skills, Agents, Commands) in current project workspace (defaults to all)
oah enable
# Enable all components in project workspace for Cursor (links to .cursor/)
oah enable --target=cursor
# Enable all components in project workspace for ALL supported targets
oah enable --target=all
# Enable all components globally for ALL supported targets
oah enable --global --target=all
npx claudepluginhub guanyang/open-agent-hub --plugin open-agent-hubSuper Publisher plugin for automated content publishing, multi-platform support.
Harness for Claude Code — skills, /harness:* slash commands, persona subagents, lifecycle hooks, and MCP tools without per-repo `harness setup`. Sibling plugins exist for Cursor, Gemini CLI, and Codex.
Automatically detects and loads AGENTS.md files to provide agent-specific instructions alongside CLAUDE.md. Enables specialized agent behaviors without manual intervention.
Multi-agent collaboration plugin for Claude Code. Spawn N parallel subagents that compete on code optimization, content drafts, research approaches, or any problem that benefits from diverse solutions. Evaluate by metric or LLM judge, merge the winner. 7 slash commands, agent templates, git DAG orchestration, message board coordination.
This skill should be used when the model's ROLE_TYPE is orchestrator and needs to delegate tasks to specialist sub-agents. Provides scientific delegation framework ensuring world-building context (WHERE, WHAT, WHY) while preserving agent autonomy in implementation decisions (HOW). Use when planning task delegation, structuring sub-agent prompts, or coordinating multi-agent workflows.
Production-grade engineering skills for AI coding agents — covering the full software development lifecycle from spec to ship.
Skill and agent authoring tools: generate, audit, and improve Claude Code skills, commands, and agents