checklist-bound-execution

checklist-bound-execution is a skill for Claude Code from LogicLabsAI/ultramemory-mcp. It costs 154 tokens per session (1,634 once invoked), scanned A, original, Apache-2.0.

A controlled workflow for assigning a shared coding plan to multiple agents and checking that each agent followed its exact task. It uses a checklist, required completion records, and independent verification.

In plain words
What is it for?
Breaking a plan into agent tasks, assigning each task precisely, verifying the results, and looping back on failed checks.
Why use it?
When several agents work in parallel, they can misunderstand or expand their assignments. This process reduces that drift and catches work that does not meet its acceptance criteria.

Skill for Claude Code

Written for Claude Code: SubagentStop hook event. Also seen: reads .claude/ paths; mentions subagents.

Part of the ultramemory-kit plugin — 7 skills, 2 agents, 2 hooks shipped together

Good fit Breaking a plan into agent tasks, assigning each task precisely, verifying the results, and looping back on failed checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/logiclabsai/ultramemory-mcp/checklist-bound-execution
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 LogicLabsAI/ultramemory-mcp --skill checklist-bound-execution
Clone the repo
git clone --depth 1 https://github.com/LogicLabsAI/ultramemory-mcp

Made for: Claude Code.

Or install ultramemory-kit, the plugin that ships this one along with the rest of its 7 skills, 2 agents, 2 hooks.

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 checklist-bound-execution

README.md
[![agentmods](https://agentmods.dev/badge/skills/logiclabsai/ultramemory-mcp/checklist-bound-execution/github.svg)](https://agentmods.dev/skills/logiclabsai/ultramemory-mcp/checklist-bound-execution)
Your own site
<a href="https://agentmods.dev/skills/logiclabsai/ultramemory-mcp/checklist-bound-execution"><img src="https://agentmods.dev/badge/skills/logiclabsai/ultramemory-mcp/checklist-bound-execution/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 checklist-bound-execution

Your own site · 80×15
<a href="https://agentmods.dev/skills/logiclabsai/ultramemory-mcp/checklist-bound-execution"><img src="https://agentmods.dev/badge/skills/logiclabsai/ultramemory-mcp/checklist-bound-execution.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 154 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,634 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.00154 $0.01634
Opus 5 $0.00077 $0.00817
Sonnet 5 $0.00031 $0.00327
Haiku 4.5 $0.00015 $0.00163

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

Security

Grade A, and why

checklist-bound-execution 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 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (references/workflow-template.js), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

agent-kit/skills/checklist-bound-execution/SKILL.md · 106 lines

How it starts

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

Checklist-Bound Execution

A harness for fanning checklist / plan items out to spawned agents WITHOUT drift. Use it any time two or more agents execute items from a shared plan and "did the agent actually do its exact job?" matters.

Why this exists (read first)

Spawned agents (Workflow agents, Task subagents) start with a FRESH, isolated context. They do not see the conversation, the plan, or your intent unless it is handed to them. When the assignment is vague — or worse, fails to arrive (the Workflow args global is unreliable and has come through as undefined) — the agent reconstructs the task from whatever it can read and IMPROVISES. That is the root cause of drift, not "lack of discipline."

Enforcement is therefore NOT a single instruction. It is four mechanisms together:

  1. Determinism of assignment — each agent receives its item VERBATIM, embedded in its prompt.
  2. Structured proof — each agent must return a schema-validated completion record (validated at the tool layer, so it cannot hand-wave; the runtime retries on mismatch).
  3. Independent verification — a separate, read-only agent re-checks each item against its acceptance criteria, adversarially, and can FAIL it.
  4. Loop-back — a failed item is sent back to a worker to fix, then re-verified, up to a bound.

A skill alone is advisory. This skill works because it pairs the procedure (here) with the Workflow script's deterministic control flow + structured-output schemas + a verifier stage. An optional SubagentStop hook can add a hard, model-can't-skip gate; this skill does not require one.

The non-negotiable invariants

  • One item, one job. A worker does ONLY its assigned item(s). It touches ONLY the files the item names. Anything outside scope is a deviation — reported, not silently done.
  • Verbatim, not from memory. The item's spec and acceptance_criteria are the source of truth. If they conflict with the worker's prior assumptions, the item wins. If the item is ambiguous or impossible as written, the worker returns status: "blocked" with the reason — it does NOT guess.
  • No args, no filesystem in the script. Workflow scripts cannot read files or rely on args. Embed the checklist as a literal in the script (see references/workflow-template.js). Workers may ALSO be given the checklist file path to re-read as a cross-check.
  • Verifier is read-only and adversarial. It tries to prove the item is NOT done. It cannot edit (so it cannot bias itself by fixing). Default to FAIL when evidence is missing.
  • Done means verified. An item is complete only when its verifier verdict is pass: true.

Read the full file on GitHub · 106 lines

Files

What ships with it

3 files 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. 10d ago First seen · 106 lines · 154 tokens per session scan A 8a7724a2c5ce

Subscribe to this mod's changes

checklist-bound-execution is a skill published in the GitHub repository LogicLabsAI/ultramemory-mcp (1 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 154 tokens to every session and 1,634 once invoked, about $0.0008 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

dashboard

Open OwnMem Console, the local dashboard for this repository's memory. Use when the user asks to open the dashboard, see memory metrics, check adoption or recall quality, or set up the optional embedding lane. Requires a repository initialized with the dashboard layer.

grpcer/ownmem · 53 tokens

recall

Recall this repository's OwnMem local memory before changing code, and keep it healthy. Use when a repository contains .ownmem/, when past debugging lessons could apply ("have we hit this before", "why is it done this way"), or when the user mentions ownmem, project memory, or recalling across sessions.

grpcer/ownmem · 66 tokens

init

Install or update OwnMem in the current repository. Use when the user asks to set up OwnMem, add local project memory for coding agents, or refresh an existing OwnMem installation after a version bump.

grpcer/ownmem · 43 tokens

memory-write

Captures a durable fact to project memory through the kit's safe write path (PoisonGuard secret/injection screening + home-path sanitization + dedup + conflict detection) — preferring the cmk MCP tools (mkremember / mkforget / mktrust) when connected, falling back to the cmk CLI. Use when the user says "remember…

LH8PPL/core-memory-kit · 202 tokens

bootstrap

Scaffolds the core-memory-kit directory structure (context/, scripts/, cron/jobs/) into the current project. Idempotent — never overwrites existing files. Run once per project after installing the plugin. Use when the user says "bootstrap the memory system", "set up memory here", or "scaffold the memory kit".

LH8PPL/core-memory-kit · 66 tokens

brain-compiler

Generate or refresh SAN using the canonical contract and Agent Brain tools.

sandeep84397/agent-brain · 17 tokens