pond

pond is a skill for Claude Code, Codex from tenequm/pond. It costs 71 tokens per session (790 once invoked), scanned A, original, Apache-2.0.

A memory and search tool for finding information from earlier AI coding sessions. It can recall previous decisions, work, transcripts, and session-wide patterns.

In plain words
What is it for?
Use it to find what was previously changed or decided, read an earlier session, review past agent work, or run read-only searches across session history.
Why use it?
It prevents repeating research or guessing about work that was already discussed in another session.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents; mentions Claude Code; mentions Codex.

Install

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.

agentmods
npx agentmods add skills/tenequm/pond/pond
Any agent
npx skills add tenequm/pond --skill pond
Clone the repo
git clone --depth 1 https://github.com/tenequm/pond

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for pond

README.md
[![agentmods](https://agentmods.dev/badge/skills/tenequm/pond/pond.svg)](https://agentmods.dev/skills/tenequm/pond/pond)
Your own site
<a href="https://agentmods.dev/skills/tenequm/pond/pond"><img src="https://agentmods.dev/badge/skills/tenequm/pond/pond.svg" alt="Measured on agentmods" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 790 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00071 $0.00790
Opus 5 $0.00036 $0.00395
Sonnet 5 $0.00014 $0.00158
Haiku 4.5 $0.00007 $0.00079

Measured 6d ago against content hash 488abfecdb15, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

pond 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 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.

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.

packages/pond/SKILL.md · 58 lines

How it starts

The opening of the file, as written. The whole thing — 58 lines — stays where its author put it; the contents beside it link to each section on GitHub.

pond

pond is your memory across every AI coding session you have run - stored losslessly, searchable over MCP. If a task needs context you lack, pond likely has it: recall first, then answer. Before you say "I don't know" or re-derive something that sounds prior, search pond.

Which tool

  • Find past work ("what did we decide", "have we hit this before") -> pond_search (the tool description on the running pond lists the available modes).
  • Read, analyze, review, or summarize a session -> pond_get_session(id) - one call, full readable transcript (a message id also works: it resolves to its parent session, page anchored at that message).
  • Expand one message with its full tool bodies -> pond_get_message(id).
  • Corpus-wide aggregation, exact strings inside tool bodies, subagent sessions, bulk export -> pond_sql (read-only SQL). Read resource schema://pond-sql first - do not guess columns or JSON paths.

Rules that prevent wrong conclusions

  • Long sessions supersede their own early conclusions. For "what did we decide / latest state", read the end (pond_get_session(id, from="end")) or pond_search with sort_by=recency - relevance rank favors the early, confident, possibly overturned phrasing.
  • Search covers only user/assistant conversational text - tool output is excluded by design. A weak search result is NOT proof of absence: verify exact strings with pond_sql contains_tokens(search_text, '...') before concluding something never happened.
  • Tool bodies in SQL: tool_call is {call_id, name, params} (a Bash command is json_extract(variant_data, '$.params.command')); tool_result is {call_id, name, is_failure, result}.
  • Token accounting: one source line = one row, so sibling rows of one provider turn repeat its usage snapshot - never SUM usage per row (~2-3x inflation). Scope by session_id, group by options.anthropic.id, take MAX per usage field, then sum; the worked query is in schema://pond-sql.
  • On a remote store, SQL over parts or the JSONB options column costs seconds per round-trip: scope by session_id / tool_name, and raise timeout_seconds when a broad scan is genuinely needed.

Read the full file on GitHub · 58 lines

Files

What ships with it

60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

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.

  1. 6d ago First seen · 58 lines · 71 tokens per session scan A 488abfecdb15

Subscribe to this mod's changes

pond is a skill published in the GitHub repository tenequm/pond (58 stars, last pushed 3d ago), licensed Apache-2.0. It adds 71 tokens to every session and 790 once invoked, about $0.0004 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-30.

Related

Other skills, from other repositories

recall

Use find before WebSearch or WebFetch for research, or before answering a why/how/what-did-we-decide question. Quarry indexes this codebase, design docs, prior session transcripts, and previously fetched web pages — it often already has the answer. Prefer grep for symbol and value lookups; prefer find for meaning.…

punt-labs/quarry · 155 tokens

memory-audit-pattern-extraction

模式提取与失效解药分析。当发现多条记忆在讲同一个教训,或发现自己在一而再再而三地犯同样的错误时使用。.

Dataojitori/nocturne_memory · 48 tokens

init-workspace-documentation

Skill "init-workspace-documentation" from griddynamics/rosetta, covering agent memory.md, agent memory, preventive rules, what worked and what failed.

griddynamics/rosetta · 10 tokens

memorix-mini-skills

Use when durable project knowledge, gotchas, workflows, or repeated fixes should become reusable agent guidance instead of ordinary memory.

AVIDS2/memorix · 30 tokens

memorix-sessions

Use when resuming work, preparing handoff context, binding an HTTP control-plane project, or deciding whether sessionstart is useful.

AVIDS2/memorix · 31 tokens

frontmcp-extensibility

Use when extending FrontMCP beyond the core SDK by integrating external npm packages, libraries, or third-party services into providers and tools. Covers VectoriaDB for in-memory semantic and vector search (ML-based embeddings or TF-IDF keyword engines, with persistence) and the tamper-evident, hash-chained skill…

agentfront/frontmcp · 124 tokens