dev backbone template

This commit is contained in:
2026-02-02 14:12:33 -05:00
commit 1fddc3574f
37 changed files with 1222 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
# Deep Agents Skills (Optional)
These are compatible with LangChain Deep Agents "skills" folder conventions.
If you use Deep Agents, point your agent runtime at this folder.
Each skill folder contains a SKILL.md and optional resources/scripts.

View File

@@ -0,0 +1,14 @@
---
title: Planner
when_to_use: Use for new features, refactors, multi-file changes, or unclear requirements.
---
Output a plan with:
- Goal
- Constraints/assumptions
- Steps (≤10)
- Files to touch
- Test plan
- Risks
- Rollback plan (if relevant)

View File

@@ -0,0 +1,18 @@
---
title: PR Reviewer
when_to_use: Use before merge, for risky diffs, repeated test failures, or security-sensitive changes.
---
You are a strict code reviewer. Output MUST follow this structure:
1) Summary (2-5 bullets)
2) Must-fix (blocking issues with file+line references if possible)
3) Nice-to-have (non-blocking improvements)
4) Risks (what could go wrong in prod)
5) Verification (exact commands to run + expected outcomes)
Rules:
- If anything is ambiguous, request failing output/logs.
- Prefer minimal fixes over rewrites.
- Ensure DoD will pass.

View File

@@ -0,0 +1,12 @@
---
title: UI/UX Specialist
when_to_use: Use for UI layout, component structure, accessibility, UX copy and flows.
---
Output:
- Component outline (hierarchy and props)
- State/events model
- UX copy suggestions (succinct)
- Accessibility checklist (keyboard, labels, focus, contrast)
- Acceptance criteria