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.
npx agentmods add skills/rexlunae/rustyclaw/testing-rustyclaw-clinpx skills add rexlunae/RustyClaw --skill testing-rustyclaw-cligit clone --depth 1 https://github.com/rexlunae/RustyClawWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00036 | $0.01621 |
| Opus 5 | $0.00018 | $0.00811 |
| Sonnet 5 | $0.00007 | $0.00324 |
| Haiku 4.5 | $0.00004 | $0.00162 |
Grade A, and why
testing-rustyclaw-cli 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 2d 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.
How it starts
The opening of the file, as written. The whole thing — 148 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Testing RustyClaw CLI
Build
The CLI binary is in the rustyclaw package (crate path: crates/rustyclaw-cli).
# Minimal build (TUI only, no desktop/GPU deps):
cargo build -p rustyclaw --no-default-features --features tui
# Binary location:
target/debug/rustyclaw
Feature flags:
tui— terminal UI (ratatui). Use this for CLI-only testing.desktop— Dioxus desktop UI. Requires GTK/webkit libs; skip on headless VMs.- Default features include both; use
--no-default-features --features tuito avoid desktop build deps.
Unit Tests
# Full test suite:
cargo test -p rustyclaw-core
# Focused error module tests:
cargo test -p rustyclaw-core -- gateway::errors::tests --nocapture
# Clippy (treat warnings as errors):
cargo clippy -p rustyclaw-core -- -D warnings -A clippy::needless_option_as_deref
Swarm Commands
The swarm subcommand manages multi-agent orchestration:
rustyclaw swarm templates # List available swarm templates
rustyclaw swarm list # List active swarms (empty by default)
rustyclaw swarm create [TEMPLATE] # Create swarm (default: swarm)
rustyclaw swarm send <SWARM> <MESSAGE> # Send message to swarm
rustyclaw swarm status <SWARM> # Show swarm status
rustyclaw swarm stop <SWARM> # Stop a swarm
Gateway Error Handling Architecture
The gateway error system lives in crates/rustyclaw-core/src/gateway/errors.rs.
GatewayError Enum
All gateway errors are unified into a GatewayError enum with variants:
Auth { provider, message }— authentication failures (401/403)Provider { message }— generic model provider errorsTokenLimit— context window exceededToolLoopExhausted { rounds }— tool call loop limitContextCompaction { message }— non-fatal compaction failureCancelled— user cancellationVault { message }— vault/secret storage errorsDeviceFlow { message }— OAuth device flow failuresConfig { message }— configuration errorsTokenRefresh { message }— OAuth token refresh failuresUnexpectedFinish { reason }— model finished with unusual finish_reason
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.
- 2d ago First seen · 148 lines · 36 tokens per session scan A bd34e9b6aa24
testing-rustyclaw-cli is a skill published in the GitHub repository rexlunae/RustyClaw (59 stars, last pushed 8d ago), licensed MIT. It adds 36 tokens to every session and 1,621 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.
Other skills, from other repositories
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
studio-e2e-tests
Write and run Playwright E2E tests for Supabase Studio (e2e/studio). Use when asked to run e2e tests, write new E2E tests, or debug flaky or failing Playwright tests. Covers running commands, avoiding race conditions, waiting strategies, selectors, helper functions, and CI vs local differences.
playwright-cli
Automate browser interactions, test web pages and work with Playwright tests.
agent-host-e2e-tests
Use when writing, recording, updating, or troubleshooting the agent host end-to-end tests under src/vs/platform/agentHost/test/node/e2e (black-box tests that drive the whole agent host over the AHP protocol, using a CapiReplayProxy record/replay system for Claude/Copilot/Codex). Covers adding a cross-provider test…
smoke-test
End-to-end smoke test skill for DeerFlow. Guides through: 1) Pulling latest code, 2) Docker OR Local installation and deployment (user preference, default to Local if Docker network issues), 3) Service availability verification, 4) Health check, 5) Final test report. Use when the user says "run smoke test", "smoke…
deploy-release-test
Validate a commit-specific Next.js preview package and manually trigger the entire Next.js deployment test suite through the teste2edeployrelease.yml GitHub Actions workflow. Use only when asked to run the full deploy test suite or this workflow specifically from an internal vercel/next.js PR branch. Do not use for…