clawrium: Skill for Claude Code

.claude/skills/itx-plan-scaffold/SKILL.md

itx-plan-scaffold is a skill for Claude Code from ric03uec/clawrium. It costs 15 tokens per session (1,184 once invoked), scanned A, original, Apache-2.0.

A planning aid that turns an existing issue plan into phases with clear conditions for starting and finishing each phase. It also records dependencies, affected files, and complexity.

In plain words
What is it for?
Use it to scaffold work for simple, moderate, or complex GitHub issues before implementation begins.
Why use it?
It makes a larger issue easier to execute and check by defining what must be true before and after each stage.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: mentions AGENTS.md.

This is ric03uec/clawrium's own configuration. It tells Claude Code how to work on clawrium itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything clawrium configures →

Reuse

Borrowing it

Nothing to install: this file belongs to ric03uec/clawrium. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ric03uec/clawrium/main/.claude/skills/itx-plan-scaffold/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ric03uec/clawrium

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 itx-plan-scaffold

README.md
[![agentmods](https://agentmods.dev/badge/skills/ric03uec/clawrium/itx-plan-scaffold/github.svg)](https://agentmods.dev/skills/ric03uec/clawrium/itx-plan-scaffold)
Your own site
<a href="https://agentmods.dev/skills/ric03uec/clawrium/itx-plan-scaffold"><img src="https://agentmods.dev/badge/skills/ric03uec/clawrium/itx-plan-scaffold/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 itx-plan-scaffold

Your own site · 80×15
<a href="https://agentmods.dev/skills/ric03uec/clawrium/itx-plan-scaffold"><img src="https://agentmods.dev/badge/skills/ric03uec/clawrium/itx-plan-scaffold.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,184 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00015 $0.01184
Opus 5 $0.00008 $0.00592
Sonnet 5 $0.00003 $0.00237
Haiku 4.5 $0.00002 $0.00118

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

Security

Grade A, and why

itx-plan-scaffold 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 5d 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/itx-plan-scaffold/SKILL.md · 144 lines

How it starts

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

Execution Scaffolding

Create a phased execution plan from a plan-create output, defining entry/exit criteria for each phase.

Instructions

  1. Fetch Issue: Get full issue details with existing plan

    gh issue view <number> --json number,title,body,labels,comments
    
  2. Read Plan: Find the plan-create comment from issue comments or read from .itx/<number>/00_PLAN.md

  3. Analyze Complexity:

    • Simple (< 3 files, single concern): Single-phase execution
    • Moderate (3-8 files, related changes): 2-3 phases
    • Complex (8+ files, multiple concerns): Multi-phase with subtasks
  4. Decide Execution Mode:

    • Single-phase: Direct to /itx-execute
    • Multi-phase: Create subtasks, execute in order
  5. Create Scaffolding: For each phase, define:

    ### Phase N: <Name>
    
    **Entry Criteria** (must be true to start):
    - <condition>
    
    **Exit Criteria** (must be true to complete):
    - <test passing>
    - <validation rule>
    
    **Dependencies**: Phase <N-1> (or "None" for first phase)
    
    **Files Affected**:
    - `path/to/file.ext` - <change type>
    
    **Complexity**: simple/moderate/complex
    
  6. Save Scaffolding to File:

    # Write scaffolding to .itx/<number>/01_EXECUTION.md
    
  7. Post Scaffolding: Add as comment on issue

    ## Execution Scaffolding
    
    **Mode**: single-phase | multi-phase (<N> phases)
    
    <phase definitions>
    
    ---
    
    <details>
    <summary>Prompt Log</summary>
    
    **Stage**: scaffolding
    **Skill**: /itx-plan-scaffold
    **Timestamp**: <ISO timestamp>
    **Model**: <model>
    
    ```prompt
    <original user prompt>
    
  8. Create Subtasks (if multi-phase) and link as sub-issues:

    # Extract repository info
    REMOTE_URL=$(git config --get remote.origin.url)
    OWNER_REPO=$(echo "$REMOTE_URL" | sed -E 's/.*[:/]([^/]+\/[^/]+)(\.git)?$/\1/')
    OWNER=$(echo "$OWNER_REPO" | cut -d'/' -f1)
    REPO=$(echo "$OWNER_REPO" | cut -d'/' -f2)
    
    # Create subtask
    CHILD_URL=$(gh issue create \
      --title "[Parent #<parent>] Phase N: <name>" \
      --label "ready" \
      --body "<phase details>")
    CHILD_NUM=$(basename $CHILD_URL)
    
    # Link as sub-issue using GraphQL with dynamic repo
    gh api graphql -f query='
      mutation($parentId: ID!, $childId: ID!) {
        addSubIssue(input: {issueId: $parentId, subIssueId: $childId}) {
          issue { number }
          subIssue { number }
        }
      }' \
      -f parentId=$(gh api graphql -f query='query($owner: String!, $repo: String!, $issue: Int!) { repository(owner: $owner, name: $repo) { issue(number: $issue) { id } } }' -f owner="$OWNER" -f repo="$REPO" -F issue=$PARENT_NUM | jq -r '.data.repository.issue.id') \
      -f childId=$(gh api graphql -f query='query($owner: String!, $repo: String!, $issue: Int!) { repository(owner: $owner, name: $repo) { issue(number: $issue) { id } } }' -f owner="$OWNER" -f repo="$REPO" -F issue=$CHILD_NUM | jq -r '.data.repository.issue.id')
    

Read the full file on GitHub · 144 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. 5d ago Changed · -1 lines · -1 tokens per session 3ee5e0452445
  2. 10d ago First seen · 145 lines · 16 tokens per session scan A 5fe8867e218f

Subscribe to this mod's changes

itx-plan-scaffold is a skill published in the GitHub repository ric03uec/clawrium (51 stars, last pushed today), licensed Apache-2.0. It adds 15 tokens to every session and 1,184 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-30.

Related

Other skills, from other repositories

python

Use when the task is Python itself, in any framework or none: PEP 695 generics, mypy --strict typing, dataclass/Protocol/TypedDict/Enum choices, asyncio.TaskGroup, stdlib idioms, src/ layout + pyproject.toml with uv, ruff+mypy+pytest gate. NOT a FastAPI/ASGI service (that is fastapi), NOT a deep pytest suite (that is…

ericrisco/rsc-harness · 94 tokens

python-repl

Interactive Python REPL automation with common helpers and best practices.

gptme/gptme · 15 tokens

dd-code-generation

Use pup CLI for immediate Datadog operations or generate code for integration into applications.

DataDog/pup · 16 tokens

modern-python-toolchain

Modern Python project setup with uv, ruff, and pyright. Use when initializing a new Python project, configuring the Python environment, setting up linting/formatting, or when a project needs uv (the fast Python package manager). Trigger on: 'set up Python', 'new Python project', 'configure uv', 'install uv', 'ruff'…

XiaomiMiMo/MiMo-Code · 105 tokens

sync-check

Walks the documentation dependency web after a CLI code change and reports which downstream files (skills, SOPs, READMEs, plugin references) are out of sync. Use after fixing a bug, adding a command, changing auth behavior, refactoring, or before committing — and when the user says "sync check", "update docs"…

ItamarZand88/CLI-Anything-WEB · 95 tokens

futbin-cli

Queries FUTBIN (EA FC Ultimate Team database) via cli-web-futbin — player search, prices and price history, comparisons, SBCs, evolutions, and market analytics (index, trending, cheapest by rating, movers, fodder, buy/sell signals, undervalue scans, PS/PC arbitrage). Use when the user asks about EA FC player prices…

ItamarZand88/CLI-Anything-WEB · 116 tokens