-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.cursorrules
More file actions
74 lines (53 loc) · 1.92 KB
/
.cursorrules
File metadata and controls
74 lines (53 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!-- codebeacon:start -->
# Project Context
## Lookup strategy
> A pre-built index lives in `.codebeacon/`. Use the 3-step lookup below
> before reaching for Glob or Grep.
> **Repo type:** `single` — Single-project repo.
### Step 1 — codebeacon wiki
Routes, controllers, services, entities.
```
.codebeacon/wiki/index.md ← global index
.codebeacon/wiki/{project}/controllers/{Name}.md ← controller logic
.codebeacon/wiki/{project}/services/{Name}.md ← service methods
.codebeacon/wiki/{project}/entities/{Name}.md ← data models
.codebeacon/wiki/routes.md ← all API routes across projects
```
### Step 2 — obsidian notes
Class-level detail (methods, fields, incoming/outgoing edges) the wiki omits.
Look up by class name — replace `{project}` with the relevant folder:
```
.codebeacon/obsidian/{project}/{ClassName}.md
```
| Project | Notes | Example |
| --- | --- | --- |
| codebeacon | 398 services, 3 entities | `affected_from_paths.py.md` |
### Step 3 — source file
Open the paths surfaced by Steps 1–2.
---
## Projects
| Project | Framework | Routes | Services | Entities | Components |
| --- | --- | --- | --- | --- | --- |
| codebeacon | python | 5 | 398 | 3 | 0 |
---
## Common Commands
### codebeacon (python)
```bash
# see project README # build
# see project README # run
# see project README # all tests
```
---
## Architecture
**codebeacon**: **python** · python
Routes: 5 | Services: 398 | Entities: 3 | Components: 0
## High-Impact Files
Changes here affect many other files:
- `codebeacon/semantic_pipeline.py` (imported by 56 files)
- `codebeacon/pipeline.py` (imported by 12 files)
- `tests/test_graph.py` (imported by 6 files)
- `tests/integration/test_full_pipeline.py` (imported by 3 files)
- `tests/test_known_bugs.py` (imported by 2 files)
---
_Generated by [codebeacon](https://github.com/codebeacon/codebeacon) · 2026-05-31_
<!-- codebeacon:end -->