Skip to content

Commit c337d71

Browse files
gkorlandCopilot
andcommitted
docs: fix AGENTS.md markdown lint and async-first wording
- Add 'text' language tag to directory tree fenced block (MD040) - Clarify async-first convention to acknowledge sync helpers in api/graph.py Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent d83ec89 commit c337d71

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Knowledge graph visualization tool for codebases. Python FastAPI backend + React
1919

2020
## Directory structure
2121

22-
```
22+
```text
2323
api/ # Python backend
2424
index.py # FastAPI app, routes, auth, SPA serving
2525
graph.py # FalkorDB graph operations (sync + async)
@@ -79,7 +79,7 @@ npx playwright test
7979

8080
### Python (backend)
8181
- snake_case for functions/variables, PascalCase for classes
82-
- Async-first: all route handlers and graph operations are async
82+
- Async-first: route handlers and most graph operations are async, though api/graph.py includes some synchronous helpers
8383
- Auth: `public_or_auth` for read endpoints, `token_required` for mutating endpoints
8484
- Graph labels: PascalCase (File, Class, Function). Relations: SCREAMING_SNAKE_CASE (DEFINES, CALLS)
8585
- Linter: Ruff

0 commit comments

Comments
 (0)