/apex-quick
Quick Flow for simple fixes - Single expert handles explore, code, review, and validate in one pass. Inspired by BMAD Barry.
$ npx -y skills add fusengine/agents --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/apex-quick
Context preview
What this command does when you run it.
Quick Flow for simple fixes - Single expert handles explore, code, review, and validate in one pass. Inspired by BMAD Barry.
Command definition
apex-quick.mddescription: Quick Flow for simple fixes - Single expert handles explore, code, review, and validate in one pass. Inspired by BMAD Barry.
argument-hint: "<fix description>"
APEX Quick Flow
Fast-track workflow for simple bug fixes, typos, and minor changes. No multi-agent orchestration.
---
When to Use
✅ **Use APEX Quick:**
- Typo fixes
- Single-line bug fixes
- Simple refactoring (rename, move)
- Minor UI tweaks
- Config changes
- Documentation updates
❌ **Use Full APEX instead:**
- New features
- Multi-file changes
- Security-related code
- Database migrations
- API changes
---
Quick Flow Workflow
┌─────────────────────────────────────────────────────────┐
│ APEX QUICK (Single Pass) │
│ │
│ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌────────┐ │
│ │ LOCATE │ → │ FIX │ → │ REVIEW │ → │ VERIFY │ │
│ └─────────┘ └─────────┘ └─────────┘ └────────┘ │
│ │ │ │ │ │
│ ▼ ▼ ▼ ▼ │
│ Find file Apply 1 quick Linter │
│ + line minimal technique check │
│ change │
└─────────────────────────────────────────────────────────┘
**Total: 4 steps, 1 expert, no handoffs**
---
Execution
Step 1: LOCATE
Expert does quick search:
- Grep for relevant code
- Read the file
- Identify exact location
Step 2: FIX
Expert applies minimal change:
- Only change what's necessary
- Preserve existing style
- No refactoring scope creep
Step 3: REVIEW (Auto-Elicit)
Expert applies 1 quick technique based on fix type:
| Fix Type | Quick Technique |
|----------|-----------------|
| Bug fix | TEST-01 (Edge cases) |
| Typo | DOC-03 (Consistency) |
| Style | MAINT-02 (Convention) |
| Security | SEC-02 (Validation) |
| Config | DATA-01 (Schema) |
Step 4: VERIFY
Quick verification:
- Run linter on changed file(s)
- TypeScript check (if applicable)
- No full test suite
---
Example Usage
/apex-quick Fix typo in login button text
**Expert executes:**
1. LOCATE: Grep "login" → Found LoginButton.tsx:23
2. FIX: Change "Logi" → "Login"
3. REVIEW: DOC-03 check → OK
4. VERIFY: eslint LoginButton.tsx → 0 errors
✅ Done in single pass
---
Comparison
| Aspect | APEX Full | APEX Quick | |--------|-----------|------------| | Agents | 3+ parallel | 1 expert | | Phases | 4-5 (A-P-E-L-X) | 4 (Locate-Fix-Review-Verify) | | TaskCreate | Yes | No | | Sniper | Full 6-phase | Linter only | | Use case | Features, refactoring | Fixes, typos |
---
Quick Flow Rules
DO:
- ✅ Use for changes <20 lines
- ✅ Single file preferred
- ✅ Quick self-review
- ✅ Immediate verification
DON'T:
- ❌ Add features while fixing
- ❌ Refactor surrounding code
- ❌ Skip the review step
- ❌ Use for security changes
---
Output Format
## ⚡ APEX Quick Complete
**Task**: {description}
**File**: {file_path}:{line}
**Change**: {summary}
### Quick Review
- Technique: {technique_id}
- Result: ✅ OK
### Verification
- Linter: ✅ 0 errors
- TypeScript: ✅ OK
**Status**: ✅ Fixed---
Arguments
- `$ARGUMENTS`: Description of the fix to apply
**Examples:**
- `/apex-quick Fix typo in header`
- `/apex-quick Rename getUserData to fetchUser`
- `/apex-quick Update copyright year to 2025`
- `/apex-quick Fix missing null check in handler`
Read more
description: Quick Flow for simple fixes - Single expert handles explore, code, review, and validate in one pass. Inspired by BMAD Barry. argument-hint: "<fix description>"
APEX Quick Flow
Fast-track workflow for simple bug fixes, typos, and minor changes. No multi-agent orchestration.
---
When to Use
✅ **Use APEX Quick:**
- Typo fixes
- Single-line bug fixes
- Simple refactoring (rename, move)
- Minor UI tweaks
- Config changes
- Documentation updates
❌ **Use Full APEX instead:**
- New features
- Multi-file changes
- Security-related code
- Database migrations
- API changes
---
Quick Flow Workflow
┌─────────────────────────────────────────────────────────┐ │ APEX QUICK (Single Pass) │ │ │ │ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌────────┐ │ │ │ LOCATE │ → │ FIX │ → │ REVIEW │ → │ VERIFY │ │ │ └─────────┘ └─────────┘ └─────────┘ └────────┘ │ │ │ │ │ │ │ │ ▼ ▼ ▼ ▼ │ │ Find file Apply 1 quick Linter │ │ + line minimal technique check │ │ change │ └─────────────────────────────────────────────────────────┘
**Total: 4 steps, 1 expert, no handoffs**
---
Execution
Step 1: LOCATE
Expert does quick search: - Grep for relevant code - Read the file - Identify exact location
Step 2: FIX
Expert applies minimal change: - Only change what's necessary - Preserve existing style - No refactoring scope creep
Step 3: REVIEW (Auto-Elicit)
Expert applies 1 quick technique based on fix type: | Fix Type | Quick Technique | |----------|-----------------| | Bug fix | TEST-01 (Edge cases) | | Typo | DOC-03 (Consistency) | | Style | MAINT-02 (Convention) | | Security | SEC-02 (Validation) | | Config | DATA-01 (Schema) |
Step 4: VERIFY
Quick verification: - Run linter on changed file(s) - TypeScript check (if applicable) - No full test suite
---
Example Usage
/apex-quick Fix typo in login button text
**Expert executes:**
1. LOCATE: Grep "login" → Found LoginButton.tsx:23 2. FIX: Change "Logi" → "Login" 3. REVIEW: DOC-03 check → OK 4. VERIFY: eslint LoginButton.tsx → 0 errors ✅ Done in single pass
---
Comparison
| Aspect | APEX Full | APEX Quick | |--------|-----------|------------| | Agents | 3+ parallel | 1 expert | | Phases | 4-5 (A-P-E-L-X) | 4 (Locate-Fix-Review-Verify) | | TaskCreate | Yes | No | | Sniper | Full 6-phase | Linter only | | Use case | Features, refactoring | Fixes, typos |
---
Quick Flow Rules
DO:
- ✅ Use for changes <20 lines
- ✅ Single file preferred
- ✅ Quick self-review
- ✅ Immediate verification
DON'T:
- ❌ Add features while fixing
- ❌ Refactor surrounding code
- ❌ Skip the review step
- ❌ Use for security changes
---
Output Format
## ⚡ APEX Quick Complete
**Task**: {description}
**File**: {file_path}:{line}
**Change**: {summary}
### Quick Review
- Technique: {technique_id}
- Result: ✅ OK
### Verification
- Linter: ✅ 0 errors
- TypeScript: ✅ OK
**Status**: ✅ Fixed---
Arguments
- `$ARGUMENTS`: Description of the fix to apply
**Examples:**
- `/apex-quick Fix typo in header`
- `/apex-quick Rename getUserData to fetchUser`
- `/apex-quick Update copyright year to 2025`
- `/apex-quick Fix missing null check in handler`
A plugin ecosystem that turns Claude Code into a supervised, multi-agent development environment.
Repo: fusengine/agents
Other commands on fusengine-agents.
- /apex
APEX Methodology - The systematic Analyze-Plan-Execute-eLicit-eXamine approach for intelligent development. Reduces hallucination and defect risk through mandatory parallel research, self-review, and validation gates.
Open command - /cleanup-context
Memory optimization - removes duplicates, consolidates knowledge, and cleans memory banks for better performance.
Open command - /create-pull-request
Auto-generate Pull Request with comprehensive description, test plan, and changelog. Uses gh CLI for creation.
Open command - /deep-code-analysis
Comprehensive codebase investigation using research-expert for documentation, explore-codebase for structure, and deep analysis. Perfect for understanding complex systems.
Open command - /epct
Systematic Explore-Plan-Code-Test methodology for structured development. Ensures comprehensive approach to feature implementation.
Open command - /explain-architecture
Analyze and explain software architecture with ASCII diagrams and pattern detection. Creates visual representations of system design.
Open command

