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 agentmods add skills/edwin-hao-ai/awareness-sdk/savenpx skills add edwin-hao-ai/Awareness-SDK --skill savegit clone --depth 1 https://github.com/edwin-hao-ai/Awareness-SDKWrote 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/edwin-hao-ai/awareness-sdk/save)<a href="https://agentmods.dev/skills/edwin-hao-ai/awareness-sdk/save"><img src="https://agentmods.dev/badge/skills/edwin-hao-ai/awareness-sdk/save.svg" alt="Measured on agentmods" 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.00016 | $0.02573 |
| Opus 5 | $0.00008 | $0.01287 |
| Sonnet 5 | $0.00003 | $0.00515 |
| Haiku 4.5 | $0.00002 | $0.00257 |
Grade B, and why
save scanned grade B with 2 findings 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 6d 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.
Sends data to an external URLmediumData exfiltration
A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.
curl -s -X POST http://localhost:37800/mcp -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"awareness_record","arguments":{"action":"remember","content":"...","insig 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:37800/mcp -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"awareness_record","arguments":{"action":"remember","content":"...","insig How it starts
The opening of the file, as written. The whole thing — 182 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Save current session progress to Awareness Memory.
Focus (optional): $ARGUMENTS
How to call Awareness tools
Try MCP tools first (awareness_init, awareness_recall, awareness_record, awareness_lookup).
If MCP tools are NOT available, use Bash to call the local daemon HTTP API directly:
# awareness_record (single)
curl -s -X POST http://localhost:37800/mcp -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"awareness_record","arguments":{"action":"remember","content":"...","insights":{"knowledge_cards":[...],"action_items":[...],"risks":[...]}}}}'
# awareness_record (batch)
curl -s -X POST http://localhost:37800/mcp -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"awareness_record","arguments":{"action":"remember_batch","items":[{"content":"step 1..."},{"content":"step 2..."}],"insights":{"knowledge_cards":[...],"action_items":[...],"risks":[...]}}}}'
The response is JSON-RPC: result.content[0].text contains the tool output as JSON string.
Steps
-
Gather context about what happened in this session.
-
Extract structured insights from the session — salience-aware, not greedy:
Philosophy (distilled essence, not raw logs): your job is NOT "generate a card for every turn" — it is "identify what's worth recalling in 6 months on a fresh project". Returning empty arrays for
knowledge_cardsis a first-class answer when the session was just tool testing, chatter, or framework metadata.- knowledge_cards: only genuine insights (each with category, title, summary, confidence, + three 0.0-1.0 scores).
- When to extract:
- knowledge_cards: only genuine insights (each with category, title, summary, confidence, + three 0.0-1.0 scores).
- The user made a decision — chose X over Y, with a stated reason
- A non-obvious bug was fixed — symptom + root cause + fix + how to avoid recurring
- A workflow / convention was established — ordered steps, preconditions, gotchas
- The user stated a preference or hard constraint — "I prefer X", "never do Y"
- A pitfall was encountered and a workaround found — trigger + impact + avoidance
- An important fact about the user or project surfaced for the first time
- **When NOT to extract:**
- Agent framework metadata: content beginning with
Sender (untrusted metadata),turn_brief,[Operational context metadata ...],[Subagent Context], or wrapped insideRequest:/Result:/Send:envelopes that only carry such metadata. Strip those wrappers mentally and judge what remains. - Greetings / command invocations: "hi", "run tests", "save this", "try again".
- "What can you do" / AI self-introduction turns.
- Code restatement: code itself lives in git; only extract the lesson if one exists.
- Test / debug sessions where the user is verifying the tool works (including tests of awareness_record / awareness_recall themselves). A bug fix in those tools IS worth extracting as problem_solution; a raw "let me test if recall works" turn is not.
- Transient status / progress updates — "building...", "retrying...", "✅ done".
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.
- 6d ago First seen · 182 lines · 16 tokens per session scan B cb40316a38e3
save is a skill published in the GitHub repository edwin-hao-ai/Awareness-SDK (9 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 16 tokens to every session and 2,573 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, 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
mulch-record-from-evidence
Turn the evidence of a finished work session — git commits, changed files, recently-touched seeds issues — into well-formed ml record invocations. Use at session close, when an agent has made changes worth preserving as mulch expertise but hasn't yet recorded them.
synap
Add persistent, structured long-term memory to AI agents using Maximem Synap. Use this skill whenever the user is building, debugging, or evaluating an AI agent and mentions any of: "memory", "long-term memory", "persistent memory", "agent memory", "remember across sessions", "context window", "agent forgets", "user…
memory-protocol
Universal protocol for total-agent-memory MCP server. Activate at session start, before any non-trivial task, after every significant action, on errors, and at session end. Relevant whenever the user mentions: memory, recall, past context, decisions history, conventions, lessons learned, "продолжаем", "сохранись"…
memory
Activate this skill when starting a new session, beginning a new task, saving knowledge, recalling past decisions, or after completing significant work. Also activate on errors to log them for pattern analysis. Relevant when the user asks about memory, past context, lessons learned, decisions history, project…
synap
Add persistent, structured long-term memory to AI agents using Maximem Synap. Use this skill whenever the user is building, debugging, or evaluating an AI agent and mentions any of: "memory", "long-term memory", "persistent memory", "agent memory", "remember across sessions", "context window", "agent forgets", "user…
engram-close-session
Engram의 명시적 세션 종료·수동 반성을 수행한다. 트리거: 세션 종료, 대화 종료, 수고, 끝, /reflect, 반성, close session. 중간 메모리/Wiki 정리는 이 skill이 아니라 engramsummarizesession을 사용한다.