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 joleschmidt/palim-mcp-examples --skill palim-memorygit clone --depth 1 https://github.com/joleschmidt/palim-mcp-examplesWrote 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/joleschmidt/palim-mcp-examples/palim-memory)<a href="https://agentmods.dev/skills/joleschmidt/palim-mcp-examples/palim-memory"><img src="https://agentmods.dev/badge/skills/joleschmidt/palim-mcp-examples/palim-memory/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/joleschmidt/palim-mcp-examples/palim-memory"><img src="https://agentmods.dev/badge/skills/joleschmidt/palim-mcp-examples/palim-memory.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.00050 | $0.00476 |
| Opus 5 | $0.00025 | $0.00238 |
| Sonnet 5 | $0.00010 | $0.00095 |
| Haiku 4.5 | $0.00005 | $0.00048 |
Grade A, and why
palim-memory scanned grade A with 0 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 8d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 36 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Palim Memory
Use Palim as the durable context layer for work the user explicitly wants to retrieve across AI clients.
Resume and retrieve
- Call
palim_resumewhen the user asks to continue recent work without naming a specific session. - Use
palim_searchfor concrete keywords across saved sessions. - Use
palim_search_by_date_rangefor date or metadata filters; do not expect it to search encrypted message bodies. - Use
palim_search_memoriesfor durable facts, preferences, and decisions stored as memories. - Use
palim_get_contextwhen the user needs a compact synthesis across several relevant sessions.
Palim currently uses PostgreSQL full-text and exact-text matching, not semantic embeddings. If an exact title phrase misses, retry with distinctive keywords, tags, or a date range.
Save useful context
- Prefer
palim_save_contextfor a lightweight, self-contained checkpoint after a substantial result, decision, or change of direction. - Keep one stable
session_idfor checkpoints in the same conversation so later saves update the same thread. - When continuing a thread returned by
palim_resume, pass its session ID ascontinues_fromwhile keeping the current conversation's own stablesession_id. - Use
palim_add_memoryfor a durable fact or preference that should be independently searchable. - Use
palim_save_sessiononly when the user requests or genuinely needs the full transcript.
Never save secrets, trivial exchanges, or content the user asked not to persist. Do not claim a save succeeded unless the tool confirms it.
Safety and scope
- Keep reads and writes within the authenticated user's Palim account.
- Treat deletion as destructive and require clear scope before calling a delete tool.
- Do not publish Palim content to external services unless the user separately requests and authorizes that action through an appropriate tool.
- If a named Palim tool is unavailable, use the closest available Palim tool and state the limitation instead of inventing a result.
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.
- 8d ago First seen · 36 lines · 50 tokens per session scan A a6db317af689
palim-memory is a skill published in the GitHub repository joleschmidt/palim-mcp-examples (0 stars, last pushed 1mo ago), licensed MIT. It adds 50 tokens to every session and 476 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
memory-safety-c-cpp
Reference vocabulary for memory-safety vulnerabilities in native C/C++ code — bug-class taxonomy, common arithmetic patterns that lead to corruption, dispatch-family discipline, type-confusion idioms, use-after-free patterns, and exploitability factors. Read when analyzing, hypothesizing, designing harnesses for, or…
lc-curate-context
Decide which files a task actually needs, record that as a reusable llm-context rule, verify it against the codebase - including the files your selection references but leaves out - and pack it for your own context, a chat, or a sub-agent you dispatch. Load when choosing what code to put in front of a model, packing…
cortex-automate
Set up automation — prospective memory triggers, neuro-symbolic rules, and CLAUDE.md sync. Use when the user says 'remind me when', 'trigger when', 'create a rule', 'auto-remember', 'sync to CLAUDE.md', 'push insights', 'set up trigger', 'when I open this file', 'when this keyword appears', or when you want to…
cortex-navigate-knowledge
Navigate the knowledge graph — trace entity relationships, explore causal chains, drill into memory clusters, and traverse co-access paths. Use when the user asks 'how are these related', 'what connects X to Y', 'show me the knowledge graph', 'trace the relationship', 'what caused X', 'drill down into', 'explore…
cortex-profile
View and manage your cognitive profile — how you think, work patterns, blind spots, and cross-domain connections. Use when the user says 'show my profile', 'how do I work', 'what are my patterns', 'cognitive style', 'blind spots', 'methodology', or at the start of a session to load context. Also use 'rebuild profile'…
cortex-recall-global
Search and retrieve global memories — knowledge that applies across all projects. Use when the user asks 'what are our coding standards', 'what conventions do we follow', 'what's our infrastructure setup', 'do we have a rule about', 'what applies to all projects', 'shared knowledge', 'global rules', or when you need…