agentic-tech-debt CLAUDE.md

agentic-tech-debt CLAUDE.md is an instructions file for coding agents from bcanfield/agentic-tech-debt. It costs 3,298 tokens per session, scanned B, original, MIT.

Project rules for a codebase that studies and maintains integrations—adapters that connect one system to another—for AI coding tools. They cover scope control, keeping adapters consistent, using current documentation, and recording research findings.

In plain words
What is it for?
Use them when changing an adapter, reviewing differences between integrations, consulting library documentation, or deciding whether a proposed refactor belongs in the task.
Why use it?
They help agents make focused changes without unnecessary cleanup or guessed behavior. They also explain that some duplicated files are intentional and must remain synchronized.

Instructions file

Installs and runs on its own, but its text points at files inside the plugin that ships it — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed.

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 instructions/bcanfield/agentic-tech-debt/claude-md
Clone the repo
git clone --depth 1 https://github.com/bcanfield/agentic-tech-debt

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 agentic-tech-debt CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/bcanfield/agentic-tech-debt/claude-md.svg)](https://agentmods.dev/instructions/bcanfield/agentic-tech-debt/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/bcanfield/agentic-tech-debt/claude-md"><img src="https://agentmods.dev/badge/instructions/bcanfield/agentic-tech-debt/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,298 This file is loaded in full into every session.
When invoked 3,298 The same file — it is already loaded in full.
Security scan B 2 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.03298 $0.03298
Opus 5 $0.01649 $0.01649
Sonnet 5 $0.00660 $0.00660
Haiku 4.5 $0.00330 $0.00330

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

Security

Grade B, and why

agentic-tech-debt CLAUDE.md scanned grade B with 2 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

- **Claude Code:** `tail -f ~/.claude/plugins/data/debt-ops-agentic-tech-debt/cache/<repo-hash>/debug.log`

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

- **Python over Bash for plugin scripts.** Stdlib `json`, `re`, and `subprocess.run(..., timeout=...)` beat hand-rolled JSON escaping, a `jq` dependency, and the BSD/GNU `timeout` portability dance. And run on Windows wi
CLAUDE.md · 151 lines

How it starts

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

Project Rules

  • Stay in scope. Do exactly what was asked. No drive-by refactors or "while I'm here" cleanups. Flag them and wait for confirmation.
  • Don't over-engineer. Simplest thing that works. No speculative abstractions, defensive code for impossible cases, or new dependencies without a concrete reason.
  • Use current docs. For any library, framework, or API, fetch docs via the context7 MCP server before answering. Even for things you "know." Match the version in this project, not the latest release. Also - try to fetch examples from github frequently (e.g. an Anthropic-published Claude Code plugin, or an OpenAI Codex plugin, to use as an example).
  • Confront our research. Try to see if you can ground decisions in our extensive research.
  • Ask when unsure. One focused question beats guessing or expanding scope.
  • Be refreshingly concise. Nobody likes overly wordy AI slop. Speak and comment like a co-worker.
  • Guide the agent with markdown, not orchestration. Claude Code and Codex are smart and have the keys to the user's repo. Skills should load research-backed principles and trust the agent's judgment, not script its every step. Reach for Python only when determinism demands it (timestamps, audits, atomic file ops, hook contracts), never to make decisions a smart agent reading the repo can make better.
  • Python over Bash for plugin scripts. Stdlib json, re, and subprocess.run(..., timeout=...) beat hand-rolled JSON escaping, a jq dependency, and the BSD/GNU timeout portability dance. And run on Windows without WSL.
  • Conventional commits. All four adapters' plugin versions auto-bump in lockstep via release-please (config in .github/; mirrors claude-code/.claude-plugin/plugin.json, codex/.codex-plugin/plugin.json, copilot/plugin.json, and cursor/.cursor-plugin/plugin.json); use feat: / fix: / feat!: prefixes. Anything else is ignored by the bumper. Don't hand-edit version in any plugin.json.
  • We like humanlike, concise inline comments For example, a single line above a function or code block very simply and concisely saying what the code is doing so that the code is easy for a human to understand
  • Record decisions as ADRs. When we make a choice with two credible alternatives (a new convention, a tradeoff worth remembering), drop a short note in docs/adr/ using the format in its README.

Read the full file on GitHub · 151 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 · 151 lines · 3,298 tokens per session scan B 76706fa5a0ff

Subscribe to this mod's changes

agentic-tech-debt CLAUDE.md is an instructions file published in the GitHub repository bcanfield/agentic-tech-debt (8 stars, last pushed today), licensed MIT. It adds 3,298 tokens to every session, about $0.0165 per session on Opus 5. A static security scan graded it B with 2 findings (reads agent configuration directories, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories

Arcgentic CLAUDE.md

Claude Code instructions for Arch1eSUN/Arcgentic, covering arcgentic v0.2.0 — dev session handoff, 1. identity, 2. not-this (boundary), 3. where you are (state as of handoff) and files to be created (v0.2.0 p0 scope, per spec § 18).

Arch1eSUN/Arcgentic · 6,622 tokens

zuvo CLAUDE.md

Claude Code instructions for greglas75/zuvo, covering zuvo plugin — project guide, what this repo is, tech stack, how to update after making changes and for yourself (dev testing, no marketplace push).

greglas75/zuvo · 5,647 tokens

archlint CLAUDE.md

Claude Code instructions for MKanhan/archlint, covering archlint-public and venture.

MKanhan/archlint · 66 tokens

development-skills AGENTS.md

Instructions for reidemeister94/development-skills: This repo IS the source of the development-skills plugin: a direct/full development loop plus skills, hooks, and a single staff-reviewer subagent, distributed to Claude Code and Codex CLI.

reidemeister94/development-skills · 1,377 tokens

zuvo AGENTS.md

AGENTS.md instructions for greglas75/zuvo, a project described as: Auto-activating, multi-agent skill ecosystem for Claude Code, Codex, and Cursor. 51 skills, 26 agents, quality gates, knowledge store, adversarial review, content writing & optimization.

greglas75/zuvo · 4 tokens

zuvo GEMINI.md

Gemini CLI instructions for greglas75/zuvo, a project described as: Auto-activating, multi-agent skill ecosystem for Claude Code, Codex, and Cursor. 51 skills, 26 agents, quality gates, knowledge store, adversarial review, content writing & optimization.

greglas75/zuvo · 4 tokens