release-claim

release-claim is a command for Claude Code from terrene-foundation/kailash-coc-claude-py. It costs 39 tokens per session (1,627 once invoked), scanned A, original, Apache-2.0.

A command for removing a work claim from a multi-operator coordination log. A claim records that an operator is handling particular work; stale claims held by another operator require a second approved signer to reap them.

In plain words
What is it for?
Use it to release your own claim or, with the required co-signer, remove a stale claim belonging to another operator.
Why use it?
It keeps the coordination log accurate so completed or abandoned work does not appear permanently owned.

Command for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

Good fit Use it to release your own claim or, with the required co-signer, remove a stale claim belonging to another operator.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/terrene-foundation/kailash-coc-claude-py/release-claim
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.

Clone the repo
git clone --depth 1 https://github.com/terrene-foundation/kailash-coc-claude-py

Made for: Claude Code.

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 release-claim

README.md
[![agentmods](https://agentmods.dev/badge/commands/terrene-foundation/kailash-coc-claude-py/release-claim/github.svg)](https://agentmods.dev/commands/terrene-foundation/kailash-coc-claude-py/release-claim)
Your own site
<a href="https://agentmods.dev/commands/terrene-foundation/kailash-coc-claude-py/release-claim"><img src="https://agentmods.dev/badge/commands/terrene-foundation/kailash-coc-claude-py/release-claim/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 release-claim

Your own site · 80×15
<a href="https://agentmods.dev/commands/terrene-foundation/kailash-coc-claude-py/release-claim"><img src="https://agentmods.dev/badge/commands/terrene-foundation/kailash-coc-claude-py/release-claim.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,627 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.00039 $0.01627
Opus 5 $0.00019 $0.00813
Sonnet 5 $0.00008 $0.00325
Haiku 4.5 $0.00004 $0.00163

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

Security

Grade A, and why

release-claim 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 9d 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/commands/release-claim.md · 122 lines

How it starts

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

/release-claim — Multi-Operator Claim Release

Release a claim from the coordination log. Two modes:

  • Self-release — operator releases their own claim. Writes a signed release record.
  • Cross-operator reap (--reap … --cosigner …) — releases a STALE claim held by a SIBLING. Requires the §4.4 reap ceremony (distinct-person_id cosigner + pinned victim heartbeat past LIVENESS_TTL_MS).

Usage

/release-claim <claim-ref>
/release-claim --reap <other-claim-ref> --cosigner <person_id>
  • <claim-ref> — either <verified_id>:<seq> (canonical) OR the claim_id from /claims output.
  • --reap — explicit dispatch to the cross-operator reap ceremony. The <other-claim-ref> MUST point at a stale sibling claim (verified_id != self).
  • --cosigner <person_id> — required on --reap; the person_id of a distinct, eligible cosigner per .claude/hooks/lib/eligibility.js::isEligibleSigner("gate-approval") (R5-S-04: CI hosts BLOCKED).

Self-release flow

  1. Parse <claim-ref> — resolve to (verified_id, seq). If passed as claim_id, look up the matching claim record in the folded accepted set.
  2. Resolve identity via operator-id.js::resolveIdentity(cwd).
  3. Bind check — the resolved claim's verified_id MUST equal the current operator's verified_id. If they differ, halt-and-report:
    Cross-operator claim release attempted via self-release.
    Use the reap ceremony for stale sibling claims:
      /release-claim --reap <other-claim-ref> --cosigner <person_id>
    
    Direct the user to /claims to see the stale claim's current display_id and a candidate cosigner.
  4. Build release record:
    {
      type: "release",
      verified_id, person_id, display_id, seq, prev_hash, ts,
      content: {
        claim_id: <released claim_id>,
        released_claim_ref: { verified_id, seq },
        reason: "self-release",
      },
      sig
    }
    
  5. Sign + append via filesystem Transport appendRecord. Print confirmation.

Read the full file on GitHub · 122 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. 9d ago First seen · 122 lines · 39 tokens per session scan A 4128a92cb237

Subscribe to this mod's changes

release-claim is a command published in the GitHub repository terrene-foundation/kailash-coc-claude-py (12 stars, last pushed 24d ago), licensed Apache-2.0. It adds 39 tokens to every session and 1,627 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-09-03.