persist

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

A knowledge-saving router that decides whether information should be stored and sends it to the appropriate project document, memory file, or searchable library.

In plain words
What is it for?
Use it when recording durable decisions, project knowledge, technical notes, improvements, or other information meant for future sessions.
Why use it?
It prevents useful facts from being scattered across files or saved in the wrong place, while filtering out information that should not be kept.

Skill for Claude CodeCodex

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

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python backend/scripts/artifact_cli.py ddd-retire \.

Good fit Use it when recording durable decisions, project knowledge, technical notes, improvements, or other information meant for future sessions.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/xg-gh-25/SwarmAI
agentmods
npx agentmods add skills/xg-gh-25/swarmai/s_persist

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 persist

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/xg-gh-25/swarmai/s_persist"><img src="https://agentmods.dev/badge/skills/xg-gh-25/swarmai/s_persist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 112 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,253 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: 3 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 YARA Match · line 3
    YARA rule matched a hack tool or exploit indicator (offensive tools, reconnaissance, privilege escalation, or exploit frameworks).
    Fix: Remove offensive tool references and exploit code. Legitimate agent skills should not contain penetration testing tools, exploit frameworks, or reconnaissance utilities.
  • high Prompt Injection · line 190
    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 102
    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.00112 $0.04253
Opus 5 $0.00056 $0.02126
Sonnet 5 $0.00022 $0.00851
Haiku 4.5 $0.00011 $0.00425

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

Security

Grade A, and why

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 11d 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/skills/s_persist/SKILL.md · 236 lines

How it starts

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

Persist — Unified Knowledge Routing

Persist knowledge to the correct destination. Routes content based on type and project context to the appropriate file and section. Replaces the old s_save-memory (which wrote everything to MEMORY.md).

Routing Decision Tree (3 steps)

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. The best fix for a misleading stale entry is to never store it. Most passing facts should NOT be persisted. (AGENT R30#4 / P6.)

This is JUDGMENT, not a gate. No regex or hook can decide it — the same string (91K) is a liability as a usage snapshot and fine as a budget cap. It cannot be mechanically enforced, so it lives here as a norm you must apply, not check off. Reading this as a denylist is the failure mode: don't pattern-match the examples below, ask the one question.

THE ONE QUESTION (apply to every number / status / fact before storing it):

Is this value dynamic — AND does it change no future judgment? If both → REJECT. A value earns a place ONLY if it's decision-relevant (it will change how the agent or user judges/acts later) AND stable (it won't be wrong next week without anyone touching it). Both must hold. The conjunction is the whole test:

  • dynamic + drives-no-judgment → REJECT (a token count, a star snapshot).
  • dynamic + decision-relevant → keep, but store the method not the frozen value (a version bump matters, so record "run X to get it", never the number itself).
  • stable + decision-relevant → keep (a convention, an architecture decision, a failure lesson, a principle).
  • stable + drives-no-judgment → still SKIP (trivia is not knowledge).

Examples of REJECT (illustrations of the question, NOT a checklist to match):

  • Continuously-drifting counts: LOC, file/test/skill 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" — that's a measurement, taken live.
  • Status true only right now: "daemon is up", "CI is green", "3 tabs open".
  • One-off transient context with no cross-session reuse.

Read the full file on GitHub · 236 lines

Files

What ships with it

3 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. 11d ago First seen · 236 lines · 112 tokens per session scan A ffd5e0cece8f

Subscribe to this mod's changes

persist is a skill published in the GitHub repository xg-gh-25/SwarmAI (44 stars, last pushed 4d ago), licensed MIT. It adds 112 tokens to every session and 4,253 once invoked, about $0.0006 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

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

audit-share

Batch-review personal knowledge for promotion to team-shared project knowledge. Walks insights/decisions/approaches/rules and IDEAS-BACKLOG.md entries, recommends a target project-knowledge/ destination per item, and lets the user approve all/numbers/modify/skip. Use when user says '/audit-share', '/share-audit'…

mikeprasad/aria-knowledge · 97 tokens