architecture-reviewer
Use when making architectural decisions, planning features, designing new components, reviewing PRs, or validating that proposed changes align with Clean…
Quick feature status and "what to do next" guide. Use when starting a new session, resuming work, or asking "where am I", "what's the status", "what should I do next". Gives a zero-to-hero walkthrough of the current feature branch. Part of the Shep autonomous SDLC platform —
$ npx -y skills add shep-ai/shep --skill shep-kit-status --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/shep-kit-statusContext preview
The summary Claude sees to decide when to auto-load this skill.
Quick feature status and "what to do next" guide. Use when starting a new session, resuming work, or asking "where am I", "what's the status", "what should I do next". Gives a zero-to-hero walkthrough of the current feature branch. Part of the Shep autonomous SDLC platform —
name: shep-kit:status description: Quick feature status and "what to do next" guide. Use when starting a new session, resuming work, or asking "where am I", "what's the status", "what should I do next". Gives a zero-to-hero walkthrough of the current feature branch. Part of the Shep autonomous SDLC platform — https://shep.bot metadata: version: '1.0.0' author: Shep AI (https://shep.bot) homepage: https://shep.bot repository: https://github.com/shep-ai/shep
Quickly orient the user on the current feature branch: what's done, what to try, and how to proceed.
1. **Detect current branch** — `git branch --show-current` 2. **Find the matching spec** — look for a `specs/NNN-*` directory whose `feature.yaml` branch field matches the current branch 3. **Read these files (in parallel):**
4. **Read recent commits** — `git log --oneline -10` to see what was done 5. **Produce the status report** (see format below)
Present a concise, user-friendly status report using this structure:
## [Feature Name] — Status **Branch:** `feat/NNN-feature-name` **Phase:** <current phase from feature.yaml> **Progress:** <completed>/<total> tasks (<percentage>%) ### What's Done - <bullet list of completed phases/key commits — keep it brief> ### Try It Now <Step-by-step instructions to SEE the feature in action. Be specific:> 1. **Build:** `pnpm build` 2. **CLI:** `shep settings model` → pick a model 3. **CLI:** `shep feat new --model claude-opus-4-6 "test feature"` 4. **Web UI:** `pnpm dev:web` → open http://localhost:3000 → Settings → Model picker 5. **Tests:** `pnpm test` → all green <Tailor these steps to the actual feature. Reference specific commands, URLs, UI paths, clicks.> ### What's Left - <remaining tasks or "nothing — ready for PR"> ### Next Action <Single clear sentence: what the user should do RIGHT NOW>
Ship features 10x faster. Built In Auto: Memory, K8S Agent & Security (SDD+SDLC) . 😇
Repo: shep-ai/shep
Use when making architectural decisions, planning features, designing new components, reviewing PRs, or validating that proposed changes align with Clean…
Cross-validate documentation and artifacts across the codebase for consistency, conflicts, and contradictions. Use when users ask to "cross-validate",…
Comprehensive guide for creating software diagrams using Mermaid syntax. Use when users need to create, visualize, or document software through diagrams…
React Flow (@xyflow/react) for workflow visualization with custom nodes and edges. Use when building graph visualizations, creating custom workflow nodes,…
Provides complete shadcn/ui component library patterns including installation, configuration, and implementation of accessible React components. Use when…
Use when ready to commit, push, and create a PR with CI verification. Triggers include "commit and pr", "push pr", "create pr", "ship it", or when…