agents-remember: Skill for Claude Code

.agents/skills/c-00-initialize-memory-repo/SKILL.md

c-00-initialize-memory-repo is a skill for Claude Code, Codex from Foxfire1st/agents-remember. It costs 44 tokens per session (2,375 once invoked), scanned A, original, MIT.

A procedure for creating or repairing the local memory files an agent uses for a repository. It can also create a separate memory repository when the developer explicitly requests one.

In plain words
What is it for?
Initializing repository memory before onboarding or task work, repairing missing memory scaffolding, and preparing a project for later context lookup.
Why use it?
Onboarding and task workflows need a known place to store durable project context. This procedure makes that storage available without installing unrelated runtime components.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md.

This is Foxfire1st/agents-remember's own configuration. It tells Claude Code and Codex how to work on agents-remember 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 agents-remember configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Foxfire1st/agents-remember. 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/Foxfire1st/agents-remember/main/.agents/skills/c-00-initialize-memory-repo/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Foxfire1st/agents-remember

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 c-00-initialize-memory-repo

README.md
[![agentmods](https://agentmods.dev/badge/skills/foxfire1st/agents-remember/c-00-initialize-memory-repo.svg)](https://agentmods.dev/skills/foxfire1st/agents-remember/c-00-initialize-memory-repo)
Your own site
<a href="https://agentmods.dev/skills/foxfire1st/agents-remember/c-00-initialize-memory-repo"><img src="https://agentmods.dev/badge/skills/foxfire1st/agents-remember/c-00-initialize-memory-repo.svg" alt="Measured on agentmods" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,375 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 Privilege Escalation · line 185
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
  • high Privilege Escalation · line 228
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
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.00044 $0.02375
Opus 5 $0.00022 $0.01188
Sonnet 5 $0.00009 $0.00475
Haiku 4.5 $0.00004 $0.00237

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

Security

Grade A, and why

c-00-initialize-memory-repo 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 8d 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.

.agents/skills/c-00-initialize-memory-repo/SKILL.md · 319 lines

How it starts

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

c-00-initialize-memory-repo Initialize Memory Repo

Create the minimal memory root required before onboarding or task workflows can use Agents Remember for a target repository.

This skill initializes durable repo memory through MCP memory_init. It does not install the coordinator runtime, expose harness skills, create task worktrees, or generate onboarding content. Request MCP runtime_install only when the coordinator runtime scaffold is missing or stale. Harness skill exposure for first-run setup comes from the copied starter package, not from this skill. Use c-03-repo-bootstrap after the memory scaffold exists when the developer wants onboarding content generated.

Use c-08-ar-coordination-context-resolver to inspect an existing repository's active context. This skill creates or repairs missing memory scaffolding; it does not replace the c-08-ar-coordination-context-resolver skill as the normal resolver.

Inputs

  • repo_id: configured MCP repository ID whose memory is being initialized. This is the normal installed runtime input.
  • code_repository_root: root directory of the code repository whose memory is being initialized. Use this only for conceptual review or source-debugging; normal installed runtime calls identify the configured repository by repo_id.
  • topology: internal by default. Use external only when the developer explicitly asks for an external memory repo.
  • coordination_root: supplied by MCP settings for normal installed runtime calls.
  • mode: create-missing by default. Use repair only when the developer explicitly asks to fix existing memory scaffold files.

MCP Tools

Use the Agents Remember MCP setup tools as the normal installed runtime entry points:

Preview first. These setup tools now apply by default (dry_run defaults to false). For any effectful run, call once with dry_run=true to inspect the plan, confirm it, then run the real apply (omit dry_run).

memory_init(repo_id="<repo-id>", dry_run=true, initialize_git=true)   # preview
memory_init(repo_id="<repo-id>", initialize_git=true)                 # apply
runtime_install(include_benchmarks=false, install_provider_deps=false)

Read the full file on GitHub · 319 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. 8d ago First seen · 319 lines · 44 tokens per session scan A eaa7f69dc1cc

Subscribe to this mod's changes

c-00-initialize-memory-repo is a skill published in the GitHub repository Foxfire1st/agents-remember (27 stars, last pushed yesterday), licensed MIT. It adds 44 tokens to every session and 2,375 once invoked, about $0.0002 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

obsidian-memory

Cross-project long-term memory over an Obsidian brain vault: recall relevant notes before a task, and persist distilled conclusions (decisions, pitfalls, solutions, progress) back after a task. The vault is an optional aggregation/projection layer — repo-local artifacts stay the per-project source of truth, and sync…

Ancienttwo/repo-harness · 212 tokens

memwal

Walrus Memory SDK — portable agent memory that works across apps, sessions, and workflows. Use when users say: "add memory to my app" "portable agent memory" "integrate Walrus Memory" "AI agent memory" "memory across agents" "Walrus memory storage" "setup Walrus Memory" "recall memories".

MystenLabs/MemWal · 80 tokens

cortex-automate

Set up automation — prospective memory triggers, neuro-symbolic rules, and CLAUDE.md sync. Use when the user says 'remind me when', 'trigger when', 'create a rule', 'auto-remember', 'sync to CLAUDE.md', 'push insights', 'set up trigger', 'when I open this file', 'when this keyword appears', or when you want to…

cdeust/Cortex · 93 tokens

cortex-remember-global

Store a global memory that is visible across all projects. Use when the user shares architecture rules, coding conventions, infrastructure facts, security policies, team agreements, or any knowledge that applies beyond a single project. Triggers on 'remember this everywhere', 'this applies to all projects', 'global…

cdeust/Cortex · 99 tokens

cortex-consolidate

Run memory maintenance — decay old memories, compress stale content, consolidate episodic memories into semantic knowledge, and run sleep-like replay. Use when the user says 'clean up memories', 'consolidate', 'run maintenance', 'compress old memories', 'memory cleanup', or periodically to keep the memory system…

cdeust/Cortex · 84 tokens

cortex-explore-memory

Explore the memory system's state, find gaps in knowledge, assess coverage, and get diagnostic information. Use when the user asks 'what does my memory look like', 'show me memory stats', 'what am I missing', 'how good is my knowledge', 'memory health', 'show coverage', 'find gaps', 'what topics are weak', or when you…

cdeust/Cortex · 91 tokens