Skip to content

Commit 7acceb3

Browse files
committed
docs(architecture): add Fabric tier, cross-weave synthesis note; fix README link to githubGraphql.ts
1 parent 2b94856 commit 7acceb3

2 files changed

Lines changed: 25 additions & 9 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ To improve your rate limits, you can optionally set `GH_PAT` or `NEXT_PUBLIC_GH_
362362

363363
**Fallback**: If GraphQL fails or no PAT is provided, the viewer automatically falls back to the REST API.
364364

365-
See [lib/github-graphql.ts](https://github.com/framersai/frame.dev/blob/master/apps/frame.dev/lib/github-graphql.ts) for implementation details.
365+
See [lib/githubGraphql.ts](https://github.com/framersai/frame.dev/blob/master/apps/frame.dev/lib/githubGraphql.ts) for implementation details.
366366

367367
### 🔒 Privacy & Data Storage
368368

weaves/wiki/architecture/overview.md

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,24 @@ Frame Codex is a structured, version-controlled knowledge repository designed as
2525

2626
## Core Concepts
2727

28-
### Three-Tier Knowledge Organization
28+
### Four-Tier Knowledge Organization
2929

3030
```
31-
Weave (Universe)
32-
├── Loom (Folder)
33-
│ ├── Strand (markdown file)
34-
│ ├── Strand (markdown file)
35-
│ └── ...
36-
└── Loom (Folder)
37-
└── ...
31+
Fabric (Whole Codex)
32+
└── Weave (Universe)
33+
├── Loom (Folder)
34+
│ ├── Strand (markdown file)
35+
│ ├── Strand (markdown file)
36+
│ └── ...
37+
└── Loom (Folder)
38+
└── ...
3839
```
3940

41+
**Fabric**: The entire Codex corpus viewed as one living whole
42+
- Composed of multiple weaves (e.g., `frame`, `wiki`, `technology`)
43+
- Enables cross-weave traversal when operating at Fabric scope
44+
- Used by superintelligence/agents for holistic aggregation and synthesis
45+
4046
**Weave**: Complete, isolated knowledge universe
4147
- No cross-weave relationships
4248
- Independent scope and taxonomy
@@ -61,6 +67,16 @@ Weave (Universe)
6167
5. **AI-Friendly**: Clear structure for LLM ingestion
6268
6. **Simple**: Folders = looms, markdown files = strands (auto-detected)
6369

70+
### Superintelligence at Fabric Scope
71+
72+
While weaves remain isolated for organization and provenance, analysis at the **Fabric** level permits traversal across weaves for:
73+
74+
- Cross-domain retrieval and context assembly
75+
- Whole-of-corpus synthesis and summarization
76+
- Global topic maps and knowledge graphs
77+
78+
Fabric-level queries always preserve original weave/loom/strand provenance.
79+
6480
## SQL Cache Layer
6581

6682
Frame Codex uses [@framers/sql-storage-adapter](https://github.com/framersai/sql-storage-adapter) for intelligent caching.

0 commit comments

Comments
 (0)