File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # CC_SESSION_BOOTSTRAP.md
2+
3+ ## Clone. Check. Start.
4+
5+ ``` bash
6+ mkdir adaworld && cd adaworld
7+
8+ # REQUIRED (ladybug-rs won't compile without these):
9+ git clone https://github.com/AdaWorldAPI/ladybug-rs
10+ git clone https://github.com/AdaWorldAPI/rustynum
11+ git clone https://github.com/AdaWorldAPI/crewai-rust
12+ git clone https://github.com/AdaWorldAPI/n8n-rs
13+
14+ # REFERENCE (read during harvest, never modify):
15+ git clone https://github.com/AdaWorldAPI/lance-graph
16+ git clone https://github.com/AdaWorldAPI/holograph
17+
18+ cd ladybug-rs
19+ cargo check --no-default-features --features " simd"
20+ ```
21+
22+ ## First command in every session:
23+
24+ ``` bash
25+ cat CLAUDE.md
26+ cat .claude/prompts/26_entry_point.md
27+ ```
28+
29+ ## What you write to:
30+
31+ ```
32+ ladybug-rs ONLY THIS
33+ ```
34+
35+ ## What you read from:
36+
37+ ```
38+ rustynum Path dep. DO NOT MODIFY.
39+ crewai-rust Path dep. DO NOT MODIFY.
40+ n8n-rs Path dep. DO NOT MODIFY.
41+ lance-graph Harvest source. DO NOT MODIFY.
42+ holograph Harvest source. DO NOT MODIFY.
43+ ```
44+
45+ ## GitHub PAT:
46+
47+ See userPreferences in Claude context. Not stored in repo.
48+
49+ ```
50+ ```
51+
52+ ## If cargo check fails on path deps:
53+
54+ ``` bash
55+ # Minimal check (skips sibling deps):
56+ cargo check --no-default-features --features " simd"
57+
58+ # This compiles most of src/ except orchestration/ and flight/
59+ ```
You can’t perform that action at this time.
0 commit comments