← ClaudeAtlas

session-bootstraplisted

Composite skill — start-of-day routine. Chains wake-up (compact brief) → next-priority (decide) → pr-snapshot (PR queue) → context-pack (load relevant context if work-intent). Replaces "what was I doing", "what's next", "load context" with one invocation. Auto-fires on the first non-trivial prompt of a fresh session.
LucasSantana-Dev/sharekit · ★ 1 · AI & Automation · score 73
Install: claude install-skill LucasSantana-Dev/sharekit
# Session Bootstrap The single command for "I just sat down, get me oriented and ready to work." Replaces the manual `/wake-up` → `/next-priority` → `/pr-snapshot` sequence. ## Pair with standards - `standards/session-resume.md` — session-resume protocol that session-bootstrap orchestrates ## Auto-invocation triggers - First non-trivial prompt of a fresh session (no prior conversation context) - User says "where are we", "what's next", "catch me up", "good morning" - After `/resume` or session restart - After loading a `/handoff` from another machine/session ## Workflow ### Phase 1 — Brief (always) Invoke `wake-up` for the compact 600-900 token bootstrap: - Latest handoff - Top 3 RAG hits scoped to current repo - Git status one-liner - Most recent memory note ### Phase 2 — Decide priority (always) Invoke `next-priority` to rank the highest-value safe action: - Open PRs awaiting your action - Failing CI on your branches - Recently committed work that needs verification - Drafted plans that haven't started ### Phase 3 — PR queue (always — quick, batched) Invoke `pr-snapshot` for one-line status across all open PRs: - Color-coded ready / waiting / blocked - Ages per PR - Third-party reviewer status ### Phase 4 — Context pack (conditional) If `next-priority` returned a work item AND prompt mentions implement/refactor/fix: - Invoke `context-pack` (or note that `auto-context-pack` already fired this prompt) to load relevant code, standards, prior decisions ### Phase 5 —