Project Instructions
Description
This file is automatically loaded by Claude Code at session start. Place project-specific instructions, conventions, and context here. ---
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Project Instructions
This file is automatically loaded by Claude Code at session start. Place project-specific instructions, conventions, and context here.
Project Overview
Describe your project here. What does it do? Who uses it?
Tech Stack
- Language: TypeScript / Node.js
- Framework: (e.g., Next.js, Express, NestJS)
- Database: (e.g., PostgreSQL with Prisma)
- Testing: (e.g., Jest + Playwright)
- CI/CD: (e.g., GitHub Actions)
Repository Layout
src/
components/ # React components
lib/ # Shared utilities
api/ # API route handlers
types/ # TypeScript type definitions
tests/
unit/ # Unit tests
e2e/ # End-to-end tests
docs/ # Documentation
Code Conventions
- Use
constoverletwherever possible - Prefer functional components over class components
- Always add JSDoc comments to exported functions
- Keep functions under 50 lines; extract helpers when needed
- Use named exports, not default exports
- File names:
kebab-case.ts
Testing Rules
- Every new function needs at least one unit test
- Run
npm testbefore committing - Do NOT mock the database in integration tests — use a real test DB
- E2E tests live in
tests/e2e/
Git Conventions
- Commit style: Conventional Commits (
feat:,fix:,docs:, etc.) - Branch names:
feat/short-descriptionorfix/issue-number - Never force-push to
mainordevelop - PRs require at least 1 reviewer approval
Important Rules
- Never modify files in
generated/directly — they are auto-generated - Always use environment variables for secrets; never hardcode them
- Check
CHANGELOG.mdbefore making breaking changes - Run
npm run lintbefore submitting any PR
Preferred Workflow
- Read relevant files before suggesting changes
- Write tests before or alongside implementation
- Keep changes focused; one concern per PR
- Update docs when adding public-facing features
Related Skills
Awesome Go
A curated list of awesome Go frameworks, libraries and software
Development next.js
| The React Framework | 138360 | 1503 | 1 |
Development sharing-skills
skill for guidance.
Development root-cause-tracing
Use when errors occur deep in execution and you need to trace back to find the original trigger.
Development Template Skill
Minimal skeleton for a new skill project structure.
Development Third-party Notices
THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THI
Development