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/opencue/cuecards/clawsec-suitenpx skills add opencue/cuecards --skill clawsec-suitegit clone --depth 1 https://github.com/opencue/cuecardsWrote 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.
[](https://agentmods.dev/skills/opencue/cuecards/clawsec-suite)<a href="https://agentmods.dev/skills/opencue/cuecards/clawsec-suite"><img src="https://agentmods.dev/badge/skills/opencue/cuecards/clawsec-suite.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00037 | $0.04279 |
| Opus 5 | $0.00018 | $0.02139 |
| Sonnet 5 | $0.00007 | $0.00856 |
| Haiku 4.5 | $0.00004 | $0.00428 |
Grade B, and why
clawsec-suite scanned grade B with 3 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.
Asks for rootlowPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
chmod 600 "$DEST/skill.json" Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
Recursive force deletemediumDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
trap 'rm -rf "$TEMP_DIR"' EXIT Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
bins: [node, npx, openclaw, curl, jq, shasum, openssl, unzip] How it starts
The opening of the file, as written. The whole thing — 408 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ClawSec Suite
Operational Notes
- Required runtime:
node,npx,openclaw,curl,jq,shasum,openssl,unzip - Side effects: setup scripts install an advisory hook under
~/.openclaw/hooks, optionally create an unattendedopenclaw cronjob, and usenpx clawhub@latest installfor guarded installs - Network behavior: fetches signed advisory feed artifacts and remote catalog metadata unless you pin local paths
- Trust model: the suite can recommend removal or block risky installs, but removal/install overrides stay approval-gated
This means clawsec-suite can:
- monitor the ClawSec advisory feed,
- track which advisories are new since last check,
- cross-reference advisories against locally installed skills,
- recommend removal for malicious-skill advisories and require explicit user approval first,
- and still act as the setup/management entrypoint for other ClawSec protections.
Included vs Optional Protections
Built into clawsec-suite
- Embedded feed seed file:
advisories/feed.json - Portable heartbeat workflow in
HEARTBEAT.md - Advisory polling + state tracking + affected-skill checks
- OpenClaw advisory guardian hook package:
hooks/clawsec-advisory-guardian/ - Setup scripts for hook and optional cron scheduling:
scripts/ - Guarded installer:
scripts/guarded_skill_install.mjs - Dynamic catalog discovery for installable skills:
scripts/discover_skill_catalog.mjs
Installed separately (dynamic catalog)
clawsec-suite does not hard-code add-on skill names in this document.
Discover the current catalog from the authoritative index (https://clawsec.prompt.security/skills/index.json) at runtime:
SUITE_DIR="${INSTALL_ROOT:-$HOME/.openclaw/skills}/clawsec-suite"
node "$SUITE_DIR/scripts/discover_skill_catalog.mjs"
Fallback behavior:
- If the remote catalog index is reachable and valid, the suite uses it.
- If the remote index is unavailable or malformed, the script falls back to suite-local catalog metadata in
skill.json.
What ships with it
38 files 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.
- .clawhubignore 214 B
- advisories/feed-signing-public.pem 113 B
- advisories/feed.json 6.6 KB
- CHANGELOG.md 11 KB
- HEARTBEAT.md 7.9 KB
- hooks/clawsec-advisory-guardian/handler.ts 8.6 KB runs code
- hooks/clawsec-advisory-guardian/HOOK.md 2.0 KB
- hooks/clawsec-advisory-guardian/lib/advisory_scope.mjs 1.2 KB runs code
- hooks/clawsec-advisory-guardian/lib/feed.mjs 17 KB runs code
- hooks/clawsec-advisory-guardian/lib/local_file_io.mjs 131 B runs code
- hooks/clawsec-advisory-guardian/lib/matching.ts 6.1 KB runs code
- hooks/clawsec-advisory-guardian/lib/state.ts 2.4 KB runs code
- hooks/clawsec-advisory-guardian/lib/suppression.mjs 5.4 KB runs code
- hooks/clawsec-advisory-guardian/lib/types.ts 871 B runs code
- hooks/clawsec-advisory-guardian/lib/utils.mjs 3.6 KB runs code
- hooks/clawsec-advisory-guardian/lib/version.mjs 2.9 KB runs code
- scripts/discover_skill_catalog.mjs 8.4 KB runs code
- scripts/generate_checksums_json.mjs 2.1 KB runs code
- scripts/guarded_skill_install.mjs 9.6 KB runs code
- scripts/local_file_io.mjs 131 B runs code
- scripts/setup_advisory_cron.mjs 3.4 KB runs code
- scripts/setup_advisory_hook.mjs 3.0 KB runs code
- scripts/sign_detached_ed25519.mjs 1.6 KB runs code
- scripts/verify_detached_ed25519.mjs 1.8 KB runs code
- skill.json 9.5 KB
- test/advisory_application_scope.test.mjs 2.6 KB runs code
- test/advisory_suppression.test.mjs 13 KB runs code
- test/feed_verification.test.mjs 19 KB runs code
- test/fuzz_properties.js 2.0 KB runs code
- test/fuzz_properties.test.mjs 529 B runs code
- test/fuzz_semver_scope_suppression.test.mjs 4.3 KB runs code
- test/guarded_install.test.mjs 14 KB runs code
- test/heartbeat_version_check.test.mjs 6.7 KB runs code
- test/lib/.gitkeep 0 B
- test/lib/test_harness.mjs 4.6 KB runs code
- test/path_resolution.test.mjs 4.6 KB runs code
- test/setup_disclosure.test.mjs 5.3 KB runs code
- test/skill_catalog_discovery.test.mjs 7.0 KB runs code
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.
- 5d ago First seen · 408 lines · 37 tokens per session scan B 44e4920711e4
clawsec-suite is a skill published in the GitHub repository opencue/cuecards (5 stars, last pushed 2d ago), licensed MIT. It adds 37 tokens to every session and 4,279 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 3 findings (asks for root, recursive force delete, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
release
Cut a paad release — pick the semver bump from what is in [Unreleased], run make release, merge, tag, and verify the published plugin.
backlog
EXPERIMENTAL. Use when working the project-wide out-of-scope backlog at paad/code-reviews/backlog.md — cleaning it of entries that are already fixed or gone, or picking the next entry and fixing it end-to-end. Not for producing backlog entries — that is /agentic-review — and not for reviewing a branch diff.
agentic-architecture
Use when assessing the architectural health of a codebase — before a major refactor, when onboarding to an unfamiliar repo, after rapid growth, when planning a redesign, or to surface structural strengths and risks before they become expensive. Not for fixing what it finds, and not for reviewing a branch diff.
agentic-review
Use when reviewing current branch for bugs before pushing or merging, when wanting a thorough multi-agent review of local changes, or when preparing work for human review. Not for codebase structure, not for code style, and not for fixing what it finds.
ccg-annotate
AI-driven annotation workflow for adding structured metadata to code. Annotations are indexed and searchable via FTS.
ccg-docs
Generate Markdown documentation from code graphs, build RAG indexes for AI consumption, and lint documentation quality.