← ClaudeAtlas

continuelisted

Resume development with smart session continuation. Reads session handoff files, sprint spec, analyzes git state, and determines the best path forward.
joris887/exosuit · ★ 4 · Code & Development · score 74
Install: claude install-skill joris887/exosuit
______________________________________________________________________ ## continue **Skill metrics:** Emit a start event to the activity log: ```bash echo "{\"type\":\"skill\",\"event\":\"start\",\"skill\":\"continue\",\"ts\":\"$(date -u +%Y-%m-%dT%H:%M:%SZ)\"}" >> docs/sessions/.activity-log.jsonl ``` Resume development. Execute this smart continuation workflow: ## Current Git State (auto-fetched) - **Branch**: !`git branch --show-current` - **Status**: !`git status --short` - **Open PRs**: !`gh pr list --author @me --state open --limit 5 2>/dev/null || echo "No PRs or gh not configured"` ## 0. Project Health Scan Before session recovery, assess project maturity by checking key artifacts: | Artifact | Check | If Missing/Incomplete | |----------|-------|----------------------| | `docs/architecture/ARCHITECTURE.md` | Exists, non-template, Last Verified < 30 days | Suggest `/bootstrap` if missing; `/architecture-check` if stale | | `docs/reference/GROUND_RULES.md` | Exists and has ≥3 rules | Suggest `/bootstrap` (A3.5b step) | | `docs/reference/CODING_STANDARDS.md` | Exists and non-template | Suggest `/bootstrap` | | `docs/reference/BACKLOG_INDEX.md` | Has ≥1 TODO story | Suggest `/ideate` | | Feature branch | `git branch --list 'feat/*' 'fix/*' 'sprint-*'` | Suggest `/sprint-start` | | Test command | CLAUDE.md Commands has test entry | Suggest configuring tests | | ADR currency | New ADRs accepted since last session (`git log --oneline docs/adr/`) | Surface new decisio