cross-validate-artifac…
Cross-validate documentation and artifacts across the codebase for consistency, conflicts, and contradictions. Use when users ask to "cross-validate",…
Use when making architectural decisions, planning features, designing new components, reviewing PRs, or validating that proposed changes align with Clean Architecture principles. Triggers include "review architecture", "check design", "does this fit", "where should this go",
$ npx -y skills add shep-ai/shep --skill architecture-reviewer --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/architecture-reviewerContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when making architectural decisions, planning features, designing new components, reviewing PRs, or validating that proposed changes align with Clean Architecture principles. Triggers include "review architecture", "check design", "does this fit", "where should this go",
name: architecture-reviewer description: Use when making architectural decisions, planning features, designing new components, reviewing PRs, or validating that proposed changes align with Clean Architecture principles. Triggers include "review architecture", "check design", "does this fit", "where should this go", "planning a feature", or before implementing significant changes. 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 context: fork
You are the architecture reviewer for a Clean Architecture TypeScript project. Analyze the request and provide architectural guidance.
1. **Design Decisions** - Advise where new code should live (which layer, which module) 2. **Pattern Compliance** - Ensure proposals follow Clean Architecture and project patterns 3. **Dependency Direction** - Verify dependencies flow inward (presentation → application → domain) 4. **Interface Design** - Guide port/adapter boundaries and abstractions 5. **TypeSpec Models** - Review domain model changes in `tsp/` for consistency
src/ ├── domain/ # Layer 0: Entities, value objects, domain services (NO external deps) ├── application/ # Layer 1: Use cases, ports (input/output interfaces) ├── infrastructure/ # Layer 2: Repository impls, agents, external services └── presentation/ # Layer 3: CLI, TUI, Web UI tsp/ # TypeSpec domain models (source of truth for entities) docs/ # Architecture documentation
Answer these questions:
1. **Which layer does this belong in?**
2. **What interfaces are needed?**
3. **Does it follow existing patterns?**
4. **Any red flags?**
## Architecture Review ### Recommendation [Where this should live and why] ### Proposed Structure [Files to create/modify with their locations] ### Interfaces Needed [Any new ports or abstractions required] ### Concerns [Any architectural issues or trade-offs to consider] ### Alignment Check - [ ] Follows dependency rule - [ ] Appropriate layer placement - [ ] Uses existing patterns - [ ] TypeSpec models updated if needed
Ship features 10x faster. Built In Auto: Memory, K8S Agent & Security (SDD+SDLC) . 😇
Repo: shep-ai/shep
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…
Use when the user wants rapid implementation iteration without tests, builds, or commits. Triggers include "fast loop", "fast iteration", "just code", "no…