← ClaudeAtlas

apex-methodologylisted

Systematic development workflow: Analyze → Plan → Execute → eLicit → eXamine. Use for ANY development task: features, bug fixes, refactoring, hotfixes. Triggers: "implement", "create", "build", "fix", "add feature", "refactor", "develop". Auto-detects project type (Laravel, Next.js, React, Swift) and loads framework-specific references. Enforces: files <100 lines, interfaces separated, SOLID principles, expert self-review, sniper validation. Modes: --auto (default), --manual, --skip-elicit
fusengine/agents · ★ 15 · AI & Automation · score 84
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