quickstartlisted
Install: claude install-skill joris887/exosuit
______________________________________________________________________
## quickstart
Welcome to the Exosuit framework. This guided tour walks you through your first complete sprint, from planning to shipped PR.
## Phase 1: Orientation (2 minutes)
Present the framework's core concept:
```markdown
### How This Framework Works
The framework adds structure to AI-assisted development:
**Three Layers:**
1. **Enforcement:** hooks that auto-format code, scan for secrets, block dangerous commands (automatic)
2. **Workflow:** skills (slash commands) that guide your development process (you invoke these)
3. **Documentation:** knowledge base that compounds across sessions (generated and updated)
**The Core Loop:**
```
/sprint-start → /story-cycle (repeat) → /sprint-end
```
Each `/story-cycle` takes a story through: plan → approve → implement (TDD) → verify → commit.
```
## Phase 2: Check Readiness (1 minute)
Run a quick health check:
```bash
# Check if bootstrap has been run
if [ -f "docs/architecture/ARCHITECTURE.md" ] && ! grep -q "<!-- " docs/architecture/ARCHITECTURE.md 2>/dev/null; then
echo "READY: Bootstrap complete"
else
echo "NOT READY: Run /bootstrap first"
fi
```
<IF condition="bootstrap not complete">
Tell the user:
> Your project hasn't been bootstrapped yet. Run `/bootstrap` first; it detects your stack, configures hooks, and generates project documentation. Come back to `/quickstart` after bootstrap completes.
Stop here.
</IF>
## Phase 3: Interactive