pond-add-adapter

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

A playbook for adding an adapter to Pond, where an adapter converts an agent's session data to and from Pond's shared format. It covers defining the source format, recording a test fixture, implementing the conversion, and checking conformance.

In plain words
What is it for?
Use it when adding or reworking an adapter under Pond's adapter package, including its specification, fixture, codec, tests, and documentation.
Why use it?
It reduces the risk of losing fields or inventing values when connecting a new agent format. The required tests and registry updates make the adapter verifiable and discoverable.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: mentions subagents; built for openclaw; mentions OpenCode.

Good fit Use it when adding or reworking an adapter under Pond's adapter package, including its specification, fixture, codec, tests, and documentation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tenequm/pond/pond-add-adapter
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.

Any agent
npx skills add tenequm/pond --skill pond-add-adapter
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-add-adapter

README.md
[![agentmods](https://agentmods.dev/badge/skills/tenequm/pond/pond-add-adapter/github.svg)](https://agentmods.dev/skills/tenequm/pond/pond-add-adapter)
Your own site
<a href="https://agentmods.dev/skills/tenequm/pond/pond-add-adapter"><img src="https://agentmods.dev/badge/skills/tenequm/pond/pond-add-adapter/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.

agentmods 80×15 button for pond-add-adapter

Your own site · 80×15
<a href="https://agentmods.dev/skills/tenequm/pond/pond-add-adapter"><img src="https://agentmods.dev/badge/skills/tenequm/pond/pond-add-adapter.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,309 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00062 $0.05309
Opus 5 $0.00031 $0.02655
Sonnet 5 $0.00012 $0.01062
Haiku 4.5 $0.00006 $0.00531

Measured 3d ago against content hash 500c64e841ca, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-21, from the pricing page.

Security

Grade A, and why

pond-add-adapter 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 3d 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.

skills/pond-add-adapter/SKILL.md · 133 lines

How it starts

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

Adding a pond adapter

An adapter is a bidirectional codec between one agent's native session format and pond's canonical schema (docs/spec.md section 6). The bar it must meet: lossless capture (every source field recoverable), no synthesized values, additive re-sync, and a restore face that is either lossless-native or an honest refusal. The registry cost is fixed and small: one file under packages/pond/src/adapter/ plus its wiring in src/adapter/mod.rs - a module declaration, a re-export, and the registry() entry (spec 6.7).

The work splits into two phases. Phase A produces the spec doc and the fixture; Phase B implements from them. Ship both in ONE self-contained PR: spec doc + fixture + adapter + tests + doc rows. Opening a draft PR after Phase A, so the decision table gets reviewed before implementation, is recommended but not required.

Ground rules that override any instinct to improvise:

  • docs/spec.md section 6 is the contract. The named rules cited below (adapter-integrity-*, adapter-bounded-values, model-no-synthesis, ...) are binding, and each states WHY it exists - read the rule before deviating.
  • cargo fmt --check, cargo clippy --all-targets -- -D warnings, cargo test green is the whole bar for an adapter PR. No benchmarks: adapters are import-isolated from the store and query layer (a guard test in src/adapter/mod.rs enforces it and lists its exemptions with reasons), so an adapter cannot reach the store's write path, commit discipline, or query plans; what it can still get wrong - parse cost, emitted volume, freshness reads - is what the conformance harness and review look at.
  • Third-party session-search parsers (franken_agent_detection, deja-vu, ctx, ...) may be read as corroborating references, never as the authority. Their bar is a search projection; pond's is a lossless round-trip codec.
  • Fixtures come from sandboxed self-capture only. Never vendor another repo's fixture, and never copy files from a real (non-sandboxed) agent home.

Read the full file on GitHub · 133 lines

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. 3d ago First seen · 133 lines · 62 tokens per session scan A 500c64e841ca

Subscribe to this mod's changes

pond-add-adapter is a skill published in the GitHub repository tenequm/pond (72 stars, last pushed 3d ago), licensed Apache-2.0. It adds 62 tokens to every session and 5,309 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-09-18.

Related

Other skills, from other repositories

flutter-mcp-toolkit-control

Drive a running Flutter app — tap, scroll, type, fill forms, hot-reload, navigate. Use when you need to interact with the UI.

Arenukvern/mcp_flutter · 38 tokens

coding-agents-hooks-authoring

To author, register, and test Rosetta hooks, add a SemanticKind, or debug a hook that won't fire.

griddynamics/rosetta · 31 tokens

harness-engineering-lifecycle

Design, implement, and integrate generalized validation harnesses across a producer-consumer boundary after a local harness contract exists. Use when refactoring custom validation CLIs/MCPs for large polyrepos, extending Steward across sibling repos, or deploying a local tool to a consumer project for dogfooding and…

Arenukvern/mcp_flutter · 88 tokens

flutter-mcp-toolkit-dogfood-iterations

Runs and records fluttertestapp dogfood iterations (toolqualityrubric, rundogfoodeval.sh, dogfoodwebeval.yaml). Use when scoring MCP/intentcall quality, appending iteration N, comparing regressions, or CI static/weekly eval gates.

Arenukvern/mcp_flutter · 66 tokens

opik-test

Turn a failing Opik trace (or a described failure) into a repeatable regression check — a test-suite item with the trace's input and one or two binary assertions — so a fix can be verified by the compare skill. Works over the SDK; uses the MCP write tool when connected. Returns the suite, the item, and the assertion.…

comet-ml/opik-mcp · 141 tokens

qa-knowledge

To run QA engineering — requirements/gap analysis, scenario & spec design, test implementation, failure triage — over the QA knowledge base.

griddynamics/rosetta · 32 tokens