clawrium: Skill for Claude Code

.claude/skills/clawctl-uat/SKILL.md

clawctl-uat is a skill for Claude Code from ric03uec/clawrium. It costs 45 tokens per session (1,929 once invoked), scanned A, original, Apache-2.0.

A daily live end-to-end test for Clawrium, run on a real host. It installs temporary agents, tests their lifecycle, checks existing agents, cleans up, and files a dated GitHub issue with the results.

In plain words
What is it for?
Use it for daily verification, post-merge smoke testing, or an on-call handoff check across the supported agent types.
Why use it?
It checks whether the complete system still works in a real environment and whether new installs disturb agents that already exist.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: reads .claude/ paths; mentions OpenCode.

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 →

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/devashish/workspace/ric03uec/clawrium.

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/clawctl-uat/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 clawctl-uat

README.md
[![agentmods](https://agentmods.dev/badge/skills/ric03uec/clawrium/clawctl-uat.svg)](https://agentmods.dev/skills/ric03uec/clawrium/clawctl-uat)
Your own site
<a href="https://agentmods.dev/skills/ric03uec/clawrium/clawctl-uat"><img src="https://agentmods.dev/badge/skills/ric03uec/clawrium/clawctl-uat.svg" alt="Measured on agentmods" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,929 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.00045 $0.01929
Opus 5 $0.00023 $0.00964
Sonnet 5 $0.00009 $0.00386
Haiku 4.5 $0.00005 $0.00193

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

Security

Grade A, and why

clawctl-uat 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 7d 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/clawctl-uat/SKILL.md · 180 lines

How it starts

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

Daily Live UAT

Run the daily lifecycle sweep for clawrium on a real host. Every day this skill installs one fresh agent per type, walks it through create → configure → start → exec, exercises the marquee behaviour checks, verifies pre-existing agents on the same host are undisturbed, cleans up, and files a dated GitHub issue containing the report.

This is a verification skill, not a build skill. It never changes source code. Its only side effects on the tree are .itx/uat-daily/<date>/ artifacts.

When to run

  • Daily, from cron or /schedule, at a fixed local time (default 10:00 PT so the operator sees the report over their morning coffee).
  • Manually after a significant merge, when you want a real-host smoke check before cutting a release.
  • Before an on-call handoff, when you want to know the state of every managed host in one place.

Don't run this more than once per day per host — the ephemeral agent names are namespaced by date (uatYYYYMMDD-*) and running twice will collide on agent create.

Modes

  • `` (no args) — run today's UAT in UTC. Default host: wolf-i.
  • <YYYY-MM-DD> — backfill for that date (uses the date literally in artifact paths and issue titles; still runs against the live fleet, so backfilling yesterday tests today's fleet with yesterday's label).
  • --host <alias> — override the default host. Useful for a per-host UAT sweep (clawctl:uat --host mac-test).

Preflight

Refuse to start unless:

git -C /home/devashish/workspace/ric03uec/clawrium rev-parse --is-inside-work-tree
uv run --directory /home/devashish/workspace/ric03uec/clawrium clawctl --version
uv run --directory /home/devashish/workspace/ric03uec/clawrium clawctl host get | grep -q <HOST>
command -v gh && gh auth status

Only one UAT session per host per day. Check for an existing artifact dir:

DATE=$(date -u +%Y-%m-%d)
if [ -d /home/devashish/workspace/ric03uec/clawrium/.itx/uat-daily/$DATE ]; then
  echo "Already ran today for $DATE. Delete .itx/uat-daily/$DATE/ to rerun."
  exit 0
fi

Read the full file on GitHub · 180 lines

Files

What ships with it

1 file 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. 7d ago First seen · 180 lines · 45 tokens per session scan A a18fd6183ba8

Subscribe to this mod's changes

clawctl-uat is a skill published in the GitHub repository ric03uec/clawrium (51 stars, last pushed 3d ago), licensed Apache-2.0. It adds 45 tokens to every session and 1,929 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-08-30.

Related

Other skills, from other repositories

depsguard

Install and run DepsGuard, a zero-dependency CLI that scans and fixes package manager configs (npm, pnpm, yarn, bun, uv) for supply chain security best practices.

arnica/depsguard · 41 tokens

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

creating-snippets

Use when creating, editing, validating, testing, running, explaining, or removing Labby Code Mode snippets; when a user wants a reusable workflow made from gateway MCP tools; or when building schema-backed snippets from upstream tool ids, JSON schemas, params, inputs, defaults, artifacts, and MCP/CLI snippet actions.

dinglebear-ai/labby · 68 tokens

using-labby

Use when operating Labby through its CLI, MCP, HTTP API, or web UI; installing or updating Labby; configuring LABBYHOME; bootstrapping, repairing, or rolling back an Incus gateway or host service; exporting, verifying, or restoring durable state; checking health or logs; managing gateway upstreams, OAuth, or protected…

dinglebear-ai/labby · 86 tokens

opencli-sitemap-author

Use when creating or maintaining OpenCLI site sitemaps: agent-facing navigation, page-state, action, workflow, API-reference, pitfall, and fallback knowledge for a website. Use after browser exploration discovers durable site context, when a sitemap is stale, or when promoting local site knowledge into the repo.

jackwener/OpenCLI · 67 tokens

feishu

Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.

Hmbown/CodeWhale · 33 tokens