Skip to content

duyet/claude-plugins

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

118 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Claude Plugins

GitHub Release License Plugins

Extend Claude Code with specialized agents, commands, and skills.

A collection of production-quality plugins for Claude Code, including autonomous agents, workflow automation, and developer tools.

Latest Release: v1.0.0 | CHANGELOG | Issues

Available on skills.sh β€” the open agent skills ecosystem.

Quick Install

# 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-plugins

Alternative: Skills CLI

Install via the open Skills ecosystem, works with Claude Code, Cursor, GitHub Copilot, Gemini, Windsurf, and 15+ other agents:

npx skills add duyet/claude-plugins

Usage Examples

Parallel Team Execution

# Delegate to team agents for parallel work
/duyetbot:spawn Implement the frontend dashboard
# Leader coordinates senior + junior engineers working in parallel

Smart GitHub Workflow

# Automatically creates feature branch from main
/gh-pr create "Add user settings page"
# Detects main/master, creates feature/X branch, implements, creates PR

Plugins at a Glance

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...

Plugin Details

πŸ‘₯ team-agents

Leader, Senior Engineer, and Junior Engineer agents for coordinated parallel task execution

  - `/leader`

Components:

Agents:

  • junior-engineer
  • leader
  • senior-engineer

Skills:

  • backend-api-patterns
  • quality-gates
  • react-nextjs-patterns
  • task-decomposition
  • typescript-patterns

πŸ“ commit

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 request

🎨 frontend-design

Create distinctive, production-grade frontend interfaces avoiding AI slop aesthetics. Emphasizes shadcn/ui, Recharts, and bold design choices.

Components:

Skills:

  • frontend-design

πŸ’¬ interview

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 details

πŸ“Š statusline

Configurable 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`

🎼 orchestration

Orchestrator skill for managing parallel agent workstreams. Transform complex requests into coordinated multi-agent execution with elegant result synthesis.

Components:

Skills:

  • orchestration

πŸ€– duyetbot

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 reasoning

Components:

Agents:

  • duyetbot

Skills:

  • duyet-knowledge
  • engineering-discipline
  • team-coordination
  • transparency

🎯 docs-generator

Automatically generate and maintain plugin documentation (README.md, CLAUDE.md)

  - `/generate-docs`: Manually trigger documentation generation for all plugins

πŸ™ github

GitHub 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

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 PR

Supported Projects:

  • Python (pytest, ruff, mypy)
  • Node/TypeScript (jest, vitest, eslint, tsc)
  • Rust (cargo test, clippy)
  • Go (go test, golint)

Components:

Skills:

  • test-detection

πŸ“ˆ clickhouse-monitoring

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


Manual Installation

Add to ~/.claude/settings.json:

{
  "extraKnownMarketplaces": {
    "duyet-claude-plugins": {
      "source": { "source": "github", "repo": "duyet/claude-plugins" }
    }
  },
  "enabledPlugins": {
    "team-agents@duyet-claude-plugins": true
  }
}

Contributing

your-plugin/
β”œβ”€β”€ .claude-plugin/plugin.json   # name, version, description
β”œβ”€β”€ agents/                      # .md with YAML frontmatter
β”œβ”€β”€ commands/                    # slash commands
β”œβ”€β”€ skills/                      # reusable knowledge
└── hooks/hooks.json             # lifecycle hooks

Update marketplace.json β†’ PR β†’ Done


License

MIT License - See individual plugin directories for details.

Links


About

Claude Code plugins

Resources

Code of conduct

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors