budget-term-sheet

budget-term-sheet is a skill for Claude Code, Codex from Rockielab/rockie-codex. It costs 68 tokens per session (911 once invoked), scanned A, a copy of budget-term-sheet, Apache-2.0.

A cost-approval step for GPU work through Rockie GPU, a service that provides computing hardware for machine-learning and other intensive jobs.

In plain words
What is it for?
Use it to quote GPU jobs involving PyTorch, Triton, training, or downloading model weights before they are launched.
Why use it?
It shows the expected job cost and requires explicit approval before compute is submitted. It also prevents submission when the market or user budget is unsuitable.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to quote GPU jobs involving PyTorch, Triton, training, or downloading model weights before they are launched.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rockielab/rockie-codex/budget-term-sheet
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 Rockielab/rockie-codex --skill budget-term-sheet
Clone the repo
git clone --depth 1 https://github.com/Rockielab/rockie-codex

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 budget-term-sheet

README.md
[![agentmods](https://agentmods.dev/badge/skills/rockielab/rockie-codex/budget-term-sheet/github.svg)](https://agentmods.dev/skills/rockielab/rockie-codex/budget-term-sheet)
Your own site
<a href="https://agentmods.dev/skills/rockielab/rockie-codex/budget-term-sheet"><img src="https://agentmods.dev/badge/skills/rockielab/rockie-codex/budget-term-sheet/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 budget-term-sheet

Your own site · 80×15
<a href="https://agentmods.dev/skills/rockielab/rockie-codex/budget-term-sheet"><img src="https://agentmods.dev/badge/skills/rockielab/rockie-codex/budget-term-sheet.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 911 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod 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.00068 $0.00911
Opus 5 $0.00034 $0.00456
Sonnet 5 $0.00014 $0.00182
Haiku 4.5 $0.00007 $0.00091

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

Security

Grade A, and why

budget-term-sheet scanned grade A with 1 finding 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 6 executable files (scripts/parse_approval.py, scripts/quote_term_sheet.py, scripts/render_term_sheet.py, …), 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

Do not shell raw `curl POST /api/jobs/submit`.
Origin

This is a copy

100% identical to budget-term-sheet — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

project-extension/agents/skills/budget-term-sheet/SKILL.md · 100 lines

How it starts

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

/budget-term-sheet

Render the user-facing cost term sheet that Rocky must show before a Rocky-originated POST $ROCKIELAB_API_URL/api/jobs/submit call. This skill is pre-submit UX and approval gating only. It does not replace platform-context's credit reservation, day caps, or hard budget enforcement.

When to invoke

  • Before /experiment submits a GPU / torch / triton / training / weight-download job.
  • When the user asks for a dry-run quote without launching compute.
  • When a user changes the approved budget and Rocky needs to re-render the quote.

Hard rules

  • Rocky-originated GPU submits go through this skill before runtime/submit.py.
  • Only explicit approval tokens count: approve, approved, or I approve.
  • A user-modified budget below estimate_cents is non-submittable in this repo.
  • Non-available market states never submit.
  • Keep the user-facing provider deidentified: Rockie GPU, plus SKU/count/region/tier.
  • Do not dispatch real compute here. Quote and approval only.

Procedure

  1. Assemble a job spec with job_shape, gpu_type, gpu_count, region, tier, and either timeout_seconds or wallclock_minutes. Use region: "us" and tier: "spot" unless the user or workflow requires a different visible capacity slice.
  2. Run scripts/quote_term_sheet.py to build the canonical JSON term-sheet object. Prefer live quote endpoints when credentials exist; use --market-json for tests and dry runs; use --allow-heuristic-dry-run only when the user explicitly wants a heuristic quote.
  3. Render the markdown block with scripts/render_term_sheet.py. The block must show: total estimate, stage breakdown, recommended budget, wall-clock, Rockie GPU compute summary, availability/confidence, and the explicit Approve / Modify / Cancel prompt.
  4. Wait for a user reply. Parse it with scripts/parse_approval.py.
  5. Decision handling:
    • approve: keep the current budget and mark the term sheet approved.
    • modify: re-render with the new user_budget_cents and ask again.
    • modify_then_approve: re-render with the new budget; only submit if the modified budget is still >= estimate_cents.
    • cancel: abandon the submit.
    • clarify: ask again; do not submit.
  6. Hand the final approved JSON artifact to /experiment/runtime/submit.py through --term-sheet-json, passing matching --region and --tier. The submit helper refuses artifacts or CLI requests that omit or change the approved region/tier. Do not shell raw curl POST /api/jobs/submit.

Read the full file on GitHub · 100 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. 10d ago First seen · 100 lines · 68 tokens per session scan A 0e64902489d4

Subscribe to this mod's changes

budget-term-sheet is a skill published in the GitHub repository Rockielab/rockie-codex (20 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 68 tokens to every session and 911 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 100% identical to budget-term-sheet, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories