ddd-persist

ddd-persist is a skill for Claude Code, Codex from xg-gh-25/SwarmAI. It costs 154 tokens per session (2,037 once invoked), scanned A, original, MIT.

A disciplined tool for saving useful project knowledge into the correct documentation section. It decides whether information is worth keeping and supports moving or retiring outdated content.

In plain words
What is it for?
Use it to record lessons, decisions, or other durable project knowledge in a DDD, the project’s structured documentation set.
Why use it?
It prevents documentation from filling with stale or irrelevant facts and keeps stored knowledge organized.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to record lessons, decisions, or other durable project knowledge in a DDD, the project’s structured documentation set.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xg-gh-25/swarmai/s_ddd-persist
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 xg-gh-25/SwarmAI --skill s_ddd-persist
Clone the repo
git clone --depth 1 https://github.com/xg-gh-25/SwarmAI

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 ddd-persist

README.md
[![agentmods](https://agentmods.dev/badge/skills/xg-gh-25/swarmai/s_ddd-persist/github.svg)](https://agentmods.dev/skills/xg-gh-25/swarmai/s_ddd-persist)
Your own site
<a href="https://agentmods.dev/skills/xg-gh-25/swarmai/s_ddd-persist"><img src="https://agentmods.dev/badge/skills/xg-gh-25/swarmai/s_ddd-persist/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 ddd-persist

Your own site · 80×15
<a href="https://agentmods.dev/skills/xg-gh-25/swarmai/s_ddd-persist"><img src="https://agentmods.dev/badge/skills/xg-gh-25/swarmai/s_ddd-persist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 154 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,037 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Prompt Injection · line 82
    Hidden instructions were detected in comments or invisible text. These could contain malicious directives. Manual review is recommended.
    Fix: Audit all comments and invisible characters. Remove any instructions that direct the agent to perform unauthorized actions. Use plain, reviewable content.
  • medium Memory Poisoning · line 50
    Skill injects content designed to persist in agent memory or context across interactions. Persistent injection can alter agent behavior long after the initial interaction.
    Fix: Do not allow untrusted input to persist in agent memory or context. Validate all content before storing and implement memory isolation between sessions.
How audits are shown
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.00154 $0.02037
Opus 5 $0.00077 $0.01019
Sonnet 5 $0.00031 $0.00407
Haiku 4.5 $0.00015 $0.00204

Measured 9d ago against content hash ad28f75ad8b4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

ddd-persist 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 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/locked_write.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

backend/templates/ddd-skills/s_ddd-persist/SKILL.md · 139 lines

How it starts

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

DDD Persist (s_ddd-persist) — sediment cognition into the DDD, with discipline

Route knowledge into the correct section of THIS DDD, additively, under a lock. This is the WRITE side of the self-養成 loop: what a dev-loop's REFLECT stage learns (whatever pipeline the host runtime runs over this DDD) gets sedimented here so the next run is smarter. But persisting is a judgment, not a reflex — most passing facts should be SKIPPED (see Step 0).

DDD-native decouple of SwarmAI's s_persist. Same routing discipline + admission philosophy, re-homed to the DDD's own files. The locked read-modify-write engine ships bundled (scripts/locked_write.py, pure-stdlib + fcntl); the SwarmAI injection-guards (core.memory_guard) are fail-soft absent — a DDD's docs aren't SwarmAI's always-injected MEMORY.md. No data.db, no SwarmAI memory index, no backend.

The Routing Decision Tree (3 steps — do them in order)

Step 0: Should this be persisted AT ALL? (admission gate — default is SKIP)

Persisting is not free. A stored fact that drifts becomes a liability: stale → it misleads; fresh → it costs upkeep; and if it never drove a judgment, it was worthless the moment it was written. Most passing facts should NOT be persisted.

REJECT (do not persist) — volatile, zero-decision-value data:

  • Counts that drift: LOC, file/test counts, line numbers, star/fork snapshots, token sizes, "N sessions / N commits", percentages-of-the-moment.
  • A raw number whose only use is "to know the number." If it doesn't change a future decision, it's a measurement — take measurements live, don't store them.
  • Status true only right now: "build is green", "3 tabs open".
  • One-off transient context with no cross-session reuse.

For a drifting-but-occasionally-needed metric: store the reproducible method (the command that regenerates it), NEVER the frozen output. Or describe it qualitatively.

ADMIT (persist) only if BOTH hold:

  1. Decision-relevant — it will change how the agent or user judges/acts later.
  2. Stable — it won't be wrong next week without anyone touching it (a convention, an architecture decision, a failure lesson, a principle — not a live metric).

Read the full file on GitHub · 139 lines

Files

What ships with it

1 file 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. 9d ago First seen · 139 lines · 154 tokens per session scan A ad28f75ad8b4

Subscribe to this mod's changes

ddd-persist is a skill published in the GitHub repository xg-gh-25/SwarmAI (44 stars, last pushed yesterday), licensed MIT. It adds 154 tokens to every session and 2,037 once invoked, about $0.0008 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-03.

Related

Other skills, from other repositories

remember

Routes user requests containing "remember", "recall", "checkpoint", "session", "todo", or "where were we" to the correct OpenEmpiric (OEM) MCP tool. Use when the user wants to persist, retrieve, or contextualize knowledge from project memory.

xpajonx/openempiric · 59 tokens

why

Explain the provenance, authority, expiry, degradation state, and token accounting of CIGAR context already presented in this session.

hashgraph-online/hol-cigar · 27 tokens

checkpoint

Create an inspectable CIGAR checkpoint before compaction, interruption, or a meaningful task boundary.

hashgraph-online/hol-cigar · 22 tokens

memo-bank-query

Load the governing spec/contract for a file or topic from a project's memo-bank (a read-only MCP docs corpus) BEFORE reading code or editing. Use this in any repo that has a .island-slices.json or a memo-bank MCP server, whenever you are about to edit a file, or are asked "what governs X", "is there a spec for Y"…

kmitin/memo-bank · 147 tokens

audit-knowledge

Scan Antigravity conversation transcript + artifact directory for extractable knowledge. Use when user asks for 'knowledge audit', 'audit knowledge', 'check for extractable knowledge', 'scan transcript', or at session start when audit cadence is exceeded.

mikeprasad/aria-knowledge · 48 tokens

handoff

Generate a passoff package so the next reader can pick up cleanly — for future-you in a new session (typically when context is high and you need to restart) or for a coworker (via brief mode). Default + auto modes emit a paste-ready next-session opener as the headline artifact, alongside PROGRESS / CLAUDE / memory…

mikeprasad/aria-knowledge · 233 tokens