A lightweight, zero-dependency CLI tool to manage and activate capabilities for AI coding assistants (such as Claude Code, Cursor, Trae, etc.).
> /plugin marketplace add guanyang/open-agent-hub> /plugin install open-agent-hub@open-agent-hub
Repo: guanyang/open-agent-hub
What's inside
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.
You can install and manage skills either directly using Vercel's standard skills CLI, or via our built-in zero-dependency manager (oah) which also supports managing Agents and Slash Commands.
skills CLI (Easiest)If you only need to use the modular Skills and are using a compatible agent (like Claude Code, Cursor, etc.), you can use Vercel's official skills CLI to install them directly from this repository without cloning:
# Add all skills from this repository
npx skills@latest add guanyang/open-agent-hub
# Add a specific skill (e.g., remotion)
npx skills@latest add guanyang/open-agent-hub --skill remotion
oah)If you want to manage Skills, Agents, and Slash Commands dynamically via local symlinks, or if you want to sync upstream sources, you can clone the repository and use our CLI tool:
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
# Enable all components globally (system-level)
oah enable --global
# Enable all components in a custom target directory (auto-creates subdirectories dynamically)
oah enable --path=/path/to/my_agent_dir
# Disable all components inside the current project workspace
oah disable
<name>: Enable/disable a single component by its name/ID.--skills: Enable/disable only all Skills components.--agents: Enable/disable only all Agents components.--commands: Enable/disable only all Commands components.--all, -a: Enable/disable all Skills, Agents, and Commands (default behavior when no arguments are provided).-p, --project (default): Project-level activation (links config directories inside your current working directory, e.g. .claude/).-g, --global: System global level activation (e.g., links into user home config folder, like ~/.claude/).-t, --target <name>: Target environment to link to (supported: claude, antigravity, gemini, codex, cursor, trae, opencode, kiro and all to configure all of them, default: claude).--path <dir_path>: Custom base directory to link components into (creates and links within skills/, agents/, and commands/ subdirectories automatically).Many modular skills in the skills/ directory originate from active open-source communities. You can sync them with upstream sources using the CLI or the underlying script:
# Sync all configured sources
oah sync
# Sync only a specific source (e.g., anthropics-skills)
oah sync anthropics-skills
Note: Configured upstream sources are stored in skills_sources.json. You can also execute this directly via ./scripts/sync_skills.sh.
This project is licensed under the MIT License.
.agents/
plugins/
marketplace.json
.claude-plugin/
marketplace.json
plugin.json
.codex-plugin/
plugin.json
.github/
ISSUE_TEMPLATE/
bug_report.md
feature_request.md
workflows/
release.yml
sync-skills.yml
.gitignore
.mcp.json
agents/
AGENTS.md
agent-architect.md
agent-debugger.md
agent-refactorer.md
agent-reviewer.md
agent-tester.md
assets/
icon.png
logo.png
CHANGELOG.md
CLAUDE.md
commands/
commit.md
review.md
test-tdd.md
CONTRIBUTING.md
docs/
Agent_Guidelines.md
backup/
Antigravity_Skills_Manual.en.md
Antigravity_Skills_Manual.zh-CN.md
Command_Guidelines.md
Skill_Guidelines.md
GEMINI.md
LICENSE
package.json
README.md
README.zh-CN.md
scripts/
hub.js
release.sh
sync_skills.sh
update_skills_index.py
SECURITY.md
skills/
advanced-evaluation/
references/
bias-mitigation.md
evaluation-pipeline.md
implementation-patterns.md
metrics-guide.md
scripts/
evaluation_example.py
SKILL.md
algorithmic-art/
LICENSE.txt
SKILL.md
templates/
generator_template.js
viewer.html
baoyu-article-illustrator/
prompts/
system.md
references/
codex-imagegen.md
config/
first-time-setup.md
preferences-schema.md
palettes/
macaron.md
mono-ink.md
neon.md
warm.md
prompt-construction.md
style-presets.md
styles/
styles.md
blueprint.md
chalkboard.md
editorial.md
elegant.md
fantasy-animation.md
flat-doodle.md
flat.md
ink-notes.md
intuition-machine.md
minimal.md
nature.md
notion.md
pixel-art.md
playful.md
retro.md
scientific.md
screen-print.md
sketch-notes.md
sketch.md
vector-illustration.md
vintage.md
warm.md
watercolor.md
usage.md
workflow.md
SKILL.md
baoyu-comic/
references/
analysis-framework.md
art-styles/
chalk.md
ink-brush.md
ligne-claire.md
manga.md
minimalist.md
realistic.md
auto-selection.md
base-prompt.md
character-template.md
codex-imagegen.md
config/
first-time-setup.md
preferences-schema.md
watermark-guide.md
layouts/
cinematic.md
dense.md
four-panel.md
mixed.md
splash.md
standard.md
webtoon.md
ohmsha-guide.md
partial-workflows.md
presets/
concept-story.md
four-panel.md
ohmsha.md
shoujo.md
wuxia.md
storyboard-template.md
tones/
action.md
dramatic.md
energetic.md
neutral.md
romantic.md
vintage.md
warm.md
workflow.md
scripts/
merge-to-pdf.ts
SKILL.md
baoyu-compress-image/
scripts/
main.ts
SKILL.md
baoyu-cover-image/
references/
auto-selection.md
base-prompt.md
codex-imagegen.md
compatibility.md
config/
first-time-setup.md
preferences-schema.md
watermark-guide.md
dimensions/
font.md
mood.md
text.md
palettes/
cool.md
dark.md
duotone.md
earth.md
elegant.md
macaron.md
mono.md
pastel.md
retro.md
vivid.md
warm.md
renderings/
chalk.md
digital.md
flat-vector.md
hand-drawn.md
painterly.md
pixel.md
screen-print.md
style-presets.md
types.md
visual-elements.md
workflow/
confirm-options.md
prompt-template.md
reference-images.md
SKILL.md
baoyu-danger-gemini-web/
scripts/
bun.lock
gemini-webapi/
client.test.ts
client.ts
components/
gem-mixin.ts
index.ts
constants.ts
exceptions.ts
index.ts
types/
candidate.ts
gem.ts
grpc.ts
image.ts
index.ts
modeloutput.ts
utils/
cookie-file.ts
decorators.ts
get-access-token.ts
http.ts
index.ts
load-browser-cookies.ts
logger.ts
parsing.ts
paths.ts
rotate-1psidts.ts
upload-file.ts
main.ts
package.json
SKILL.md
baoyu-danger-x-to-markdown/
references/
config/
first-time-setup.md
scripts/
bun.lock
constants.ts
cookie-file.ts
cookies.ts
graphql.ts
http.ts
main.ts
markdown.test.ts
markdown.ts
media-localizer.ts
package.json
paths.ts
referenced-tweets.ts
thread-markdown.ts
thread.ts
tweet-article.ts
tweet-to-markdown.ts
types.ts
SKILL.md
baoyu-diagram/
references/
architecture.md
flowchart.md
sequence.md
structural.md
scripts/
main.ts
SKILL.md
baoyu-electron-extract/
scripts/
main.test.ts
main.ts
SKILL.md
baoyu-format-markdown/
references/
title-formulas.md
scripts/
autocorrect.ts
bun.lock
main.ts
package-lock.json
package.json
quotes.ts
SKILL.md
baoyu-image-cards/
references/
config/
first-time-setup.md
preferences-schema.md
watermark-guide.md
confirmation.md
elements/
canvas.md
decorations.md
image-effects.md
typography.md
palettes/
macaron.md
neon.md
warm.md
presets/
bold.md
chalkboard.md
cute.md
fresh.md
minimal.md
notion.md
pop.md
retro.md
screen-print.md
sketch-notes.md
study-notes.md
warm.md
style-presets.md
workflows/
analysis-framework.md
outline-template.md
prompt-assembly.md
SKILL.md
baoyu-image-gen/
references/
codex-image2-fallback.md
codex-oauth-vs-openai-api-key.md
config/
first-time-setup.md
preferences-schema.md
providers/
agnes.md
codex-cli.md
dashscope.md
minimax.md
openrouter.md
replicate.md
zai.md
usage-examples.md
scripts/
build-batch.test.ts
build-batch.ts
codex-imagegen/
cache.ts
logger.ts
main.ts
parser.ts
spawn.ts
types.ts
validator.ts
main.test.ts
main.ts
providers/
agnes.test.ts
agnes.ts
azure.test.ts
azure.ts
codex-cli.test.ts
codex-cli.ts
dashscope.test.ts
dashscope.ts
google.test.ts
google.ts
jimeng.test.ts
jimeng.ts
minimax.test.ts
minimax.ts
openai.test.ts
openai.ts
openrouter.test.ts
openrouter.ts
replicate.test.ts
replicate.ts
seedream.test.ts
seedream.ts
zai.test.ts
zai.ts
types.ts
SKILL.md
baoyu-imagine/
references/
codex-image2-fallback.md
codex-oauth-vs-openai-api-key.md
config/
first-time-setup.md
preferences-schema.md
providers/
dashscope.md
minimax.md
openrouter.md
replicate.md
zai.md
usage-examples.md
scripts/
build-batch.test.ts
build-batch.ts
main.test.ts
main.ts
providers/
azure.test.ts
azure.ts
... 1600 moreShowing a partial view of a very large repo.
FAQ
open-agent-hub is a Claude Code plugin with 106 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes advanced-evaluation, algorithmic-art, baoyu-article-illustrator. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.