tophant-clawvault-openclaw-alerts

tophant-clawvault-openclaw-alerts is a skill for Claude Code from tophant-ai/ClawVault. It costs 30 tokens per session (1,059 once invoked), scanned A, original, MIT.

A notification tool that sends high-risk ClawVault security events and daily security reports through an OpenClaw agent.

In plain words
What is it for?
Use it to configure delivery, send a test, send new high-risk events once, create the daily report, or start and stop background monitoring.
Why use it?
It keeps security warnings from being missed by delivering them as agent messages and tracking which notifications have already been sent.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: built for openclaw.

Good fit Use it to configure delivery, send a test, send new high-risk events once, create the daily report, or start and stop background monitoring.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tophant-ai/clawvault/tophant-clawvault-openclaw-alerts
About the project

ClawVault is a security vault for controlling how AI agents access private files, credentials, API keys, and other sensitive data. It is for people who want to monitor agent activity, record interactions with protected assets, detect injection attacks, and restrict access through fine-grained capabilities. The catalogue skills support operating and managing this vault.

tophant-ai/ClawVault · 1,079 stars · on GitHub

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 tophant-ai/ClawVault --skill tophant-clawvault-openclaw-alerts
Clone the repo
git clone --depth 1 https://github.com/tophant-ai/ClawVault

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 tophant-clawvault-openclaw-alerts

README.md
[![agentmods](https://agentmods.dev/badge/skills/tophant-ai/clawvault/tophant-clawvault-openclaw-alerts/github.svg)](https://agentmods.dev/skills/tophant-ai/clawvault/tophant-clawvault-openclaw-alerts)
Your own site
<a href="https://agentmods.dev/skills/tophant-ai/clawvault/tophant-clawvault-openclaw-alerts"><img src="https://agentmods.dev/badge/skills/tophant-ai/clawvault/tophant-clawvault-openclaw-alerts/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 tophant-clawvault-openclaw-alerts

Your own site · 80×15
<a href="https://agentmods.dev/skills/tophant-ai/clawvault/tophant-clawvault-openclaw-alerts"><img src="https://agentmods.dev/badge/skills/tophant-ai/clawvault/tophant-clawvault-openclaw-alerts.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,059 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 51
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
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.00030 $0.01059
Opus 5 $0.00015 $0.00530
Sonnet 5 $0.00006 $0.00212
Haiku 4.5 $0.00003 $0.00106

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

Security

Grade A, and why

tophant-clawvault-openclaw-alerts 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 13d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (clawvault_openclaw_alerts.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.

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.

skills/tophant-clawvault-openclaw-alerts/SKILL.md · 121 lines

How it starts

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

ClawVault OpenClaw Alerts

Send high-risk ClawVault security events and daily security reports through OpenClaw agent messaging.

This skill is operational only: it reads the existing ClawVault dashboard REST API, stores local notification state under ~/.ClawVault/openclaw-alerts/, and sends messages with openclaw agent. It does not modify ClawVault proxy, file monitor, plugin, or detection behavior.

How to Run

Always execute the bundled Python script:

python3 SKILL_DIR/clawvault_openclaw_alerts.py <command> [options]

Add --json to commands that support machine-readable output.

Quick Start

# Configure delivery through an OpenClaw agent
python3 SKILL_DIR/clawvault_openclaw_alerts.py configure --agent main --session-id clawvault-alerts --json

# Verify OpenClaw delivery
python3 SKILL_DIR/clawvault_openclaw_alerts.py send-test --json

# Send new high-risk events once
python3 SKILL_DIR/clawvault_openclaw_alerts.py run-once --json

# Send today's security report now
python3 SKILL_DIR/clawvault_openclaw_alerts.py daily-report --json

# Start/stop background monitoring
python3 SKILL_DIR/clawvault_openclaw_alerts.py start --json
python3 SKILL_DIR/clawvault_openclaw_alerts.py status --json
python3 SKILL_DIR/clawvault_openclaw_alerts.py stop --json

Commands

/tophant-clawvault-openclaw-alerts configure

Create or update ~/.ClawVault/openclaw-alerts/config.yaml.

/tophant-clawvault-openclaw-alerts configure --agent main --session-id clawvault-alerts
/tophant-clawvault-openclaw-alerts configure --dashboard-url http://127.0.0.1:8766 --risk-threshold 7.0 --daily-time 09:00
/tophant-clawvault-openclaw-alerts configure --deliver --channel slack --reply-to '#security-alerts'

/tophant-clawvault-openclaw-alerts send-test

Send a test message through the configured OpenClaw agent.

/tophant-clawvault-openclaw-alerts send-test
/tophant-clawvault-openclaw-alerts send-test --message "ClawVault alert test"

Read the full file on GitHub · 121 lines

Files

What ships with it

4 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.

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. 13d ago First seen · 121 lines · 30 tokens per session scan A 12eb00739575

Subscribe to this mod's changes

tophant-clawvault-openclaw-alerts is a skill published in the GitHub repository tophant-ai/ClawVault (1,079 stars, last pushed 23d ago), licensed MIT. It adds 30 tokens to every session and 1,059 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

youtube-search

Use when the user wants to find YouTube content on any topic: searching for videos or channels, finding creators who cover a subject, discovering tutorials, talks, or expert discussions, or looking up a channel by name or handle. Also use proactively when the user wants to research a topic and YouTube is a good…

ZeroPointRepo/youtube-skills · 78 tokens

transcriptapi

Use when YouTube is or could be relevant — even if not mentioned: pasted video/channel/playlist links, video IDs, @handles, creator lookups, video summaries, quotes, translations, topic research, tutorials, talks, lectures, expert discussions, product reviews, how-to guides, new product announcements, or anything…

ZeroPointRepo/youtube-skills · 110 tokens

youtube-channels

Use when a YouTube channel is the focus: pasted @handles or channel URLs, requests to browse a creator's uploads, see what a channel has posted recently, search within a channel, or resolve a handle to a channel ID. Also use when the user names a creator and wants to explore their content or monitor their uploads. Not…

ZeroPointRepo/youtube-skills · 78 tokens

youtube-full

Use when YouTube is or could be relevant — even if not mentioned: pasted video/channel/playlist links, video IDs, @handles, creator lookups, video summaries, quotes, translations, topic research, tutorials, talks, lectures, expert discussions, product reviews, how-to guides, new product announcements, first looks, or…

ZeroPointRepo/youtube-skills · 112 tokens

youtube-api

Use when YouTube data is needed without Google API quotas or OAuth setup: transcripts, video metadata, channel info, search results, playlists. Triggers on pasted YouTube links, creator names, @handles, topic research, video summaries, channel browsing, or any request where YouTube content would help — even if not…

ZeroPointRepo/youtube-skills · 83 tokens

youtube-data

Use when structured YouTube data is needed: pasted video/channel/playlist links, transcripts for analysis, video metadata, channel upload history, search results, or playlist contents — without Google API quotas or OAuth. Triggers on YouTube URLs, creator names, topic research, or any request needing YouTube content…

ZeroPointRepo/youtube-skills · 84 tokens