load

load is a skill for Claude Code, Codex from janeksm/mcp-digger. It costs 26 tokens per session (672 once invoked), scanned A, original, MIT.

A project-context loader that reads selected design, progress, decision, pattern and handoff files, then shows a summary. It waits for the user to choose the next task.

In plain words
What is it for?
It is for beginning a session, reviewing completed and remaining TODO items, and continuing from a saved handoff.
Why use it?
It gives the agent the project's current context without starting work or planning automatically.

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/janeksm/mcp-digger/load
Any agent
npx skills add janeksm/mcp-digger --skill load
Clone the repo
git clone --depth 1 https://github.com/janeksm/mcp-digger

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 load

README.md
[![agentmods](https://agentmods.dev/badge/skills/janeksm/mcp-digger/load.svg)](https://agentmods.dev/skills/janeksm/mcp-digger/load)
Your own site
<a href="https://agentmods.dev/skills/janeksm/mcp-digger/load"><img src="https://agentmods.dev/badge/skills/janeksm/mcp-digger/load.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 672 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.00026 $0.00672
Opus 5 $0.00013 $0.00336
Sonnet 5 $0.00005 $0.00134
Haiku 4.5 $0.00003 $0.00067

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

Security

Grade A, and why

load 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.

.claude/skills/load/SKILL.md · 70 lines

How it starts

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

Load Project Context

Bootstrap a working session by loading project docs and CMCM knowledge files (decisions, patterns, handoff), then showing progress. Do NOT start planning automatically — wait for the user to choose what to work on.

Instructions

  1. Read project docs. Read all files in parallel (missing files are fine — skip silently):

    • DESIGN.md — current MCP server design
    • TODO.md — implementation progress
    • DECISIONS.md — CMCM: technical decision log (load into context, don't display)
    • PATTERNS.md — CMCM: reusable code patterns (load into context, don't display)
    • HANDOFF.md — CMCM: session continuity state (display if present)
  2. Session continuity. If HANDOFF.md exists and has content beyond the header, display it before the progress summary:

    --- Session Continuity ---
    Working on: <task from HANDOFF.md>
    State: <state>
    Next: <next step>
    ---
    

    If HANDOFF.md is missing or empty, skip this step silently.

  3. Show progress summary. From the TODO table, display:

    • The last completed step (highest step number with status done)
    • All remaining steps (any status other than done: , in-progress, blocked)

    Format as a concise summary, e.g.:

    Last completed: Step 15 — dig_status MCP tool, lsRemote() connectivity check (a2ceae8)
    
    Remaining:
    | Step | Module | Status | Notes |
    |------|--------|--------|-------|
    | 10   | index.ts | —   | DRY version: read from package.json ... |
    
  4. Prompt for next action. After the progress summary, print exactly:

    Pick one:
      1. next — start the next unfinished step
      2. new  — describe a new task manually
    

    Stop and wait for the user's reply. On the next turn:

    • If the user picks next: invoke /dev <step-number> for the first remaining step from the TODO table.
    • If the user picks new: ask for the task description, then invoke /dev <description>.

Read the full file on GitHub · 70 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 · 70 lines · 26 tokens per session scan A 42f29037f574

Subscribe to this mod's changes

load is a skill published in the GitHub repository janeksm/mcp-digger (0 stars, last pushed 3mo ago), licensed MIT. It adds 26 tokens to every session and 672 once invoked, about $0.0001 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

prepare-release

Prepare a new release for the C# MCP SDK. Assesses Semantic Versioning level (PATCH/MINOR/MAJOR), bumps the version, runs ApiCompat and ApiDiff, reviews documentation, updates changelogs, drafts release notes, and creates a pull request with all release artifacts. Use when asked to prepare a release, start a release…

modelcontextprotocol/csharp-sdk · 88 tokens

publish-release

Publish a GitHub release for the C# MCP SDK after a prepare-release PR has been merged. Refreshes release notes to include any PRs merged since preparation, warns about version or breaking change impacts from late-arriving PRs, and creates a draft GitHub release. Use when asked to publish a release, finalize a…

modelcontextprotocol/csharp-sdk · 87 tokens

verify-release

Verify a published release of the C# MCP SDK. Monitors the Release and Publish Docs workflows triggered by publishing a GitHub release, confirms the packages are listed on NuGet.org, and confirms the versioned documentation site reflects the release. Use when asked to verify a release, check whether a release…

modelcontextprotocol/csharp-sdk · 87 tokens

bump-version

Assess and bump the SDK version using Semantic Versioning 2.0.0. Evaluates queued changes to recommend PATCH/MINOR/MAJOR, updates src/Directory.Build.props, and creates a pull request. Owns the SemVer assessment logic shared by prepare-release and publish-release. Use when asked to bump the version, assess the…

modelcontextprotocol/csharp-sdk · 84 tokens

breaking-changes

Audit pull requests for breaking changes in the C# MCP SDK. Examines PR descriptions, review comments, and diffs to identify API and behavioral breaking changes, then reconciles labels with user confirmation. Use when asked to audit breaking changes, check for breaking changes, or review a set of PRs for breaking…

modelcontextprotocol/csharp-sdk · 68 tokens

run-conformance-from-branch

Run MCP conformance tests in the C# SDK against a conformance branch (including forks) instead of the published npm version, then restore pinned dependencies.

modelcontextprotocol/csharp-sdk · 38 tokens