Agent Skill
2/7/2026project-guidelines-example
Template for project-specific skills with architecture and patterns.
T
the
1GitHub Stars
1Views
npx skills add The-Skyy-Rose-Collection-LLC/DevSkyy
SKILL.md
| Name | project-guidelines-example |
| Description | Template for project-specific skills with architecture and patterns. |
name: project-guidelines-example description: Template for project-specific skills with architecture and patterns.
Project Guidelines (Example Template)
Architecture
Frontend: Next.js 15 + TypeScript → Backend: FastAPI + Pydantic → DB: Supabase
Code Patterns
API Response (Python):
class ApiResponse(BaseModel, Generic[T]):
success: bool
data: Optional[T] = None
error: Optional[str] = None
API Call (TypeScript):
const result = await fetch(`/api${endpoint}`)
return result.success ? result.data : throw new Error(result.error)
Testing Requirements
pytest tests/ --cov=. --cov-report=html # Backend (80%+ coverage)
npm run test -- --coverage # Frontend
npm run test:e2e # Playwright
Critical Rules
- No emojis in code
- Immutability - never mutate
- TDD - tests first
- 80% coverage minimum
- Files < 800 lines
Related Tools
- Skill:
coding-standards,backend-patterns,frontend-patterns,tdd-workflow - Agent:
planner,code-reviewer
Skills Info
Original Name:project-guidelines-exampleAuthor:the
Download