| name | quick-dev |
| description | Implement task directly with AI SDLC standards awareness (no planning mode) |
Quick Development with Standards Awareness
Implement a task directly without entering planning mode, while still applying project standards from .flowbit/docs/.
Usage
/flowbit-quick-dev [task description]
Examples
/flowbit-quick-dev "Add a logout button to the navbar"
/flowbit-quick-dev "Fix the typo in the error message"
/flowbit-quick-dev "Update the API endpoint to accept JSON"
When to Use
Use /flowbit-quick-dev when:
- Task is clear and well-defined
- You know what needs to be done
- No architectural decisions needed
- Quick fixes, small features, or straightforward changes
Use /flowbit-quick-plan instead when:
- Task scope is uncertain
- Multiple implementation approaches possible
- Architectural decisions required
- You want user approval before coding
Workflow
Step 1: Parse Input
Get the task description:
Step 2: Discover Standards
Check if .flowbit/docs/INDEX.md exists:
If exists:
- Read INDEX.md to discover available documentation and standards
- Identify which standards are relevant based on:
- The categories and files listed in INDEX.md
- The nature of the task
- Keywords in the task description
- READ the applicable standard files (see Standards Reading Enforcement below)
If not exists:
- Note that no standards are available
- Suggest running
/flowbit-init in completion message
Standards Reading Enforcement (MANDATORY)
BLOCKING: Reading INDEX.md alone is NOT sufficient. You MUST read actual standard files.
Enforcement Process:
- Read INDEX.md to discover available standards
- Identify which standards apply based on task description
- READ each applicable standard file using Read tool (not just note it exists)
- Apply standards during implementation
- List applied standards in completion summary
Examples of standard discovery:
- Task mentions "upload" → Read file-handling standards
- Task mentions "form" → Read validation and accessibility standards
- Task mentions "API" → Read api and error-handling standards
Step 3: Implement with Standards
MANDATORY: During implementation:
- Explore the codebase to understand context (using Glob, Grep, Read)
- Apply discovered standards - Reference the standard files you read
- For each code change, verify it follows applicable standards
- If you encounter new areas while coding (e.g., auth, database), read applicable standards before proceeding
- Make the necessary code changes
- Run relevant tests if applicable
Step 4: Verify Standards Compliance
After implementation, verify:
- Review changes against applicable standards
- Confirm key guidelines were followed
- Note any standards that were applied
Step 5: Summary
Provide completion summary:
- What was implemented
- Which standards from INDEX.md were applied
- Any tests run and their results
- Suggestions for follow-up (if any)
What This Does
- Parses task description from user input
- Discovers applicable standards from
.flowbit/docs/INDEX.md
- READS actual standard files (MANDATORY - not just INDEX.md)
- Implements directly without planning mode approval
- Verifies standards were followed
- Summarizes what was done and which standards were read and applied
Graceful Fallback
If .flowbit/docs/ does not exist:
Proceed with implementation normally, then note:
"No AI SDLC standards found. Consider running `/flowbit-init` to initialize
project documentation and coding standards for better consistency."