Skills plugin for Claude Code — structured development workflow from idea to implementation
npx claudepluginhub cloudfieldcz/cf-powersSkills plugin for Claude Code: analysis, TDD, debugging, and structured workflows
Share bugs, ideas, or general feedback.
Skills plugin for Claude Code that guides your AI coding agent through a structured development workflow — from idea to implementation.
Based on Superpowers by Jesse Vincent, extended with technical analysis workflow and cross-check review agents.
# 1. Register the marketplace
/plugin marketplace add cloudfieldcz/cf-powers
# 2. Install the plugin
/plugin install cf-powers@cf-powers
# 3. Verify — you should see cf-powers commands in the list
/help
That's it. The plugin activates automatically on every session.
Every feature starts the same way:
/analyse → /write-plan → execute
↓
idea → dialogue → analysis
↓
BA + Dev cross-check
/analyse — From idea to technical analysis in one step. Explores the idea through dialogue, then produces a full technical analysis (Czech output): architecture, DB changes, affected files, phases, risks, testing. Automatically dispatches BA and Developer reviewers for cross-check./write-plan — Break the analysis into bite-sized TDD implementation tasks.What happens at step 3 depends on the size of the feature:
When the analysis contains one logical phase, /write-plan produces a single plan file:
docs/plans/YYYY-MM-DD-feature-plan.md
You execute it in one go — either with subagent-driven development (in the current session) or by opening a new session with executing-plans (batch execution with checkpoints).
When the analysis defines multiple implementation phases, /write-plan produces one plan file per phase plus an index:
docs/plans/YYYY-MM-DD-feature-plan-index.md ← orchestration dashboard
docs/plans/YYYY-MM-DD-feature-plan-1-models.md ← phase 1
docs/plans/YYYY-MM-DD-feature-plan-2-services.md ← phase 2
docs/plans/YYYY-MM-DD-feature-plan-3-ui.md ← phase 3
You then execute phases one at a time (or in parallel if they have no dependencies). The index file tracks overall progress. After each phase completes, Claude updates the index and asks which phase to tackle next.
| Skill | When it activates |
|---|---|
| analysis | MANDATORY before implementation — from idea to technical analysis |
| review-as-ba | Cross-check analysis from business analyst perspective |
| review-as-dev | Cross-check analysis from developer perspective |
| writing-plans | When you need a step-by-step implementation plan |
| executing-plans | Batch execution with human checkpoints |
| subagent-driven-development | Fast parallel execution with two-stage review |
| test-driven-development | During implementation (RED-GREEN-REFACTOR) |
| systematic-debugging | When encountering bugs or test failures |
| verification-before-completion | Before claiming work is done |
| requesting-code-review | After completing tasks |
| receiving-code-review | When processing review feedback |
| dispatching-parallel-agents | When facing independent parallel tasks |
| finishing-a-development-branch | When ready to merge or create a PR |
| writing-skills | When creating new skills |
| using-superpowers | Injected automatically at session start |
/plugin update cf-powers
This project is a fork of Superpowers by Jesse Vincent. The original project provides the core skills library (TDD, debugging, collaboration patterns) and the plugin architecture. We added the analysis workflow with BA/Developer cross-check agents.
MIT — see LICENSE for details.