ワンクリックで
quick-plan
Enter planning mode with AI SDLC standards awareness
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Enter planning mode with AI SDLC standards awareness
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Initialize Flowbit with intelligent project analysis and documentation generation
Creates Mermaid diagrams for planning flows, component communication, and architecture views with adaptive detail selection (including C4 levels). This skill should be used when the user asks for a workflow, interaction, or architecture visualization from provided task context.
Internal engine for managing project documentation and technical standards in .flowbit/docs/. Handles file operations, INDEX.md generation, and .github/copilot-instructions.md integration. Invoked by flowbit-init, standards-update, and standards-discover skills.
Quick bug fix with TDD red/green gates and complexity escalation
Implement task directly with AI SDLC standards awareness (no planning mode)
Discover coding standards from project configuration files, code patterns, documentation, and external sources (PRs, CI/CD)
| name | quick-plan |
| description | Enter planning mode with AI SDLC standards awareness |
Enter GitHub Copilot planning mode for a task, with automatic discovery of project standards from .flowbit/docs/.
/flowbit-quick-plan [task description]
/flowbit-quick-plan "Add user authentication with email/password"
/flowbit-quick-plan "Refactor the payment processing module"
/flowbit-quick-plan
Get the task description:
"What would you like to plan? Please describe the task or feature."
CRITICAL: This step MUST complete before calling EnterPlanMode.
Check if .flowbit/docs/INDEX.md exists
Read INDEX.md to understand available standards and documentation
Identify applicable standards based on:
READ the actual standard files using the Read tool — reading INDEX.md alone is NOT sufficient
Summarize key guidelines from each standard file read — these will carry into plan mode as context
Use the planning mode flow to trigger GitHub Copilot's built-in planning behavior.
Standards context from Step 2 MUST actively inform all plan mode phases:
The planning mode will:
BLOCKING: Do NOT call ExitPlanMode until the plan file contains these sections:
"## Applicable Standards" — list each standard file that was read, with key guidelines extracted from each. If no standards exist, state: "No AI SDLC standards found. Consider running /flowbit-init."
"## Standards Compliance Checklist" — checkboxes for each applicable standard guideline that implementation must follow. Example:
- [ ] API endpoints follow REST naming conventions (from `standards/backend/api.md`)
- [ ] Error responses use standard error format (from `standards/backend/api.md`)
- [ ] New components use TypeScript strict mode (from `standards/frontend/components.md`)
If these sections are missing from the plan file, add them before calling ExitPlanMode.
If .flowbit/docs/ does not exist:
Continue with planning mode normally. The "Applicable Standards" section in the plan should note:
No AI SDLC standards found. Consider running `/flowbit-init` to initialize
project documentation and coding standards for better consistency.
.flowbit/docs/ (BEFORE plan mode)Once the plan is approved:
After implementation is complete, verify standards compliance using the checklist from the plan:
This ensures the discovered standards are actually enforced, not just documented.