agent-drift-and-re-anchoring

agent-drift-and-re-anchoring is a skill for Claude Code from shennawardana23/skillme. It costs 82 tokens per session (1,520 once invoked), scanned A, original, Apache-2.0.

A guide for keeping a long-running coding agent aligned with its original task. It describes different kinds of drift, such as pursuing side tasks or losing track of earlier context, and matching ways to correct them.

In plain words
What is it for?
Use it when an agent loses focus, when reviewing an off-track session, or when designing checkpoints for an autonomous coding loop.
Why use it?
An agent can continue working while gradually solving a different problem than the one requested. Naming the type of drift helps you choose a suitable checkpoint or re-anchoring method.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the skillme plugin — 137 skills, 2 commands shipped together

Good fit Use it when an agent loses focus, when reviewing an off-track session, or when designing checkpoints for an autonomous coding loop.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/shennawardana23/skillme/agent-drift-and-re-anchoring
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 shennawardana23/skillme --skill agent-drift-and-re-anchoring
Clone the repo
git clone --depth 1 https://github.com/shennawardana23/skillme

Made for: Claude Code.

Or install skillme, the plugin that ships this one along with the rest of its 137 skills, 2 commands.

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 agent-drift-and-re-anchoring

README.md
[![agentmods](https://agentmods.dev/badge/skills/shennawardana23/skillme/agent-drift-and-re-anchoring/github.svg)](https://agentmods.dev/skills/shennawardana23/skillme/agent-drift-and-re-anchoring)
Your own site
<a href="https://agentmods.dev/skills/shennawardana23/skillme/agent-drift-and-re-anchoring"><img src="https://agentmods.dev/badge/skills/shennawardana23/skillme/agent-drift-and-re-anchoring/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 agent-drift-and-re-anchoring

Your own site · 80×15
<a href="https://agentmods.dev/skills/shennawardana23/skillme/agent-drift-and-re-anchoring"><img src="https://agentmods.dev/badge/skills/shennawardana23/skillme/agent-drift-and-re-anchoring.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 82 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,520 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.00082 $0.01520
Opus 5 $0.00041 $0.00760
Sonnet 5 $0.00016 $0.00304
Haiku 4.5 $0.00008 $0.00152

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

Security

Grade A, and why

agent-drift-and-re-anchoring 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 12d 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/agent-drift-and-re-anchoring/SKILL.md · 125 lines

How it starts

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

Agent Drift and Re-Anchoring

A long-running agent doesn't fail by crashing — it fails by quietly stopping being the agent that started the task. This skill names the distinct ways that happens ("drift" is the general term; there is no single fix) and the specific, mechanism-matched mitigation for each, because a bigger context window delays when drift becomes visible but does not prevent any of it.

The six drift mechanisms

Treat these as distinct failure modes needing distinct fixes, not one generic "agent got confused" bucket:

  1. Goal drift — the agent starts pursuing a plausible-sounding side quest instead of the original ask (asked to fix a flaky test, ends up refactoring the whole test harness). Mitigation: periodic re-anchoring — explicitly restate the original objective and check the current action against it, especially before a costly or hard-to-reverse step.
  2. Context drift — reasoning quality on unchanged information degrades as the context window fills; content near the middle/start becomes functionally less influential even though it's still technically present. Mitigation: active compression/pruning of stale detail, not just relying on a larger window to "fit everything."
  3. Stale context — the agent reasons over an old snapshot of something that has since changed (a file edited by another process, a decision the user has since revised) without re-checking it's still current. Mitigation: externalize state that can change into a durable, re-readable store, and re-read it at decision points rather than trusting a cached mental model of it.
  4. Role drift — a system prompt or initial framing loses influence over a long conversation as more recent content dominates. Mitigation: periodically re-inject the system prompt (or a condensed form of it) near the end of a long context, not just at the start.
  5. Tool-use drift — the agent over-relies on one tool whose output is immediately visible and self-reinforcing (e.g., calling search repeatedly) while under-using a tool whose output is easy to lose track of once buried in history. Mitigation: explicit per-tool call budgets, and summarizing a tool's output before continuing rather than letting raw output pile up unprocessed.
  6. Plan decay — the agent keeps executing steps of a plan that an earlier step has already made obsolete, because the plan was treated as a fixed script rather than a living hypothesis. Mitigation: treat the plan as mutable state re-evaluated at checkpoints, not as an execution log to be marched through regardless of what's been learned since.

Read the full file on GitHub · 125 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 125 lines · 82 tokens per session scan A 2ba4daf00e34

Subscribe to this mod's changes

agent-drift-and-re-anchoring is a skill published in the GitHub repository shennawardana23/skillme (2 stars, last pushed 15d ago), licensed Apache-2.0. It adds 82 tokens to every session and 1,520 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-31.

Related

Other skills, from other repositories

persistent-memory

Persists context across conversations as plain markdown so every future session can enrich a topic-scoped memory (e.g. parenting, relationship-anna, work-history, project-acme). Four operations: write (extract candidates, resolve as ADD / UPDATE / DELETE / NOOP per Mem0), read (load a ≤ 200-line INDEX; fetch detail…

mthines/agent-skills · 375 tokens

opencode-memory

Browse local OpenCode history: sessions, messages, plans, prompt history, and prior decisions. Use when the user says history, previous session, last time, remember, recall, plans, prior work, or when resuming/debugging repeated work where earlier OpenCode context may help. Do not use for fresh tasks or when current…

carson2222/skills · 77 tokens

learn-from-experience

Learn from experience: self-reflection + self-criticism + self-learning + self-organizing memory + cross-session sync. Agent evaluates its own work, catches mistakes, and improves permanently. Compiles confirmed learnings to global config for automatic cross-session persistence. Use when (1) a command, tool, API, or…

shibing624/skills · 123 tokens

memory-integration

Use to maintain context across sessions - integrates episodic-memory for conversation recall and mcpmemory knowledge graph for persistent facts.

troykelly/claude-skills · 28 tokens

finishing-a-development-branch

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work.

obra/superpowers · 27 tokens

receiving-code-review

Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation.

obra/superpowers · 38 tokens