status

status is a skill for Claude Code from HAX-Studio/mnemonica. It costs 63 tokens per session (987 once invoked), scanned A, original, MIT.

A read-only health check for Mnemonica, a project documentation system that keeps knowledge about code in modular files. It reports whether the system is installed, whether its index is intact, and how old its last audit is.

In plain words
What is it for?
Use it to check Mnemonica installation status, find missing module files, verify index integrity, and see whether the documentation may be out of date.
Why use it?
It quickly shows whether the project's knowledge documents are present and current without changing any files.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: mentions CLAUDE.md.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the mnemonica plugin — 8 skills shipped together

Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add HAX-Studio/mnemonica
Claude Code
/plugin install mnemonica

Made for: Claude Code.

Or install mnemonica, the plugin that ships this one along with the rest of its 8 skills.

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 status

README.md
[![agentmods](https://agentmods.dev/badge/skills/hax-studio/mnemonica/status.svg)](https://agentmods.dev/skills/hax-studio/mnemonica/status)
Your own site
<a href="https://agentmods.dev/skills/hax-studio/mnemonica/status"><img src="https://agentmods.dev/badge/skills/hax-studio/mnemonica/status.svg" alt="Measured on agentmods" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 987 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00063 $0.00987
Opus 5 $0.00032 $0.00494
Sonnet 5 $0.00013 $0.00197
Haiku 4.5 $0.00006 $0.00099

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

Security

Grade A, and why

status 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 5d 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/status/SKILL.md · 69 lines

How it starts

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

Mnemonica: status

Report the current state of Mnemonica in a project — module count, index integrity, and how far behind the last audit is — without changing anything. This skill never writes a file; if a step below would normally cause a write in another skill, here it only reads what that step would have needed and reports on it.

If the user's invocation includes extra wording beyond the trigger phrase (for example, asking to focus the report on one specific module), treat that as scoping this run's report, not as license to skip a check below or to write anything — this skill has no rules to override in the first place, since it never modifies the project.

Step 1: Check whether Mnemonica is installed

Run ${CLAUDE_PLUGIN_ROOT}/scripts/check-index-integrity.sh <project-root>.

  • Exit 2 (NO_MNEMONICA_BLOCK): Mnemonica isn't installed here (or .claude/CLAUDE.md has no Mnemonica block). Report that plainly and suggest mnemonica:setup, and stop — there is nothing further to check.
  • Exit 0 or 1: continue. Note whether any module files were reported missing (exit 1) — carry that list into the final report; do not try to fix it here (that's audit-full's job).

Step 2: Read the module index

Read the module index from .claude/CLAUDE.md (the MNEMONICA:BEGIN/END block). List each module: its file, its owned-path glob(s), and its one-line description. This is the whole index, not a summary of it — the point of status is to make this visible without the user having to open the file themselves.

Step 3: Check git availability and audit freshness

Check whether <project-root> is inside a git working tree.

  • No git: report that audit-light is unavailable here and staleness can't be measured in commits; if knowledge/.mnemonica-state.json exists, still report its last_run_utc and last_mode as the only freshness signal available.
  • Git available: run ${CLAUDE_PLUGIN_ROOT}/skills/audit-light/scripts/diff-since-checkpoint.sh <project-root> purely to read its output — never act on what it reports as changed.
    • Exit 2 (NO_CHECKPOINT): report "never audited" and suggest mnemonica:audit-full.
    • Exit 3 (STALE_CHECKPOINT): report the checkpoint as stale and suggest audit-full to re-baseline.
    • Exit 4 (CORRUPT_CHECKPOINT): report the state file as unreadable and suggest audit-full to re-baseline.
    • Exit 0: read the COMMITS_BEHIND line for how many commits have landed since the last audit, and read knowledge/.mnemonica-state.json directly for last_run_utc and last_mode. Also read the FILES_CHANGED section — this is what turns "12 commits behind" into an actual sense of what happened, not just a count. List the changed paths if there are few enough to read comfortably; if there are many, report the count and a handful of examples instead of the full list, so this step stays a cheap read rather than turning into its own small audit. Report all of this together (for example: "12 commits behind, last audit was a light run 4 days ago; recent changes touch server/api/ and src/components/").

Read the full file on GitHub · 69 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. 5d ago First seen · 69 lines · 63 tokens per session scan A 941d7ee4ed22

Subscribe to this mod's changes

status is a skill published in the GitHub repository HAX-Studio/mnemonica (3 stars, last pushed 29d ago), licensed MIT. It adds 63 tokens to every session and 987 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-08-31.

Related

Other skills, from other repositories

smart-rebase

Smart partial rebase for squash-merge repositories. Auto-detect which commits to keep/drop when base branch was squash-merged into target. Use when: user says 'rebase', 'partial rebase', 'base already merged', 'smart rebase', or /smart-rebase. Not for: simple git rebase (the developer runs it — Claude never executes…

sd0xdev/sd0x-harness · 131 tokens

recap-doc

Post-development recap document generator. Use when: AI/Codex has implemented a feature and the user needs a guided walkthrough of what changed and why, with blind-spot detection and anticipated questions. Not for: Q&A follow-up (use /recap-ask), technical share-out for teammates (use /tech-brief), or generic code…

sd0xdev/sd0x-harness · 114 tokens

test-review

Test coverage review via Codex exec. Use when: reviewing test sufficiency, identifying coverage gaps, test quality audit. Not for: generating tests (use codex-test-gen), code review (use codex-code-review). Output: coverage analysis + gap report.

sd0xdev/sd0x-harness · 56 tokens

watch-ci

Monitor GitHub Actions CI runs until completion. Use when: watching CI after push, checking build status, monitoring PR checks, waiting for CI completion, user says 'watch CI', 'check CI', 'CI status', 'monitor build', or /watch-ci. Not for: pushing code (use push-ci), creating PRs (use create-pr). Output: per-run…

sd0xdev/sd0x-harness · 86 tokens

feature-dev

Feature development workflow. Use when: implementing features, writing code, running dev loop. Not for: understanding code (use code-explore), reviewing code (use codex-code-review). Output: implemented feature + tests + review gate.

sd0xdev/sd0x-harness · 50 tokens

jira

Jira integration — view issues, generate branches, create tickets, transition status. Use when: user mentions Jira ticket key (XX-123), says /jira, wants to create branch from ticket, create a new ticket, or update Jira status. Not for: GitHub issues (use issue-analyze).

sd0xdev/sd0x-harness · 64 tokens