undrift-full

undrift-full is a skill for Claude Code from larya-dot-eu/undrift. It costs 66 tokens per session (2,835 once invoked), scanned A, original, MIT.

A project-maintenance tool that examines up to the 50 most recent coding sessions for repeated corrections, instructions, and undone changes.

In plain words
What is it for?
Use it to find patterns in past work and write suggested rules to a separate CLAUDE.md.undrift file for manual review and merging.
Why use it?
It helps turn recurring feedback into proposed project rules, so the same guidance does not need to be repeated.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions subagents.

Good fit Use it to find patterns in past work and write suggested rules to a separate CLAUDE.md.undrift file for manual review and merging.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/larya-dot-eu/undrift/undrift-full
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.

Any agent
npx skills add larya-dot-eu/undrift --skill undrift-full
Clone the repo
git clone --depth 1 https://github.com/larya-dot-eu/undrift

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 undrift-full

README.md
[![agentmods](https://agentmods.dev/badge/skills/larya-dot-eu/undrift/undrift-full/github.svg)](https://agentmods.dev/skills/larya-dot-eu/undrift/undrift-full)
Your own site
<a href="https://agentmods.dev/skills/larya-dot-eu/undrift/undrift-full"><img src="https://agentmods.dev/badge/skills/larya-dot-eu/undrift/undrift-full/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 undrift-full

Your own site · 80×15
<a href="https://agentmods.dev/skills/larya-dot-eu/undrift/undrift-full"><img src="https://agentmods.dev/badge/skills/larya-dot-eu/undrift/undrift-full.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,835 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.
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.00066 $0.02835
Opus 5 $0.00033 $0.01418
Sonnet 5 $0.00013 $0.00567
Haiku 4.5 $0.00007 $0.00283

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

Security

Grade A, and why

undrift-full 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.

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/undrift-full/SKILL.md · 263 lines

How it starts

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

Undrift Full — Session Pattern Mining → CLAUDE.md Rules

You are acting as a meta-learning agent for this project, running entirely in the main agent — no subagents. Your mission is to scan past sessions, extract recurring corrections, and distil them into durable CLAUDE.md rules — so the same mistakes never have to be corrected twice.


Step 0 — Locate & Scope Sessions

  1. Run pwd to identify the current project directory
  2. If $ARGUMENTS is provided, treat it as a path override for the target project
  3. Validate the path: resolve it to an absolute path and confirm it exists inside ~/.claude/projects/. If it does not match any known project directory, stop immediately and tell the user — do not proceed.
  4. Locate the matching session directory under ~/.claude/projects/
  5. List all available sessions, sorted by modification date (newest first)
  6. Cap scope at the last 50 sessions. If fewer than 10 exist, proceed and note the limited sample size.
  7. Report: "Found N sessions for [project]. Analysing the most recent 50."

Step 1 — Filter + Extract

Run the following bash loop in the main agent. It processes sessions newest-first, skips sessions with fewer than 3 text-based user turns, extracts user text content, and stops when the global 2000-line cap is reached.

Verified JSONL structure: each line in a session file is a JSON object. User messages have "type": "user" with a nested "message" object whose "content" is either a plain string or an array of content blocks. Text turns have content blocks with "type": "text"; tool results have "type": "tool_result" and do not count as user turns.

lines=0
for f in $(ls -t <session_dir>/*.jsonl 2>/dev/null | head -50); do
  # Count text-based user turns only (excludes tool results)
  turn_count=$(jq -r 'select(.type == "user") |
    .message.content |
    if type == "string" then "T"
    elif (map(select(.type == "text")) | length) > 0 then "T"
    else empty
    end' "$f" 2>/dev/null | wc -l | tr -d ' ')
  [ "${turn_count:-0}" -lt 3 ] && continue
  # Extract user text content
  extracted=$(jq -r 'select(.type == "user") |
    .message.content |
    if type == "string" then .
    else (.[]? | select(.type == "text") | .text)
    end' "$f" 2>/dev/null)
  new_lines=$(echo "$extracted" | wc -l)
  if [ $((lines + new_lines)) -gt 2000 ]; then
    echo "CAP_HIT:$(basename $f)"
    break
  fi
  echo "=== SESSION: $(basename $f) ==="
  echo "$extracted"
  lines=$((lines + new_lines))
done

Read the full file on GitHub · 263 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. 11d ago First seen · 263 lines · 66 tokens per session scan A 2a5b4e942a99

Subscribe to this mod's changes

undrift-full is a skill published in the GitHub repository larya-dot-eu/undrift (2 stars, last pushed 3mo ago), licensed MIT. It adds 66 tokens to every session and 2,835 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

media-ingest

Ingest video, audio, PDF, book, screenshot, and GitHub repo content into the brain. Multi-format handling with entity extraction and backlink propagation. Covers video-ingest, youtube-ingest, and book-ingest subtypes.

garrytan/gbrain · 52 tokens

mem0-oss-to-platform

Plan and then execute a migration of a project from the mem0 open-source / self-hosted SDK (the local Memory class) to the mem0 Platform / hosted / managed SDK (the MemoryClient class). Use this whenever a developer wants to move, switch, or migrate their mem0 usage off OSS/self-hosted to the hosted API — e.g.…

mem0ai/mem0 · 273 tokens

Cortex

Operate Cortex, the LifeOS memory system — the typed Knowledge Archive (People, Companies, Ideas, Research with typed related: links) plus recall of prior work sessions, ISAs, and conversations. Search, add, harvest, develop, ingest, distill, graph-navigate, recall. USE WHEN cortex, knowledge, knowledge base, search…

danielmiessler/LifeOS · 196 tokens

memory

Use when the user asks to remember, recall, forget, update, search, or inspect durable OpenSquilla memory, including profile facts in USER.md and long-term notes in MEMORY.md or memory//.md.

opensquilla/opensquilla · 44 tokens

ha-data-stores

Map of Hope Agent's local data stores and safe read-only query workflow. Use when the user asks where Hope Agent stores data, wants to inspect sessions/messages/memory/logs/background jobs/knowledge indexes/settings, asks the model to query local app data, or debugging requires checking persisted state. Trigger…

shiwenwen/hope-agent · 115 tokens

establishing-project-context

Use when the user asks to establish shared project language, or project work exposes a conflicting, renamed, or deprecated domain term that needs active semantic modeling. Routine small tasks stay on the fast path.

GanyuanRan/Aegis · 45 tokens