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: .agent/skills/_manifest.jsonl
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5,5 +5,6 @@
5
5
{"name":"deploy-checklist","version":"2026-01-01","triggers":["deploy","ship","release","go live"],"tools":["bash"],"preconditions":[],"constraints":["all tests passing","no unresolved TODOs in diff","requires human approval for production"],"category":"operations"}
6
6
{"name":"data-layer","version":"2026-04-26","triggers":["data layer","dashboard","show me the dashboard","what did my agents do","agent analytics","agent status","resource usage","usage report","cron monitoring","daily report","tokens","terminal dashboard","TUI"],"tools":["bash","git"],"preconditions":[".agent exists"],"constraints":["local-only by default","no screenshot delivery without explicit user approval","do not commit private .agent/data-layer exports"],"category":"operations"}
7
7
{"name":"data-flywheel","version":"2026-04-25","triggers":["data flywheel","trace to train","training traces","context cards","eval cases","approved runs","vertical intelligence"],"tools":["bash","git"],"preconditions":[".agent exists"],"constraints":["local-only by default","human-approved runs only","redaction required before trainable","do not train models"],"category":"operations"}
8
+
{"name":"brain","version":"2026-05-10","triggers":["brain","long-term memory","shared memory","cross-agent memory","mcp memory","remember across tools","git-backed memory"],"tools":["bash"],"preconditions":[".agent exists"],"constraints":["Brain is external; do not assume the brain binary is installed","do not store secrets in Brain","use ask before note when checking prior context"],"category":"memory"}
8
9
{"name":"design-md","version":"2026-04-26","triggers":["DESIGN.md","design.md","Google Stitch","Stitch","design tokens","design system","visual design"],"tools":["bash","memory_reflect"],"preconditions":["DESIGN.md exists at project root"],"constraints":["prefer DESIGN.md tokens over invented values","do not modify DESIGN.md unless the user explicitly asks","preserve unknown sections when an edit IS authorised","validate when tooling is available"],"category":"design"}
9
10
{"name":"tldraw","version":"2026-04-21","triggers":["draw","diagram","sketch","wireframe","flowchart","mind-map","mind map","visualize","lay out","architecture diagram","whiteboard"],"tools":["mcp.tldraw.create_shape","mcp.tldraw.update_shape","mcp.tldraw.delete_shape","mcp.tldraw.get_canvas"],"preconditions":["tldraw MCP server reachable","user has http://localhost:3030 open"],"constraints":["call get_canvas before update_shape or delete_shape","at most 200 shapes per create_shape call","coordinates within 0..1600 x 0..900 unless told otherwise"],"category":"visualization","feature_flag":"tldraw"}
constraints: ["Brain is external; do not assume the brain binary is installed", "do not store secrets in Brain", "use ask before note when checking prior context"]
8
+
category: memory
9
+
---
10
+
11
+
# Brain Integration
12
+
13
+
Use this skill when the task needs durable memory shared across coding-agent
14
+
harnesses through the external `brain` CLI and MCP server.
15
+
16
+
## Check Availability
17
+
18
+
```bash
19
+
python3 .agent/tools/brain_bridge.py status
20
+
```
21
+
22
+
If Brain is missing, tell the user to install it:
23
+
24
+
```bash
25
+
brew install codejunkie99/tap/brain
26
+
```
27
+
28
+
## Recall
29
+
30
+
Before non-trivial work that could depend on prior cross-tool decisions:
31
+
32
+
```bash
33
+
python3 .agent/tools/brain_bridge.py ask "<intent or topic>"
34
+
```
35
+
36
+
Use returned notes as context, but keep project-local `.agent/memory/semantic`
37
+
as the source for agentic-stack lessons until the user explicitly asks to
38
+
promote or migrate them.
39
+
40
+
## Save
41
+
42
+
Save one concise observation when the user gives a durable preference,
43
+
cross-project convention, or decision that should survive across harnesses:
0 commit comments