Extend Claude Code and Codex with specialized agents, commands, and skills from one shared plugin collection.
A collection of production-quality plugins for Claude Code and Codex, including autonomous agents, workflow automation, statusline utilities, prompt engineering guidance, and developer tools.
Latest Release: v1.0.0 | CHANGELOG | Issues
Available on skills.sh — the open agent skills ecosystem.
Use Claude Code's plugin marketplace commands:
# Add marketplace
/plugin marketplace add duyet/claude-plugins
# Install plugins
/plugin install team-agents@duyet-claude-plugins
/plugin install commit@duyet-claude-plugins
/plugin install frontend-design@duyet-claude-plugins
/plugin install interview@duyet-claude-plugins
/plugin install statusline@duyet-claude-plugins
/plugin install orchestration@duyet-claude-plugins
/plugin install duyetbot@duyet-claude-plugins
/plugin install docs-generator@duyet-claude-plugins
/plugin install github@duyet-claude-plugins
/plugin install fix@duyet-claude-plugins
/plugin install clickhouse-monitoring@duyet-claude-pluginsCodex support is provided through the repo-local Codex marketplace file:
git clone https://github.com/duyet/claude-plugins.git
cd claude-pluginsThen add or import the local Codex marketplace from:
.agents/plugins/marketplace.json
That marketplace points each plugin at the matching local folder, for example:
{
"name": "github",
"source": {
"source": "local",
"path": "./github"
}
}After the marketplace is added in Codex, install the plugins you want from the Duyet Claude and Codex Plugins marketplace. Codex-facing workflow skills are available under each plugin's skills/ folder, including wrappers for Claude command-heavy plugins such as commit, github, fix, statusline, team-agents, and duyetbot.
Install via the open Skills ecosystem, works with Claude Code, Cursor, GitHub Copilot, Gemini, Windsurf, and 15+ other agents:
npx skills add duyet/claude-pluginsThis repository also ships Codex plugin metadata in place:
- Each plugin has a
.codex-plugin/plugin.jsonbeside its Claude.claude-plugin/plugin.json. - Codex marketplace entries live in
.agents/plugins/marketplace.json. - Claude slash commands and agents stay in their original folders; Codex-facing wrapper skills live under
skills/*-workflow/SKILL.mdwhere a plugin needs a Codex entry point.
# Delegate to team agents for parallel work
/duyetbot:spawn Implement the frontend dashboard
# Leader coordinates senior + junior engineers working in parallel# Automatically creates feature branch from main
/gh-pr create "Add user settings page"
# Detects main/master, creates feature/X branch, implements, creates PR| Plugin | Type | What it does |
|---|---|---|
| 👥 team-agents | Skill | Leader, Senior Engineer, and Junior Engi... |
| 📝 commit | Command | Create a Git commit with semantic commit... |
| 🎨 frontend-design | Skill | Create distinctive, production-grade fro... |
| 💬 interview | Command | Conduct in-depth requirements interviews... |
| 📊 statusline | Hook | Configurable status bar showing context ... |
| 🎼 orchestration | Skill | Orchestrator skill for managing parallel... |
| 🤖 duyetbot | Skill | Pragmatic software development companion... |
| 🎯 docs-generator | Hook | Automatically generate and maintain plug... |
| 🐙 github | Skill | GitHub operations using gh CLI - PRs, is... |
| 🔧 fix | Command | Fix issues, tests, and CI failures with ... |
| 📈 clickhouse-monitoring | Skill | Specialized knowledge for the ClickHouse Mo... |
Leader, Senior Engineer, and Junior Engineer agents for coordinated parallel task execution
Components:
Agents:
- junior-engineer
- leader
- senior-engineer
Skills:
- backend-api-patterns
- quality-gates
- react-nextjs-patterns
- task-decomposition
- typescript-patterns
Create a Git commit with semantic commit message format
- `/commit:commit`: Create a git commit with semantic commit message format
- `/commit:and-push`: Commit and push to remote
- `/commit:and-create-pr`: Commit, push, and create a pull requestCreate distinctive, production-grade frontend interfaces avoiding AI slop aesthetics. Emphasizes shadcn/ui, Recharts, and bold design choices.
Components:
Skills:
- frontend-design
Conduct in-depth requirements interviews using Socratic questioning to clarify implementation details before coding
- `/interview`: Conduct in-depth requirements interview using Socratic questioning to clarify implementation detailsConfigurable status bar showing context usage, API rate limits (5h/7d), git branch, and active tools. Supports 1/2/3 line layouts with smart hiding of empty values.
- `/config`
- `/disable`
- `/setup`Orchestrator skill for managing parallel agent workstreams. Transform complex requests into coordinated multi-agent execution with elegant result synthesis.
Components:
Skills:
- orchestration
Pragmatic software development companion with engineering discipline and transparent execution.
- `/duyetbot`: Summon duyetbot - pragmatic software development companion with transparent execution
- `/learn`: Learn about @duyet and update knowledge base
- `/orchestrate`: Duyetbot orchestrate - coordinate parallel agent workstreams for complex tasks
- `/spawn`: Duyetbot spawn - delegate tasks to team agents for parallel execution
- `/think`: Duyetbot deep thinking - structured problem analysis with visible reasoningComponents:
Agents:
- duyetbot
Skills:
- duyet-knowledge
- engineering-discipline
- team-coordination
- transparency
Automatically generate and maintain plugin documentation (README.md, CLAUDE.md)
- `/generate-docs`: Manually trigger documentation generation for all pluginsGitHub operations using gh CLI - PRs, issues, workflows, repositories, releases, and smart branch detection for implementation workflows
Automatically detects when you're on main/master and creates feature branches before implementing. Handles complete GitHub workflow from branch creation to PR merge.
Components:
Skills:
- github
Fix issues, tests, and CI failures with intelligent problem detection and resolution
Auto-detects project type and runs appropriate checks. Spawns parallel agents for complex multi-file fixes.
- `/fix:and-push`: Fix issues, commit, and push to remote
- `/fix:and-update-pr`: Fix issues and update existing PR
- `/fix:and-create-pr`: Fix issues and create new PRSupported Projects:
- Python (pytest, ruff, mypy)
- Node/TypeScript (jest, vitest, eslint, tsc)
- Rust (cargo test, clippy)
- Go (go test, golint)
Components:
Skills:
- test-detection
Agent Skill for the ClickHouse Monitor dashboard - a real-time monitoring and observability tool for ClickHouse clusters
Covers 45 dashboard pages including query monitoring, table management, merge operations, system metrics, security logs, and API integration with static site patterns.
Components:
Skills:
- clickhouse-monitoring
Add to ~/.claude/settings.json:
{
"extraKnownMarketplaces": {
"duyet-claude-plugins": {
"source": { "source": "github", "repo": "duyet/claude-plugins" }
}
},
"enabledPlugins": {
"team-agents@duyet-claude-plugins": true
}
}your-plugin/
├── .claude-plugin/plugin.json # name, version, description
├── .codex-plugin/plugin.json # Codex manifest and interface metadata
├── agents/ # .md with YAML frontmatter
├── commands/ # slash commands
├── skills/ # reusable knowledge
└── hooks/hooks.json # lifecycle hooks
Update marketplace.json, .claude-plugin/marketplace.json, .agents/plugins/marketplace.json, and both manifest files. Run bash scripts/validate-plugins.sh before opening a PR.
MIT License - See individual plugin directories for details.