Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add NorthwoodsSentinel/northwoods-pack --skill northwoods-substrategit clone --depth 1 https://github.com/NorthwoodsSentinel/northwoods-packWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/northwoodssentinel/northwoods-pack/northwoods-substrate)<a href="https://agentmods.dev/skills/northwoodssentinel/northwoods-pack/northwoods-substrate"><img src="https://agentmods.dev/badge/skills/northwoodssentinel/northwoods-pack/northwoods-substrate/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/northwoodssentinel/northwoods-pack/northwoods-substrate"><img src="https://agentmods.dev/badge/skills/northwoodssentinel/northwoods-pack/northwoods-substrate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00072 | $0.00623 |
| Opus 5 | $0.00036 | $0.00311 |
| Sonnet 5 | $0.00014 | $0.00125 |
| Haiku 4.5 | $0.00007 | $0.00062 |
Grade A, and why
NorthwoodsSubstrate scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s -X POST http://localhost:31337/notify \ What it actually says
Customization
~/.claude/PAI/USER/SKILLCUSTOMIZATIONS/NorthwoodsSubstrate/
Voice Notification
curl -s -X POST http://localhost:31337/notify \
-H "Content-Type: application/json" \
-d '{"message": "Reaching the substrate"}' \
> /dev/null 2>&1 &
NorthwoodsSubstrate — Memory Store
Calls the deployed Northwoods Pack Worker (one Worker, five modules) to read/write persistent memory entries.
Workflow
- Read
pack.urlandauth.tokenfrom~/.claude/PAI/USER/SKILLCUSTOMIZATIONS/NorthwoodsPack/CONFIG.md. - Use one of three endpoints depending on intent:
- Save:
POST {pack.url}/substrate/remember - Search:
POST {pack.url}/substrate/recall - List by tag/type:
GET {pack.url}/substrate/list?tag=X&type=Y&limit=N
- Save:
- All requests require header
X-Pack-Token: {auth.token}.
Save an entry
curl -s -X POST "$PACK_URL/substrate/remember" \
-H "Content-Type: application/json" \
-H "X-Pack-Token: $TOKEN" \
-d '{
"type": "breadcrumb",
"body": "the thing to remember",
"tags": ["topic1", "topic2"]
}'
Common types: breadcrumb, decision, note, question, session. Returns {id, created_at}.
Search entries
curl -s -X POST "$PACK_URL/substrate/recall" \
-H "Content-Type: application/json" \
-H "X-Pack-Token: $TOKEN" \
-d '{
"query": "search term",
"tags": ["optional"],
"type": "optional",
"limit": 20
}'
Returns {entries: [...], count: N}.
List by tag
curl -s "$PACK_URL/substrate/list?tag=topic1&limit=10" \
-H "X-Pack-Token: $TOKEN"
Failure behavior
If the Worker is unreachable, surface the error clearly. Do NOT silently swallow substrate writes — the user needs to know their thought wasn't saved.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 75 lines · 72 tokens per session scan A 1f5b1a05e85d
NorthwoodsSubstrate is a skill published in the GitHub repository NorthwoodsSentinel/northwoods-pack (2 stars, last pushed 12d ago), licensed Apache-2.0. It adds 72 tokens to every session and 623 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
supermemory
Supermemory is a state-of-the-art memory and context infrastructure for AI agents. Use this skill when building applications that need persistent memory, user personalization, long-term context retention, or semantic search across knowledge bases. It provides Memory API for learned user context, User Profiles for…
collaboration-intelligence
Maintain and use a cross-channel collaboration map of rooms, people, agents, agent owners, relationships, expertise, ownership, roster, priority/VIP handling, and recent context. Trigger when a task or message carries room/channel/sender/member metadata; the user asks who is in a room, what it is for, who owns or…
misakanet-failure-memory
Search and record failure-recovery lessons from real engineering sessions; submit and verify debugging lessons across the MisakaNet network.
context-drop
Tiny Swift CLI that reads the focused app's text selection via the macOS Accessibility API. Sutando.app's "drop context" action (hotkey configurable via state/hotkeys.json) shells out to this binary to capture what you have highlighted.
import-claude-context
Bring the owner's Claude Code history into Sutando: index, extract and haiku-summarise the stock /.claude/projects transcripts, stage the result, show the owner a digest and — only on their 'bring it in' — land it in core memory, notes/claude-import/ and People payloads. Triggers: 'import my Claude history', 'read my…
context-reconstruct
Re-anchor on the durable record (current-track, live owner thread, pending-questions, relay, buildlog) before acting on anything that depends on earlier context. Read, do not recall.