codemeridian-test-planning

codemeridian-test-planning is a skill for Claude Code, Codex from Driftya/code-meridian. It costs 35 tokens per session (1,771 once invoked), scanned A, original, MIT.

A test-planning guide for CodeMeridian, a repository indexing tool that shows relationships between code and tests.

In plain words
What is it for?
Use it before changing code or when adding, updating, reviewing, or troubleshooting tests and regression risk.
Why use it?
It helps identify which tests protect changed behavior, where coverage is missing, and the smallest useful set of tests to run.

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/driftya/code-meridian/codemeridian-test-planning
Any agent
npx skills add Driftya/code-meridian --skill codemeridian-test-planning
Clone the repo
git clone --depth 1 https://github.com/Driftya/code-meridian

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 codemeridian-test-planning

README.md
[![agentmods](https://agentmods.dev/badge/skills/driftya/code-meridian/codemeridian-test-planning.svg)](https://agentmods.dev/skills/driftya/code-meridian/codemeridian-test-planning)
Your own site
<a href="https://agentmods.dev/skills/driftya/code-meridian/codemeridian-test-planning"><img src="https://agentmods.dev/badge/skills/driftya/code-meridian/codemeridian-test-planning.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,771 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.00035 $0.01771
Opus 5 $0.00017 $0.00886
Sonnet 5 $0.00007 $0.00354
Haiku 4.5 $0.00003 $0.00177

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

Security

Grade A, and why

codemeridian-test-planning 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.

docs/agent-capabilities/skills/codemeridian-test-planning/SKILL.md · 333 lines

How it starts

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

CodeMeridian Test Planning Skill

Use this skill when working in a repository indexed by CodeMeridian and the user asks to add, update, review, or plan tests.

The goal is to identify the smallest useful set of tests before changing behavior or adding new code.

projectContext can be found in meridian.json in field project.

When To Use

Use this skill when the request includes words or intent like:

  • add tests
  • update tests
  • fix failing tests
  • what tests should I run
  • what tests cover this
  • improve coverage
  • find missing tests
  • test this feature
  • test this bug fix
  • validate this refactor
  • behavior changed
  • check regression risk
  • make CI safer
  • review test impact

Also use this skill before implementing behavior changes when test coverage is unclear.

Core Rule

Do not guess test coverage from filenames alone.

First identify:

  1. the behavior being changed
  2. the exact symbols or files involved
  3. the tests already connected to that behavior
  4. the gaps where no tests protect the behavior
  5. the smallest test set that gives useful confidence

Workflow

1. Check Graph Freshness

When exact test relationships matter, check whether the graph matches the working tree.

Prefer:

  • check_graph_freshness
  • find_graph_drift

Report freshness clearly:

Graph freshness: fresh / stale / unknown

If freshness is stale or unknown, use graph results as guidance only and verify exact files manually.

2. Identify The Behavior Under Test

Clarify the behavior in implementation terms.

Prefer:

  • analyze_feature_implementation_path when testing a feature request or docs/features/*.md
  • build_minimal_context
  • find_implementation_surface
  • resolve_exact_symbol
  • get_context_for_editing

Report:

Behavior under test:
- Feature / bug / refactor:
- Main symbols:
- Main files:
- Expected behavior:

If the behavior is unclear, state the assumption and continue with the safest likely interpretation.

Read the full file on GitHub · 333 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. 4d ago First seen · 333 lines · 35 tokens per session scan A 1cec433d6508

Subscribe to this mod's changes

codemeridian-test-planning is a skill published in the GitHub repository Driftya/code-meridian (4 stars, last pushed 6d ago), licensed MIT. It adds 35 tokens to every session and 1,771 once invoked, about $0.0002 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

graph

Whole-codebase structural map of the codanna index as one self-contained HTML disc. Wedges per top-level module, concentric rings with hubs at the centre, hover or click a symbol to light its edge web, search, hide or highlight modules, brush a date range on the ribbon timeline (symbols dated by git blame), heatmap of…

bartolli/codanna · 131 tokens

x-ray

Deep codebase exploration using semantic search and relationship mapping. Use when you need to understand the current codebase.

bartolli/codanna · 25 tokens

use-ivygrep

Gather focused local repository context with ivygrep before implementing, debugging, reviewing, or explaining code. Use for coding tasks involving unfamiliar paths, branch changes, stack traces, architectural relationships, callers, dependents, tests, configuration, or documentation. Prefer one bounded context pack…

bvolpato/ivygrep · 65 tokens

memtrace-first

Route code discovery, debugging, flow tracing, how-code-works questions, and pre-edit rationale checks in indexed source-code repos to Memtrace graph plus Cortex decision tools. Use first before searching/reading code, and before editing, refactoring, deleting, or re-picking an approach that may have a recorded…

syncable-dev/memtrace-public · 115 tokens

memtrace-style-fingerprint

Pull the codebase's empirical style norm from Memtrace and match it when writing or editing source code in an indexed repo. Use when choosing between competing idioms (ternary vs if-else, arrow vs function declaration, const vs let, await vs .then, early-return vs nested-return), matching naming case, or when the user…

syncable-dev/memtrace-public · 111 tokens

memtrace-decision-memory

Use Cortex decision memory through the normal Memtrace MCP tools. Trigger for free-text questions about what was decided, chosen, rejected, banned, or established as a convention; for why a symbol exists or which contracts constrain it; for whether a known decision held, drifted, or was violated; and for the…

syncable-dev/memtrace-public · 137 tokens