Claude-Mind: Skill for Claude Code

.claude/skills/aspirations-curate-memory/SKILL.md

aspirations-curate-memory is a skill for Claude Code from zkysar1/Claude-Mind. It costs 153 tokens per session (3,215 once invoked), scanned B, original, MIT.

A daily cleanup process for the agent’s guardrails and reasoning notes, keeping useful entries and retiring ones that have produced no helpful evidence. Guardrails are rules that constrain behavior; a reasoning bank stores reusable ways of thinking.

In plain words
What is it for?
Use it to review low-evidence guardrails and reasoning entries, keep or revise useful ones, retire stale ones, and send genuinely broken rules for maintenance.
Why use it?
It reduces the buildup of unused or ineffective guidance that can make future decisions harder or less relevant.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: reads .claude/ paths; mentions CLAUDE.md.

This is zkysar1/Claude-Mind's own configuration. It tells Claude Code how to work on Claude-Mind itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Claude-Mind configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is Bash: bash core/scripts/utilization-stats.sh guardrails candidates --limit 15.

Reuse

Borrowing it

Nothing to install: this file belongs to zkysar1/Claude-Mind. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/zkysar1/Claude-Mind/main/.claude/skills/aspirations-curate-memory/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/zkysar1/Claude-Mind

Made for: Claude Code.

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 aspirations-curate-memory

README.md
[![agentmods](https://agentmods.dev/badge/skills/zkysar1/claude-mind/aspirations-curate-memory/github.svg)](https://agentmods.dev/skills/zkysar1/claude-mind/aspirations-curate-memory)
Your own site
<a href="https://agentmods.dev/skills/zkysar1/claude-mind/aspirations-curate-memory"><img src="https://agentmods.dev/badge/skills/zkysar1/claude-mind/aspirations-curate-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.

agentmods 80×15 button for aspirations-curate-memory

Your own site · 80×15
<a href="https://agentmods.dev/skills/zkysar1/claude-mind/aspirations-curate-memory"><img src="https://agentmods.dev/badge/skills/zkysar1/claude-mind/aspirations-curate-memory.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 153 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,215 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00153 $0.03215
Opus 5 $0.00077 $0.01607
Sonnet 5 $0.00031 $0.00643
Haiku 4.5 $0.00015 $0.00321

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

Security

Grade B, and why

aspirations-curate-memory scanned grade B with 1 finding 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 7d 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

EITHER (a) a grep of CLAUDE.md + .claude/skills + .claude/rules + core/config
.claude/skills/aspirations-curate-memory/SKILL.md · 265 lines

How it starts

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

/aspirations-curate-memory — Daily Curation Sweep

Walks the bottom of the guardrail and reasoning-bank populations, retiring entries that have accumulated no positive evidence over many exposures and time, keeping those with recent signal, and routing genuinely-broken triggers to a Maintain goal.

This is the procedure that g-115-348 (daily, recurring, interval 24h) runs. The agent can also invoke it directly when the curation-log shows a backlog.

Why this exists

Audit on 2026-05-09 found 320 active guardrails and 693 active reasoning-bank entries; 143 of the guards and 378 of the rb entries had zero positive evidence (no helpful, no inferred, no active, no cited) across hundreds of LLM exposures. No retirement protocol fired. The framework was additive without being subtractive. This skill is the subtractive arm.

Cadence

g-115-348 runs every 24h (interval_hours: 24). At 15 items/day per kind, the guardrail population walks once in ~3 weeks; rb in ~7 weeks. After the first sweep, the next_review_eligible_at exemption window self-throttles daily volume to whatever has aged out (14d for zero-evidence, 30d for positive).

Procedure

Phase 0 — Load conventions

Bash: load-conventions.sh reasoning-guardrails learning-routing (no-op if already loaded).

Phase 1 — Pull candidates

Bash: bash core/scripts/utilization-stats.sh guardrails candidates --limit 15

Parse JSON. Each candidate item carries:

  • id, evidence (composite score, see utilization-stats.py)
  • retrieval_count, times_helpful, times_inferred_helpful, times_active, times_cited, times_skipped, times_inferred_unknown
  • age_days, created
  • next_review_eligible_at, auto_flagged_for_review
  • category, rule (truncated to 140 chars)

If candidate_count == 0: skip to Phase 4. Routine close — population is caught up.

Phase 2 — Per-item decision

For each candidate (process in returned order — already sorted by evidence asc, age desc, exposure desc):

Read the full file on GitHub · 265 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. 7d ago Changed 3460ecafc0a8
  2. 11d ago First seen · 265 lines · 153 tokens per session scan B bc6ccbd23c3c

Subscribe to this mod's changes

aspirations-curate-memory is a skill published in the GitHub repository zkysar1/Claude-Mind (5 stars, last pushed 2d ago), licensed MIT. It adds 153 tokens to every session and 3,215 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.