By siuninyue
Track long-running AI agent tasks with feature-based progress tracking, test-driven status updates, Git integration, and prog-ui web dashboard
npx claudepluginhub siuninyue/siunin-plugins --plugin progress-trackerShow progress-tracker command help
Complete current feature via deterministic acceptance gatekeeping
Report, list, or fix bugs with smart scheduling and systematic debugging
Initialize project progress tracking with feature breakdown
Sync project capability memory from git history with batch confirmation
Start implementing the next pending feature
Record a structured progress update (status/decision/risk/handoff/assignment/meeting)
Create architectural plan with technology selection and system design
Reset active progress tracking files with confirmation and auto-archive
Launch Progress UI web server and open browser
Undo the last completed feature and revert its code changes
Display project progress status
This skill should be used when the user runs "/prog init", asks to "initialize progress tracking", "break down a goal into features", "create a feature list with test steps", or needs to start a new tracked project.
This skill should be used when the user asks to "/prog done", "complete feature", "mark feature as done", "finish implementation", or runs the prog-done command. Handles feature verification, progress tracking updates, and Git commits.
This skill should be used when feature complexity is complex (score 26-40) and the coordinator delegates architecture-heavy or multi-file implementation. Executes brainstorming, planning, and subagent-driven execution with opus and updates workflow and AI metrics.
This skill should be used when feature complexity is simple (score 0-15) and the coordinator delegates low-risk tasks such as single-file changes, clear requirements, and limited test steps. Executes direct TDD with haiku and updates workflow and AI metrics.
This skill should be used when the user runs "/prog plan", asks to "create architecture plan", "choose tech stack", "document architecture decisions", or needs system design guidance before implementation.
This skill should be used when the user asks to "fix a bug", "report a bug", "/prog-fix", "investigate bug", or mentions debugging workflow within progress-tracker plugin. Manages bug discovery, verification, scheduling, and TDD-based fixing.
This skill should be used when the user runs "/prog next", asks to "implement next feature", "start next feature", "continue implementation", or needs to resume interrupted feature execution. Routes features to appropriate implementation paths based on complexity assessment.
This skill should be used when the user asks to "create a git commit", "commit changes", "commit and push", "make a commit", "handle git", "git auto", "git auto start", "git auto done", or "git auto fix", or needs git operations automated with branch/PR/merge decisions.
This skill should be used when the user asks to "/prog log", "sync project memory", "sync capabilities", or requests incremental capability backfill from git history.
This skill should be used when the user asks to "/prog note", "/prog-note", "record a project update", "add status update", "log decision/risk/handoff", or needs to write structured update entries into progress tracking.
This skill should be used when the user runs "/prog reset", "/prog undo", asks to "reset progress tracking", "revert last completed feature", or needs safe administrative rollback operations.
This skill should be used when the user runs "/prog", asks to "resume progress", "recover interrupted workflow", "continue unfinished feature", or returns after an interrupted development session.
This skill should be used when the user runs "/prog", asks to "show project status", "show progress", "how many features are done", or requests a completion summary. Reads progress tracking files, computes completion metrics, displays current feature state, and provides actionable next-step recommendations.
This skill should be used when the user asks to "generate test documentation", "create acceptance report", "write bug fix report", "document testing results", "create test guide", or "standardize test documents". Defines naming conventions, frontmatter standards, and content structure for all testing documents in docs/progress-tracker/testing/. Automatically referenced by feature-complete and bug-fix skills.
This skill should be used when the user runs "/prog-ui", asks to "open progress UI", "launch progress web UI", or wants to view progress in a browser. Manages the Progress UI server lifecycle (detect, start, open browser) for the current project.
siunin的Claude插件集合仓库。
# 添加市场
/plugin marketplace add https://github.com/SiuninYue/siunin-plugins.git
# 安装超级产品经理插件
/plugin install super-product-manager@siunin-plugins
# 安装进度追踪器插件(需要先安装 feature-dev 依赖)
/plugin install feature-dev@claude-plugins-official
/plugin install progress-tracker@siunin-plugins
# 安装笔记整理器插件
/plugin install note-organizer@siunin-plugins
# 安装包管理器插件
/plugin install package-manager@siunin-plugins
# 添加本地市场(直接使用本仓库根目录)
/plugin marketplace add /Users/siunin/Projects/Claude-Plugins
# 安装插件
/plugin install super-product-manager@siunin-plugins
/plugin install progress-tracker@siunin-plugins
/plugin install note-organizer@siunin-plugins
/plugin install package-manager@siunin-plugins
claude-plugins/ # 插件市场根目录
├── .claude-plugin/ # 市场配置目录
│ └── marketplace.json # 市场配置文件(名称:siunin-plugins)
├── plugins/ # 所有插件目录
│ ├── super-product-manager/ # 超级产品经理插件
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json # 插件配置
│ │ ├── commands/ # 14个命令
│ │ ├── skills/ # 16个专业技能
│ │ ├── agents/ # 8个专业Agent
│ │ ├── README.md # 插件文档
│ │ ├── CHANGELOG.md # 变更日志
│ │ └── LICENSE # MIT许可证
│ └── progress-tracker/ # 进度追踪器插件
│ ├── .claude-plugin/
│ │ └── plugin.json # 插件配置
│ ├── commands/ # 4个命令
│ ├── skills/ # 5个专业技能
│ ├── hooks/ # 会话恢复钩子
│ │ └── scripts/ # Python状态管理脚本
│ ├── README.md # 插件文档
│ └── LICENSE # MIT许可证
│ ├── note-organizer/ # 笔记整理器插件
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json # 插件配置
│ │ ├── commands/ # 3个命令
│ │ ├── skills/ # 2个技能
│ │ ├── scripts/ # Python处理脚本
│ │ ├── templates/ # NotebookLM/Obsidian模板
│ │ ├── tests/ # 单元测试
│ │ ├── README.md # 插件文档
│ │ └── LICENSE # MIT许可证
│ └── package-manager/ # 包管理器插件
│ ├── .claude-plugin/
│ │ └── plugin.json # 插件配置
│ ├── skills/ # 4个技能
│ ├── scripts/ # 更新脚本
│ ├── README.md # 插件文档
│ ├── CHANGELOG.md # 变更日志
│ └── LICENSE # MIT许可证
├── README.md # 项目说明(本文件)
└── .gitignore # Git忽略文件
要在本仓库中添加新插件:
plugins/ 目录下创建新插件目录.claude-plugin/plugin.json 配置.claude-plugin/marketplace.json 的 plugins 数组中添加新条目.claude-plugin/marketplace.json 中的版本号用户只需执行一次市场添加命令:
/plugin marketplace add https://github.com/SiuninYue/siunin-plugins.git
之后可以通过以下命令安装任何插件:
/plugin install <plugin-name>@siunin-plugins
本仓库中的插件遵循各自的许可证(通常是MIT许可证)。
Manus-style persistent markdown files for planning, progress tracking, and knowledge storage. Works with Claude Code, Kiro, Clawd CLI, Gemini CLI, Cursor, Continue, Hermes, and 17+ AI coding assistants. Now with Arabic, German, Spanish, and Chinese (Simplified & Traditional) support.
Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques
Team-oriented workflow plugin with role agents, 27 specialist agents, ECC-inspired commands, layered rules, and hooks skeleton.
Tools to maintain and improve CLAUDE.md files - audit quality, capture session learnings, and keep project memory current.
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Complete developer toolkit for Claude Code