Skip to content

Commit 1a5255a

Browse files
authored
Merge pull request #771 from tisnik/lcore-952-updated-claude-instructions
LCORE-952: updated Claude instructions
2 parents 35e98ac + f2b9f7c commit 1a5255a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

CLAUDE.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Lightspeed Core Stack (LCS) is an AI-powered assistant built on FastAPI that pro
1515
### Project Structure
1616
```
1717
src/
18-
├── app/ # FastAPI application
19-
│ ├── endpoints/ # REST API endpoints
18+
├── app/ # FastAPI application
19+
│ ├── endpoints/ # REST API endpoints
2020
│ └── main.py # Application entry point
21-
├── auth/ # Authentication modules (k8s, jwk, noop)
22-
├── authorization/ # Authorization middleware & resolvers
21+
├── auth/ # Authentication modules (k8s, jwk, noop)
22+
├── authorization/ # Authorization middleware & resolvers
2323
├── models/ # Pydantic models
2424
│ ├── config.py # Configuration classes
2525
│ ├── requests.py # Request models
@@ -110,8 +110,8 @@ src/
110110
### Test Structure
111111
```
112112
tests/
113-
├── unit/ # Unit tests (pytest)
114-
├── integration/ # Integration tests
113+
├── unit/ # Unit tests (pytest)
114+
├── integration/ # Integration tests (pytest)
115115
└── e2e/ # End-to-end tests (behave)
116116
└── features/ # Gherkin feature files
117117
```
@@ -146,7 +146,7 @@ tests/
146146
```bash
147147
uv run make test-unit # Unit tests with coverage
148148
uv run make test-integration # Integration tests
149-
uv run make test-e2e # End-to-end tests
149+
uv run make test-e2e # End-to-end tests
150150
```
151151

152152
## Quality Assurance
@@ -184,4 +184,4 @@ uv run make test-e2e # End-to-end tests
184184
3. **ALWAYS** check `pyproject.toml` for existing dependencies and versions before adding new ones
185185
4. Follow existing code patterns in the module you're modifying
186186
5. Write unit tests covering new functionality
187-
6. Run format and verify before completion
187+
6. Run format and verify before completion

0 commit comments

Comments
 (0)