Skip to content

Commit af564c5

Browse files
docs: Add project context for Claude Code
Add CLAUDE.md to provide project-specific context and instructions for Claude Code sessions. This enables better code assistance by documenting project conventions, key patterns, and important context. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 681e46a commit af564c5

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

CLAUDE.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Project Context
2+
3+
> **Template version:** 0.1 (WIP - pending best practices research)
4+
5+
## Overview
6+
7+
<!-- Brief description of what this project does -->
8+
9+
---
10+
11+
## Structure
12+
13+
```
14+
project/
15+
├── src/ # Source code
16+
├── tests/ # Tests
17+
├── docs/ # Documentation
18+
└── ...
19+
```
20+
21+
---
22+
23+
## Key Files
24+
25+
| File | Purpose |
26+
|------|---------|
27+
| `src/main.ts` | Entry point |
28+
| ... | ... |
29+
30+
---
31+
32+
## Development
33+
34+
```bash
35+
# Install deps
36+
bun install
37+
38+
# Run dev
39+
bun run dev
40+
41+
# Test
42+
bun test
43+
```
44+
45+
---
46+
47+
## Conventions
48+
49+
<!-- Project-specific conventions, naming, patterns -->
50+
51+
---
52+
53+
## Current Focus
54+
55+
<!-- What's being worked on now -->

0 commit comments

Comments
 (0)