Help us improve
Share bugs, ideas, or general feedback.
Claude Code 插件市场 - 包含实用的中文插件
npx claudepluginhub blueif16/amazing-claude-code-plugins美化 Git Commit 消息的中文工具,支持多种风格(正常、详细、简洁、可爱)
完整的Claude Code插件开发生命周期管理系统 - 创建、更新、发布插件
自我改进的PRD执行系统,支持渐进式升级和并行处理
开发者常用工具集,包含插件缓存刷新等实用功能
From one sentence to a coordinated agent team. Intent → DAG → Execute → Browser Verify → Fix Loop.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 84 marketplace plugins, 192 local specialized agents, and 156 local skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
这是一个包含实用中文插件的 Claude Code 插件市场。
自我改进的PRD执行系统,支持渐进式升级和并行处理。通过主协调器拆分PRD,在独立的tmux会话中并行执行,自动修复失败,智能升级到研究员或人工。
目录结构:
项目根目录/
├── docs/prds/{project}/
│ ├── meta.yaml # 项目元数据和部分状态
│ └── sections/
│ ├── auth/
│ │ ├── mini-prd.md # 部分需求文档
│ │ └── .task/
│ │ ├── mini-prd.md
│ │ └── checklist.md
│ └── api/...
│
└── ../worktrees/ # 并行工作区(git worktree)
├── auth/ # 独立分支工作区
│ └── .task/ # 任务文件
└── api/...
架构图:
/init
│
▼
┌─────────────────────────────────────────────────┐
│ MAIN COORDINATOR │
│ │
│ prd-orchestrator ─→ execution-manager │
│ │ │ │
│ ▼ ▼ │
│ [mini-PRDs] [spawn tmux+worktrees] │
└─────────────────────────────────────────────────┘
│
┌──────────────────┼──────────────────┐
▼ ▼ ▼
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
│ SUB COORDINATOR │ │ SUB COORDINATOR │ │ SUB COORDINATOR │
│ │ │ │ │ │
│ fix-engine │ │ fix-engine │ │ fix-engine │
│ │ │ │ │ │ │ │ │
│ ▼ │ │ ▼ │ │ ▼ │
│ executor ◄──┐ │ │ executor │ │ executor │
│ │ │ │ │ │ │ │ │ │
│ ▼ │ │ │ ▼ │ │ ▼ │
│ validator ──┘ │ │ validator │ │ validator │
│ (≤3x) │ │ │ │ │
│ │ │ │ │ │ │
│ ▼ │ │ │ │ │
│ escalation-router│ │ │ │ │
│ │ │ │ │ │ │ │
│ ▼ ▼ │ │ │ │ │
│researcher documenter │ │ │
└─────────────────┘ └─────────────────┘ └─────────────────┘
并行执行机制:
Git Worktree 隔离:
# 每个部分在独立的 worktree 中执行
git worktree add ../worktrees/auth -b project/auth
git worktree add ../worktrees/api -b project/api
# 避免分支切换冲突,真正并行开发
../worktrees/auth/ # 独立的 git 工作区
../worktrees/api/ # 独立的 git 工作区
Tmux 会话管理:
# 创建会话并初始化子协调器
tmux new-session -d -s auth -c ../worktrees/auth \
claude "You are Sub Coordinator for auth. Read fix-engine skill. Begin."
# 监控会话
tmux ls # 列出所有会话
tmux capture-pane -t auth -p | tail -50 # 查看输出
tmux attach -t auth # 附加观察(Ctrl+B D 分离)
tmux send-keys -t auth "Handle edge case" Enter # 发送指令
功能特点:
使用方法:
# 从PRD文件启动
/init ./docs/feature-prd.md
# 监控执行
tmux ls # 查看所有会话
tmux attach -t auth # 附加到特定部分
# 查看完成日志
tail -f ~/.infistack/completion.log
美化 Git Commit 消息的中文工具,让你的提交记录更加优雅、规范或可爱!
功能特点:
自管理的插件系统,用于创建、更新和发布 Claude Code 命令。
功能特点:
# 进入 marketplace 目录
cd /path/to/plugin-market-marketplace
# 启动 Claude Code
claude
# 添加本地 marketplace
/plugin marketplace add ./
# 安装插件
/plugin install beautify-commit@plugin-market-marketplace
/plugin install skillforge@plugin-market-marketplace
# 重启 Claude Code 后使用
/beautify-commit
/create-skill
/update-skill
/sync-marketplace
# 添加 GitHub marketplace
/plugin marketplace add yourusername/plugin-market-marketplace
# 安装插件
/plugin install beautify-commit@plugin-market-marketplace
安装完成后,在你的项目中运行:
/beautify-commit
首次使用时会询问你喜欢的 commit 风格,之后会自动记住你的选择。
创建新命令:
/create-skill
更新现有命令:
/update-skill
同步到 Git:
/sync-marketplace
查看最佳实践:
/skillforge-knowledge