code-quick-build¶
Handles exploratory development requests including quick fixes, prototypes, and small enhancements.
Synopsis¶
Description¶
The code-quick-build command handles development requests that don't warrant the full feature workflow. It's designed for quick fixes, prototypes, performance optimizations, and small feature enhancements with proper planning and scope management.
Parameters¶
| Parameter | Position | Required | Default | Description |
|---|---|---|---|---|
DEVELOPMENT_REQUEST |
$ARGUMENTS |
Yes | - | Description of what to build |
Use Cases¶
| Type | Example |
|---|---|
| Quick fix | "Fix the null pointer in user validation" |
| Prototype | "Add a basic dark mode toggle" |
| Optimization | "Improve query performance in reports" |
| Enhancement | "Add loading spinner to submit button" |
Examples¶
Quick Fix¶
Small Enhancement¶
Workflow¶
- Analyzes the request scope
- Creates a brief implementation plan
- Implements the changes
- Runs code checks
- Reports completion
When to Use Full Workflow
If the command determines the request requires significant architectural changes or spans multiple components, it will recommend using the full feature workflow instead.
Related Commands¶
feature-requirements- For larger featurescode-check- Verify changes