apex-methodologylisted
Install: claude install-skill fusengine/agents
**Current Task:** $ARGUMENTS
# APEX Methodology Skill
**Analyze → Plan → Execute → eLicit → eXamine**
Complete development workflow for features, fixes, and refactoring.
---
## Step 0: Initialize Tracking (MANDATORY FIRST ACTION)
**BEFORE anything else**, run this command to initialize APEX tracking:
```bash
mkdir -p .claude/apex/docs && cat > .claude/apex/task.json << 'INITEOF'
{
"current_task": "1",
"created_at": "'"$(date -u +"%Y-%m-%dT%H:%M:%SZ")"'",
"tasks": {
"1": {
"status": "in_progress",
"started_at": "'"$(date -u +"%Y-%m-%dT%H:%M:%SZ")"'",
"doc_consulted": {}
}
}
}
INITEOF
echo "✅ APEX tracking initialized in $(pwd)/.claude/apex/"
```
This creates:
- `.claude/apex/task.json` - Tracks documentation consultation status
- `.claude/apex/docs/` - Stores consulted documentation summaries
**The PreToolUse hooks will BLOCK Write/Edit until documentation is consulted.**
---
## Workflow Overview
```text
┌─────────────────────────────────────────────────────────────────┐
│ APEX WORKFLOW │
├─────────────────────────────────────────────────────────────────┤
│ 00-init-branch → Create feature branch │
│ 00.5-brainstorm → Design-first questioning (B) ← NEW │
│ 01-analyze-code → Understand codebase (A) │
│ 02-features-plan → Plan implementation (P) │
│ 03-execution → Write code with TDD (E) ← UPDATED