Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
npx claudepluginhub blueif16/amazing-claude-code-plugins --plugin skillforgeUses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Claude Code 插件開發工具包,提供七個專業技能、三個代理和完整的工作流程命令,用於構建高品質插件
Streamline your git workflow with simple commands for committing, pushing, and creating pull requests
Planning, committing, PR management, code polishing, action item extraction, and session handoffs.
Commands for Git operations, commits, and PRs
Workflow skills and shared instructions for coding agents.
Harness-native ECC plugin for engineering teams - 64 agents, 262 skills, 84 legacy command shims, reusable hooks, rules, MCP conventions, and operator workflows for Claude Code plus adjacent agent harnesses
Capture and reconstruct website UI and animations through observation
自我改进的PRD执行系统,支持渐进式升级和并行处理
美化 Git Commit 消息的中文工具,支持多种风格(正常、详细、简洁、可爱)
开发者常用工具集,包含插件缓存刷新等实用功能
From one sentence to a coordinated agent team. Intent → DAG → Execute → Browser Verify → Fix Loop.
这是一个包含实用中文插件的 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