tidy

tidy is a skill for Claude Code, Codex from OutlineDriven/odin-codex-plugin. It costs 84 tokens per session (1,066 once invoked), scanned A, original, Apache-2.0.

A dispatcher for tidying structural mess in code, memory files, workspaces, Git history, and documentation. It identifies the target from the current context and sends the work to the relevant cleanup guidance.

In plain words
What is it for?
Use it when you ask to tidy or clean up a file, workspace, Git stack, memory directory, document, or active code diff.
Why use it?
It keeps cleanup focused and separate from behavior changes, avoiding broad or unrelated reorganizing.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/outlinedriven/odin-codex-plugin/tidy
Any agent
npx skills add OutlineDriven/odin-codex-plugin --skill tidy
Clone the repo
git clone --depth 1 https://github.com/OutlineDriven/odin-codex-plugin

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 tidy

README.md
[![agentmods](https://agentmods.dev/badge/skills/outlinedriven/odin-codex-plugin/tidy.svg)](https://agentmods.dev/skills/outlinedriven/odin-codex-plugin/tidy)
Your own site
<a href="https://agentmods.dev/skills/outlinedriven/odin-codex-plugin/tidy"><img src="https://agentmods.dev/badge/skills/outlinedriven/odin-codex-plugin/tidy.svg" alt="Measured on agentmods" height="20"></a>
Per session 84 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,066 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 $0.00084 $0.01066
Opus 5 $0.00042 $0.00533
Sonnet 5 $0.00017 $0.00213
Haiku 4.5 $0.00008 $0.00107

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

Security

Grade A, and why

tidy 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 4d 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/tidy/SKILL.md · 88 lines

How it starts

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

Tidy — structural-cleanup dispatcher

Compress first. Before adding complexity, reduce coupling. Before changing behavior, improve structure. This skill detects what needs tidying from context and routes to the right sibling skill. Domain procedures live in the siblings — this skill owns only scope detection, dispatch, and the output contract.

Invariants:

  • Every tidy action is atomic and scoped to what is already in view.
  • Tidy commits are always separate from behavior commits.
  • No opportunistic sweeps beyond the declared or clearly active scope.

Scope detection

Inspect context in priority order and dispatch to the first matching domain:

Signal Domain Dispatch to
File path(s), active diff, or cargo/dune target named Code cleanup-codebase skill
memory/ directory, MEMORY.md, or memory file(s) named Memory memory-clean then memory-update skills
.outline/, /tmp scratch, *.tmp, *.bak, repomix packs Workspace Inline (see below)
git sl, commit stack, commit message(s) named Git git-branchless skill + atomic-commit skill
Docs, comments, ADRs, READMEs, plan files named Docs Inline (see below)
User explicitly says "tidy ICM" or names an ICM topic ICM state Inline (see below)
No clear signal Ask: "What are we tidying — code, memory, workspace, git, docs, or ICM?"

Inline procedures (workspace, docs, and ICM state)

These three domains are handled inline without a dedicated sibling skill.

Workspace

  1. Discover scratch artifacts in scope:
    fd -t f -E '.git' -E 'target' -E '_build' \
      '(\.(tmp|bak|outline)|repomix-output)' .
    fd -t f /tmp -g '<session-prefix>-*' 2>/dev/null
    
  2. Confirm each is truly scratch (not referenced by any open plan, task, or active diff).
  3. Remove with rip (not rm). Report count and paths.

Docs

  1. Scan in-scope file(s) for: stale TODO/FIXME (git-blame date > 6 months), comments contradicting current code, commented-out code blocks, multi-paragraph docstrings on non-API-surface functions, overclaims about external contracts.
  2. Show the current text + proposed change for each candidate. Edit only on confirmation or for purely cosmetic fixes (whitespace, spelling).
  3. Overclaims: annotate with <!-- VERIFY --> and surface to the user rather than deleting.

Read the full file on GitHub · 88 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. 4d ago First seen · 88 lines · 84 tokens per session scan A fe45e4a53c8f

Subscribe to this mod's changes

tidy is a skill published in the GitHub repository OutlineDriven/odin-codex-plugin (15 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 84 tokens to every session and 1,066 once invoked, about $0.0004 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

git-branchless

Enforce idiomatic git-branchless during planning and executing tasks — detached-HEAD-first work, in-memory rebase via git move, event-log recovery via git undo, deferred branch creation, speculative-merge git sync for base updates. Use when planning or executing multi-commit work, history rewrites, stack edits…

OutlineDriven/odin-gemini-cli-extension · 131 tokens

ai-collab-protocols

Surface in-task-collaboration protocols when the user describes an AI workflow informally — URL-as-entity-reference, PR-comment threads as session memory. Trigger when the user names entities by colloquial label instead of stable URL, asks "how should I structure this for Claude", or describes a multi-step Claude…

OutlineDriven/odin-gemini-cli-extension · 84 tokens

memory-clean

Audit memory directory for structural issues (orphans, dangling refs, duplicates, missing sections, oversized entries) and staleness against session-history transcripts; report-first, fix-on-confirmation. Use when the user says "audit memory", "memory hygiene", or "find stale/duplicate memories".

OutlineDriven/odin-gemini-cli-extension · 62 tokens

memory-update

Scan agent's session-history transcripts for save-worthy signals (corrections, preferences, decisions, references), propose and write auto-memory files with valid frontmatter and MEMORY.md entry. Use when the user says "save this to memory", "remember that", or "scan this session for memories".

OutlineDriven/odin-gemini-cli-extension · 62 tokens

memory-sanitize

Produce share-safe copies of memory files under /tmp with PII redacted (paths, emails, session IDs, dates) and credentials scanned (tokens, keys); never mutates originals. Use when the user says "sanitize memory for sharing", "redact memory PII", or "scan memory for credentials".

OutlineDriven/odin-gemini-cli-extension · 67 tokens

generate-my-taste

Evidence-first generator for a personal -taste Claude Code skill. Mines local memories and agent histories for influences, slop bans, and overkill bans; asks compact confirmation forks; previews the synthesis; then writes a right-sized taste skill with exactly 5 anchors by default. Trigger with "generate my taste…

OutlineDriven/odin-gemini-cli-extension · 82 tokens