You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: prompts/LATTICE_CLAUDE_MD.md
+21-21Lines changed: 21 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,44 +1,44 @@
1
1
# Lattice Integration
2
2
3
-
This project uses [Lattice](https://github.com/forkzero/lattice) for requirements tracking. The `.lattice/` directory contains the knowledge graph.
3
+
This project uses [Lattice](https://github.com/forkzero/lattice) for knowledge coordination. The `.lattice/` directory contains the knowledge graph — sources, theses, requirements, implementations, and messages connected by version-tracked edges.
4
4
5
5
## Quick Reference
6
6
7
7
```bash
8
-
lattice summary # Status overview
8
+
lattice summary # Status overview (nodes, resolution, drift)
9
+
lattice health # Unified PASS/WARN/FAIL health check
9
10
lattice list requirements # All requirements
10
-
lattice list requirements --status unresolved # Open work
11
-
lattice get REQ-XXX-001 # Full details
12
-
lattice plan # What to work on next
13
-
lattice drift # Check for stale edges
11
+
lattice list messages # All messages
12
+
lattice get REQ-XXX-001 # Full details with edges
13
+
lattice search -q "keyword"# Text search
14
+
lattice plan REQ-A REQ-B # Implementation order
15
+
lattice drift # Check for stale edge bindings
16
+
lattice help concepts # Node types, edge semantics, versioning
14
17
```
15
18
16
19
## When Working on Features
17
20
18
-
1.**Before starting**: `lattice plan` to see prioritized work
21
+
1.**Before starting**: `lattice summary` and `lattice plan` to see prioritized work
19
22
2.**Reference requirements** in commits: `Implements REQ-XXX-001`
Copy file name to clipboardExpand all lines: prompts/LATTICE_MCP_CLAUDE_MD.md
+15-21Lines changed: 15 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,34 +1,28 @@
1
1
# Lattice Integration (MCP)
2
2
3
-
This project uses [Lattice](https://github.com/forkzero/lattice) for requirements tracking via MCP.
3
+
This project uses [Lattice](https://github.com/forkzero/lattice) for knowledge coordination via MCP. The `.lattice/` directory contains sources, theses, requirements, implementations, and messages connected by version-tracked edges.
4
4
5
5
## MCP Tools
6
6
7
7
| Tool | Purpose |
8
8
|------|---------|
9
-
|`lattice_summary`| Status overview (start here)|
10
-
|`lattice_search`| Find nodes by criteria |
11
-
|`lattice_get`| Full node details |
12
-
|`lattice_list`| List nodes by type |
13
-
|`lattice_resolve`| Mark requirement status |
9
+
|`lattice_summary`| Status overview — nodes, resolution, drift, contested theses|
10
+
|`lattice_search`| Find nodes by criteria (text, priority, resolution, tags) |
11
+
|`lattice_get`| Full node details with edges |
12
+
|`lattice_list`| List nodes by type (sources, theses, requirements, implementations, messages) |
13
+
|`lattice_resolve`| Mark requirement status (verified, blocked, deferred, wontfix) |
14
14
|`lattice_add_requirement`| Create new requirement |
15
-
|`lattice_drift`| Check for stale edges|
15
+
|`lattice_drift`| Check for stale edge bindings|
16
16
17
-
## Common Searches
17
+
## Node Types
18
18
19
-
```json
20
-
// Open P0 requirements
21
-
{"resolution": "unresolved", "priority": "P0"}
22
-
23
-
// All API requirements
24
-
{"id_prefix": "REQ-API"}
25
-
26
-
// Requirements related to a node
27
-
{"related_to": "REQ-CORE-001"}
28
-
29
-
// Tagged items
30
-
{"tags": ["mvp", "core"]}
31
-
```
19
+
| Type | ID Pattern | Purpose |
20
+
|------|-----------|---------|
21
+
| Source |`SRC-*`| Research, papers, references |
22
+
| Thesis |`THX-*`| Strategic claims (can be `contested`) |
23
+
| Requirement |`REQ-*`| Testable specifications |
24
+
| Implementation |`IMP-*`| Code that satisfies requirements |
25
+
| Message |`MSG-*`| Persona-specific claims grounded in theses |
0 commit comments