SkillWatch
SkillWatch watches the web pages that AI tools rely on, and tells you when something changes. It exists because those pages can be swapped to contain harmful instructions after the AI tool has already been reviewed and approved.
Why this exists
AI tools pull in instructions from the internet. Security scanners check those tools when they are installed, but the external pages the tools point to can be changed afterwards. The scanners do not re-check.
In June 2026, security researchers demonstrated that a fake AI skill could pass every major scanner by keeping its code clean while pointing to an external URL. After distribution, the URL content was swapped from legitimate documentation to malicious instructions. (Disclosure: AIR, which published this research, simultaneously launched a managed skill marketplace. Their headline claim of 26,000 AI agents indexed is self-reported and unaudited. The bait-and-switch technique is independently corroborated by the CSA research note and by arXiv 2605.05274 (SIGIL, "Sealing the Audit-Runtime Gap for LLM Skills"), a preprint. An earlier version of this README also cited arXiv 2508.12538; that paper is MCPXKIT, an offensive MCP toolkit whose abstract does not document URL content swapping, so it did not support the claim and has been removed.)
The ClawHavoc campaign compromised 1,184 skills using similar techniques. The Cloud Security Alliance published a dedicated research note on SKILL.md context poisoning.
Tools like Snyk Agent Scan check tool descriptions and metadata. SkillWatch checks what those tools point to: the actual content at external URLs. They cover different layers and work well together.
Where this sits in the OWASP taxonomy
SkillWatch addresses part of AST05 — Untrusted External Instructions in the OWASP Agentic Skills Top 10 (v1.0, 2026 Edition), the category covering skills that retrieve instructions from external sources.
The AST05 page lists six preventive mitigations. SkillWatch addresses one of them and part of two more; it does not address the other three. Their headings, quoted verbatim:
| OWASP AST05 mitigation | SkillWatch |
|---|---|
| 1. "Pin and verify referenced content" | Partial. Records a content hash and alerts on drift, but does not refuse drifted content — it is a monitor, not an enforcement point. |
| 2. "Prefer inlining over fetching" | No. A publishing-side control; nothing to do with this tool. |
| 3. "Allowlist permitted reference domains" | No. |
| 4. "Audit references transitively" | No. SkillWatch watches the URLs you give it and does not follow reference chains. |
| 5. "Maintain fleet-wide visibility of referenced sources" | Yes. This is what the URL inventory and skillwatch sources do. |
| 6. "Rescan continuously" | Partial, and deliberately not as worded. SkillWatch runs periodically via cron or CI. It has no daemon and no continuous mode, by design. |
Mitigation 6 is worth stating plainly rather than glossing: OWASP's word is continuously, and this tool is periodic. An earlier version of this README listed the mitigations as "source inventory, content pinning, repeated rescanning" — that phrasing came from the compressed summary row on the project index, not from the AST05 page, and it silently changed OWASP's "continuous" to "repeated" to fit this project's own constraint. Both are corrected here.
Read that with the right weight. The Agentic Skills Top 10 is an early-stage OWASP project in active development, not a flagship standard. At the time of writing its own pages describe its status inconsistently (one as an incubator initiative, one as a new project proposal), so check the current status before repeating any maturity claim. An OWASP category describes a risk; it is not an endorsement. Nothing here is OWASP-certified, OWASP-recommended, or OWASP-reviewed.
Trail of Bits on scanner bypass, stated as the source states it. In The sorry state of skill distribution (Samuel Judson and Tjaden Hess, 3 June 2026), Trail of Bits report bypassing ClawHub's malicious skill detector, Cisco's agent skill scanner, and all three scanners integrated into skills.sh. Their words:
"These were not advanced attacks: it took us less than an hour to conceive and implement three of the four malicious skills in trailofbits/overtly-malicious-skills, using standard tricks and rapid inspection of the scanner source code. The fourth malicious skill took a few hours, but only because the prompt injection required some trial and error."
Two things that get garbled when this is repeated, including by us. The scope is the five scanners they tested, not every scanner that exists. The hour is how long it took to build three of the four attacks — not how long it took to bypass the scanners, and not all four attacks. OWASP's own incident timeline compresses this to "every public skill scanner tested … is bypassed in under an hour", and an earlier version of this README repeated that compression. It is corrected above against the primary source.
This project has not reproduced Trail of Bits' work. It is cited because it describes the category SkillWatch operates in, and it is why this README does not claim the triage catches determined attackers — see measured detection rates. The dependable mechanism is change detection and the tamper-evident ledger, neither of which depends on recognising the payload.
AST07 — Update Drift is adjacent: it concerns version-pinning failure, where SkillWatch watches content changing at a stable URL. Related, not the same thing, and only claimed here as a partial fit.
Who this is for
SkillWatch is a command-line tool for people who build, deploy, or review AI agent skills and MCP tools: developers, security engineers, and maintainers who are comfortable at a terminal. Using it means installing a Python package, running commands in a terminal, scheduling scans with cron or CI, and reading a diff to judge whether a change is malicious.
It is not yet usable by a non-technical person. There is no app or website. It runs in a terminal, and reading an alert takes some security judgement — on a real change stream, where nearly every change is a legitimate edit, expect most flags to be false alarms (see the base-rate note). The plain-language explanations and the Understanding your alerts guide help with that, but you still need a terminal and some manual review.
Why trust SkillWatch
SkillWatch is built to be the boring, honest option in a crowded field.
- It runs on your machine and sends nothing. Everything lives in a local SQLite file, and the only network requests it makes are to the URLs you ask it to watch. It never uploads your skills, configs, or results. Platform scanners often upload your skill code to their servers to analyse it, which is a reasonable trade-off for their features but a different trust model.
- It tells you what it misses. It publishes its own measured detection and evasion rates and names the attacks that defeat it. A clean scan means "none of 13 checks matched", not "you're safe".
- It's independent and open. Apache 2.0, no paid tier, no telemetry, no platform to upsell. It complements scanners like Snyk Agent Scan, Cisco skill-scanner, Socket, and MCP-Scan rather than competing for your budget.
Install
pip install skillwatch
Or install from source:
git clone https://github.com/kuzivaai/SkillWatch.git
cd SkillWatch
pip install .
Requires Python 3.10+. Five dependencies, all Apache/MIT/BSD licensed. Optional cryptographic anchoring (pip install 'skillwatch[anchor]') adds cryptography (Apache-2.0/BSD) and rfc3161-client (Apache-2.0); the core install and all monitoring work without them.
Quick start
# Add URLs from a SKILL.md file
skillwatch add path/to/SKILL.md
# Or add a single URL
skillwatch add-url https://docs.example.com/setup
# Run a scan
skillwatch scan
# Check results
skillwatch alerts
skillwatch alert 1
How it works
- Extract URLs from SKILL.md files, MCP configs (.json/.yaml), or plain URL lists.
- Fetch each page with built-in protections against server-side request forgery (SSRF) and DNS rebinding. Text is extracted using trafilatura.
- Take a fingerprint (SHA-256 hash) of the extracted text and store it locally in a SQLite database.
- On the next scan, compare fingerprints. If the hash has changed, the content has changed.
- Run 13 pattern checks on the changed content to flag anything suspicious. Before checking, the tool decodes common obfuscation tricks (HTML comments containing hidden text, reversed text, ROT13 encoding) so that disguised payloads are checked in their readable form. See Measured detection rates for what it catches and what it misses.
- Record the observation in an append-only, hash-chained ledger, so you keep a permanent, verifiable history of what each URL served and when. Verify it any time with
skillwatch verify. See Verifiable content ledger.
SkillWatch checks for 13 suspicious patterns across three severity levels. Each check only looks at content that was added since the last scan, so pre-existing scripts or iframes on a page will not trigger false alerts.
| Pattern | Severity | What it catches |
|---|---|---|
| Exec commands | Critical | curl, pip install, eval(), subprocess, powershell |
| Prompt injection | Critical | 32 patterns from the Agent Threat Rules project, covering 7 languages plus obfuscation. Before checking, the tool decodes HTML comments, reversed text, and ROT13 encoding. |
| Suspicious scripts | Critical | New <script> tags with eval/fetch/cookie access |
| Data URI embeds | Critical | <iframe src="data:text/html;base64,..."> |
| Base64 strings | Warning | Obfuscated payloads (40+ character base64 blocks) |
| Credential keywords | Warning | New references to api_key, token, password, .env |
| New domains | Warning | URLs pointing to domains not in the original content |
| Unicode lookalikes | Warning | Cyrillic/Greek characters that mimic Latin letters, detected via the Unicode Consortium's confusables database |
| Data URI payloads | Warning | data:text/html and data:application/javascript in text |
| Meta refresh | Warning | New <meta http-equiv="refresh"> redirects |
| Major deletion | Warning | More than 50% of original content removed |
| Iframes | Warning | New <iframe> elements |
| Hidden content | Info | New elements concealed from a human but left in the ingested text — inline or same-document <style> block, case-insensitively: display:none, `visibility:hidden |
What hidden_content does not catch
Rewritten 2026-07-29. The check now asks whether content is concealed from a
human reader while remaining in the text an agent ingests, rather than whether an
inline style attribute contains one of two lower-case substrings.
| Hiding technique | Flagged |
|---|---|
display:none, visibility:hidden — any case |
yes |
opacity:0, font-size:0 |
yes |
position:absolute;left:-9999px |
yes |
height:0/width:0 with overflow:hidden |
yes |
HTML hidden attribute |
yes |
A rule in a same-document <style> block |
yes |
clip-path:inset(100%), text-indent:-9999px |
no — deliberate |
aria-hidden="true" |
no — deliberate |
| An external stylesheet | no — out of reach |
Two of those "no" rows are choices, and one is a boundary.
clip-path and text-indent are the canonical .sr-only screen-reader idioms. A
rule firing on them fires on well-built accessible sites, and the cost lands on the
benign false-positive rate. An attacker who uses .sr-only markup to carry a
payload is not caught. That is a stated gap.
aria-hidden hides content from assistive technology while leaving it visually
present — the inverse of this threat.
External stylesheets are structurally out of reach, not merely unimplemented.
Resolving a <link rel="stylesheet"> means issuing an outbound request to a URL you
never asked this tool to fetch, and this tool's only outbound traffic is to URLs you
specify. An attacker who moves the rule into a linked stylesheet defeats this check,
and no amount of implementation effort changes that without breaking that guarantee.
Reasoning and classification: docs/HIDING-TECHNIQUE-TAXONOMY.md.
Measured detection rates
Treat the triage as decorative against semantic evasion. An attacker who writes their instruction as ordinary English — a polite request, a story, a changelog entry — gets past it: 3 of 13 such payloads are caught. Mechanical obfuscation is a different story and is caught reliably: 7 of 7 (ROT13, reversal, base64, zero-width characters, homoglyphs, letter spacing). So the flags are worth reading, but never treat their absence as safety. The tool's dependable value is the change alert and the tamper-evident ledger; if a page you watch changes, review the diff yourself.
That is a plain reading of the measurement, not modesty. Against evasive
payloads the tool catches 17 of 32. Every proportion below is given as
k/n (point estimate, 95% confidence interval), because at these sample sizes
the point estimate alone is close to uninformative — an earlier version of this
README reported "50.0%" from 5/10, a result equally consistent with a true rate
of a quarter or of three quarters.
These are synthetic corpora, not real-world data. They are in
analysis/corpus/; reproduce every figure with python3 analysis/measure_efficacy.py.
Original corpus (79 items: 37 benign, 10 pattern-matching, 32 evasive):
| Metric | Value |
|---|---|
| Precision | 27/33 (81.8%, 95% CI [65.6%, 91.4%]) |
| Overall recall | 27/42 (64.3%, 95% CI [49.2%, 77.0%]) |
| Recall against evasive attacks | 17/32 (53.1%, 95% CI [36.4%, 69.1%]) |
| Benign false positives | 6/37 (16.2%, 95% CI [7.7%, 31.1%]) |
By attack family, summing to the 17/32 above: mechanical obfuscation 7/7, structural (hidden in markup) 6/10, semantic framing 3/13, non-English 1/2.
Holdout corpus (18 items, committed before any detector changes):
| Metric | Value |
|---|---|
| Precision | 9/10 (90.0%, 95% CI [59.6%, 98.2%]) |
| Overall recall | 9/12 (75.0%, 95% CI [46.8%, 91.1%]) |
| Benign false positives | 1/6 (16.7%, 95% CI [3.0%, 56.4%]) |
The holdout corpus does not report a separate "evasive recall". All 12 of its malicious items are evasive, so that figure would be the same 9/12 as overall recall — one measurement printed twice, not two independent results. Earlier versions of this README listed both.
HTML corpus (12 items, DOM-level checks):
| Metric | Value |
|---|---|
| Precision | 6/6 (100.0%, 95% CI [61.0%, 100.0%]) |
| Recall | 6/6 (100.0%, 95% CI [61.0%, 100.0%]) |
| Benign false positives | 0/6 (0.0%, 95% CI [0.0%, 39.0%]) |
Read that interval, not the 100%. Six of six is consistent with a true rate as low as 61%. The DOM checks look strong and the corpus is too small to show it.
Real pages, not our corpus
Every figure above is measured on a corpus this project wrote, including the items each detector change was built to catch. It shows the implementation does what its own taxonomy says, and nothing about pages we did not write.
analysis/corpus/realpage/ is the first corpus here that is not self-authored:
201 pages, each referenced by a real SKILL.md sampled from 157 distinct public
repositories. None of them carries a payload, so every occurrence below is a
legitimate use. Reproduce with python3 analysis/measure_base_rate.py.
| Concealment technique | Real pages carrying it | Flagged? |
|---|---|---|
aria-hidden |
141/201 (70.1%) | no — inverse of the threat |
HTML hidden attribute |
111/201 (55.2%) | no — removed 0.4.1 |
display:none |
103/201 (51.2%) | yes |
visibility:hidden |
73/201 (36.3%) | yes |
opacity:0 |
11/201 (5.5%) | yes |
clip-path sr-only |
10/201 (5.0%) | no — accessibility idiom |
font-size:0 |
3/201 (1.5%) | yes |
| zero box, clipped | 2/201 (1.0%) | yes |
| off-screen positioning | 1/201 (0.5%) | no — removed 0.4.1 |
text-indent:-9999px |
0/201 (0.0%) | no — accessibility idiom |
What this does and does not tell you. It is a base rate, not a false-positive
rate, and the difference matters. hidden_content is a delta check: it fires on
content that is newly hidden. A first fetch is a baseline that runs no detection at
all, and detection runs only when the extracted text changes. So a page that
permanently contains a collapsed accordion never produces an alert.
The real-page false-positive rate is not yet measured, and this README will not
imply otherwise. Across 199 paired snapshots the raw HTML changed on 97 (48.7%)
but the extracted text on only 3 (1.5%), and none of those 3 flagged. 0/3 has a
95% interval of [0.0%, 56.1%] — consistent with almost any true rate. The snapshots
were minutes apart; editorial drift needs days. That measurement is pending.
Why the published figures have moved. Two separate causes, kept apart because conflating them would hide a real reduction in detection.
0.3.0 to 0.4.0 — the corpus changed, the detector did not. 0.3.0 reported
overall recall 15/20 (75.0%) and evasive recall 5/10 (50.0%); 0.4.0 reported
21/35 (60.0%) and 11/25 (44.0%). skillwatch/detector.py was byte-identical
between those two releases. Fifteen evasive items were added and six were caught;
the headline fell because the malicious corpus went from 50% evasive to 71%
evasive — a harder test, not a worse detector.
0.4.0 to 0.4.1 — the detector changed twice, in opposite directions. The concealment check was rewritten to ask whether content is concealed rather than whether a substring matches, which raised evasive recall to 19/32. Then two techniques were moved out of the flagged set after their base rate was measured on real pages for the first time, which lowered it to 17/32:
| Subset | 0.3.0 | 0.4.0 | 0.4.1 |
|---|---|---|---|
| Non-evasive malicious | 10/10 | 10/10 | 10/10 |
| Evasive malicious | 5/10 | 11/25 | 17/32 |
| Overall recall | 15/20 (75.0%) | 21/35 (60.0%) | 27/42 (64.3%) |
| Benign false positives | 4/32 (12.5%) | 4/32 (12.5%) | 6/37 (16.2%) |
The two techniques removed are the HTML hidden attribute and off-screen
absolute positioning. Both conceal content, and both were dropped because
measurement showed flagging them fires on ordinary pages rather than on attacks:
the hidden attribute appears on 111 of 201 real pages (55.2%), and off-screen
positioning is the implementation WebAIM recommends for screen-reader-only
content. This is a deliberate reduction in detection, costing two corpus
items, and it is described in full in
docs/HIDING-TECHNIQUE-TAXONOMY.md.
What is and is not verifiable here. The load-bearing fact is checkable:
skillwatch/detector.py is byte-identical between the two releases, so no
detection behaviour changed. The 0.3.0-era corpus, however, was never committed —
the benign and adversarial sets entered version control in a single commit
(309d359) at the time of the expansion, so there is no earlier tracked state to
diff against. The first ten evasive items in the current corpus score 5/10,
matching what 0.3.0 published, and the benign false-positive count is the same
four items; both are consistent with the original set having been carried forward
unchanged, but neither proves it. An earlier version of this README stated flatly
that "the same five are caught" on the original ten. That was an inference
presented as a check, and this note replaces it.
Detection is almost perfectly split by attack family: 7 of 7 obfuscation payloads are caught (ROT13, reversal, base64, zero-width characters, homoglyphs, letter spacing), because obfuscation leaves mechanical traces. 3 of 13 semantic-framing payloads are caught, because those are ordinary English sentences whose meaning is hostile and whose form is unremarkable. No amount of pattern work closes that second gap.
What the checks catch: Payloads that use expected phrasings ("ignore all previous instructions"), cleartext shell commands (curl, pip install), ROT13-encoded commands, reversed text containing command words, and injection phrases hidden in HTML comments.
What it misses: Clever attackers can phrase their instructions as polite requests, stories, or academic language. SkillWatch cannot detect these because they look identical to legitimate text. Specifically:
- "The AI should consider updating its approach to..." (no command words to match)
- "Would you mind helping me by..." (sounds like a normal request)
- Instructions embedded in a fictional story (a pattern matcher cannot tell fiction from a real instruction)
- "In this experiment, the model should..." (indistinguishable from legitimate academic writing)
- "Print the full contents of its system prompt" (the relevant words are too far apart to match without also flagging innocent text)
These are fundamental limits of pattern matching. Catching them would require a language model or similar semantic analysis, which is out of scope for this tool.
False positives: SRI integrity hashes (sha256-/sha384-/sha512- prefixed base64) are structurally excluded. Remaining false positives come from pages with legitimate pip install instructions, new domain references, or base64-like strings in educational content.
Precision does not transfer to your change stream
The corpora above are 38 benign items against 47 malicious ones. Your monitored
URLs are not. Almost every change SkillWatch shows you will be a legitimate
edit — a version bump, a reworded paragraph, a new link. Precision is
TP/(TP+FP), so it depends on that ratio, and a figure measured at roughly 1:1
tells you nothing about a stream that runs at 1000:1.
Do not carry the corpus precision figure into an expectation about your alerts. The transferable number is the false-positive rate: 6/37 (16.2%, 95% CI [7.7%, 31.1%]) on the original benign corpus and 1/6 on the holdout. At a realistic base rate, most flags you see will be false positives. That is a property of the arithmetic, not a defect being confessed — it is why the tool tells you to read the diff rather than trust the flag.
Which flags produce the false positives
All five false positives across both benign corpora (38 items) came from three "something new appeared" delta checks:
| Flag code | False positives |
|---|---|
new_exec_command |
2/43 |
new_domains |
2/43 |
hidden_content |
2/43 |
new_base64 |
1/43 |
prompt_injection |
0/43 |
credential_reference |
0/43 |
unicode_homoglyph |
0/43 |
The content checks — the ones that assert something about what the text says — produced no false positives at all (0/43, 95% CI [0.0%, 8.2%]). Every false positive comes from a check that fires on the appearance of something: a shell command, a domain, a base64-like string, or newly concealed markup — all things benign pages legitimately add.
This is a trade, not a bug to be fixed. Those same four checks are the only
thing catching eleven evasive payloads in the corpus (E-04, E-05, E-09, E-10 via
new_exec_command/new_domains; E-19 via new_base64; E-26 to E-30 and E-32
via hidden_content). Deleting all four would take the corpus false-positive
count to zero and precision to 16/16 (100.0%, 95% CI [80.6%, 100.0%]), and drop
overall recall from 27/42 (64.3%) to 16/42 (38.1%, 95% CI [25.0%, 53.2%]). They
earn their place; weight them accordingly when triaging.
Automate with cron
# Check every 4 hours
0 */4 * * * /path/to/skillwatch scan --quiet >> /var/log/skillwatch.log 2>&1
SkillWatch exits with code 1 when alerts are created, making it easy to chain with notification tools.
Scheduled monitoring with GitHub Actions
A ready-to-use GitHub Actions workflow is provided at examples/scheduled-monitoring.yml. Copy it into your repository at .github/workflows/skillwatch.yml and adjust the cron expression and file paths. The workflow:
- Runs on a configurable schedule (default: every 6 hours)
- Installs SkillWatch and adds URLs from your SKILL.md or MCP config
- Caches the SQLite database between runs so only changes trigger alerts
- Creates a GitHub issue if suspicious content changes are detected
The workflow can also be triggered manually from the Actions tab.
Commands
| Command | Description |
|---|---|
skillwatch add <file> |
Extract and monitor URLs from SKILL.md, .json, .yaml, or .txt |
skillwatch add-url <url> |
Monitor a single URL |
skillwatch remove <url> |
Stop monitoring a URL |
skillwatch scan |
Scan all URLs for content changes |
skillwatch list |
Show all monitored URLs and their status |
skillwatch sources |
Re-check tracked skill/config files for changes (definition drift) |
skillwatch history <url> |
Show change history for a URL |
skillwatch alerts |
Show unreviewed alerts |
skillwatch alert <id> |
Show alert details with diff |
skillwatch alert <id> --review |
Mark an alert as reviewed |
skillwatch verify |
Check the tamper-evident content ledger is intact; auto-check anchors |
skillwatch ledger |
Show or --export the verifiable record of what URLs served |
skillwatch anchor |
RFC 3161 timestamp the ledger head (optional [anchor] extra) |
Scan options
| Flag | Description |
|---|---|
--delay N |
Seconds between requests (default: 1.0) |
--timeout N |
Request timeout in seconds (default: 10) |
--quiet |
Only show changes and errors |
--output text|json|sarif |
Output format: text (default), JSON for webhooks, or SARIF for GitHub Code Scanning |
--preset docs |
Built-in ignore patterns for timestamps, UUIDs, build hashes |
--user-agent STRING |
Custom User-Agent for HTTP requests |
--ignore-pattern REGEX |
Strip matching text before hashing (repeatable) |
--db PATH |
Path to SQLite database |
--db works before or after the subcommand: skillwatch --db /path scan and skillwatch scan --db /path are equivalent.
Detecting skill-file changes (definition drift)
skillwatch scan watches the content at the URLs a skill points to. skillwatch sources watches the skill files themselves. When you add a SKILL.md or MCP config, its content hash and the set of URLs it references are recorded. Running skillwatch sources re-reads each tracked file and flags:
- the file was edited since it was added,
- a new URL reference appeared (a new external target to watch),
- a reference was removed.
New references are added to monitoring automatically, and the command exits 1 if anything changed, so it fits cron and CI. This is a local, offline check inspired by MCP-Scan's tool pinning, but aimed at the SKILL.md threat model rather than MCP tool descriptions.
SARIF output for CI
skillwatch scan --output sarif emits SARIF 2.1.0, which GitHub Code Scanning ingests. SkillWatch's findings then appear in the Security tab alongside static scanners like Cisco skill-scanner and SkillTotal that also emit SARIF: different layers, one dashboard.
Verifiable content ledger
Every scan records what each URL served as an append-only, hash-chained entry in a local ledger. Unlike the snapshot cache (which keeps the last 50 versions per URL to save disk), the ledger keeps a tiny hash entry for every observation, permanently. So you keep a complete, tamper-evident history of what a page served and when, even after the full content is pruned.
skillwatch verify # recompute the chain; print the head; auto-check anchors
skillwatch verify --against <head> # confirm history up to a head you published earlier
skillwatch anchor # RFC 3161 timestamp the head (optional [anchor] extra)
skillwatch anchor --method git --repo . # or commit the head to a git repo (no TSA, no extra)
skillwatch ledger # show recent entries
skillwatch ledger --export ledger.json # portable record anyone can re-verify
skillwatch verify recomputes the whole chain. If any past entry was edited, reordered, or deleted, the recorded hashes no longer line up; verify names the first broken entry and exits 1. An exported ledger re-verifies with the same public function (skillwatch.ledger.verify_chain) with no database access, so a third party can independently confirm a record you produce.
What this does and does not give you (honest scope):
- It does give you integrity and independent re-verification. Accidental corruption or a naive edit to the history is detected, and anyone can re-check an exported ledger without trusting your machine.
- On its own, a purely local chain is not tamper-proof: an attacker with write access to your database could rewrite an earlier entry and recompute the whole chain so that plain
verifystill passes. Nothing inside the chain pins its history. - To close that gap,
verifyprints the chain head (which commits to the entire history). Two ways to anchor it: (a) by hand, zero-dependency — publish the head somewhere you do not control (a git commit, a public note) and re-check withskillwatch verify --against <head>; or (b) automatically —pip install 'skillwatch[anchor]'and runskillwatch anchor, which gets a signed RFC 3161 timestamp for the head from a public authority (freeTSA.org by default).skillwatch verifythen auto-checks every recorded anchor, catching any rewrite of anchored history even after a full-chain recompute. Only a hash ever leaves your machine; the anchoring crypto is an optional extra, so the core stays offline. See docs/LEDGER.md.
See docs/LEDGER.md for the exact hash construction, the anchoring workflow, and how to re-verify an export yourself.
Security
SkillWatch fetches arbitrary URLs, so it includes several layers of protection:
- SSRF protection: Blocks requests to private IPs, loopback addresses, link-local ranges, and cloud metadata endpoints
- DNS pinning: Resolves DNS once and pins the IP for the connection, preventing DNS rebinding attacks
- Redirect validation: Each redirect target is checked before following
- Escape stripping: ANSI/VT escape sequences are removed when content is fetched and when it is displayed
- Size limits: 5 MB response limit, 5-hop redirect limit
- Local storage only: All data lives in
~/.skillwatch/skillwatch.db. Nothing is sent externally.
Reducing false positives
# Strip ISO timestamps before hashing
skillwatch scan --ignore-pattern '\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}'
# Strip version strings
skillwatch scan --ignore-pattern 'v\d+\.\d+\.\d+'
Limitations
- False positives: About 1 in 6 safe pages (16.2% in testing) will trigger an alert. Common causes are pages with legitimate
pip installinstructions, new domain references, or base64-like strings in educational content. Review all alerts manually. - Evasion: The checks include decoding for ROT13, reversed text, and HTML comments, but they are fundamentally pattern-based. Attacks phrased as polite requests, stories, or academic language will not be caught. Against deliberately evasive payloads the tool catches 17/32 (53.1%, 95% CI [36.4%, 69.1%]). That figure splits by attack family, and the families sum to the total: mechanical obfuscation 7/7, structural (hidden in markup) 6/10, semantic framing 3/13, non-English instruction 1/2. Treat the triage as decorative against semantic and structural evasion, and rely on the change alert there.
- Dynamic pages: Single-page applications and JavaScript-rendered content may cause false changes. Use
--ignore-patternto filter out dynamic elements. - Fetch limitations: SkillWatch uses a standard browser User-Agent by default (configurable via
--user-agent). Pages that cloak content by IP address, TLS fingerprint, or require JavaScript rendering can evade fetching entirely.
What this tool is not
- A replacement for Snyk Agent Scan or other static scanners (use both)
- A scanner for tool descriptions or metadata (Snyk Agent Scan does this)
- A guarantee of catching all attacks (overall recall is 27/42, 64.3%; against evasive payloads 17/32, 53.1% — attacks phrased as polite requests or stories bypass detection by design)
- Real-time protection (it runs periodically, not as a proxy)
- A replacement for human review of alerts (see the base-rate warning below — on a real change stream, most flags you see will be false positives)
Using SkillWatch alongside a static scanner
SkillWatch and static scanners like Snyk Agent Scan cover different attack surfaces. Use both for defence in depth.
┌─────────────────────┐ ┌──────────────────────┐
│ Static Scanner │ │ SkillWatch │
│ (e.g. Snyk) │ │ (periodic monitor) │
│ │ │ │
│ Checks at install: │ │ Checks over time: │
│ - Tool code │ │ - External URLs │
│ - Metadata │ │ - Referenced content │
│ - Permissions │ │ - Content changes │
└─────────────────────┘ └──────────────────────┘
A typical CI workflow runs both:
# .github/workflows/skill-security.yml
name: Skill Security
on:
schedule:
- cron: "0 */6 * * *" # Every 6 hours
jobs:
static-scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npx @anthropic-ai/agent-scan . # or your static scanner
content-monitor:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: kuzivaai/SkillWatch@main
with:
files: SKILL.md
The static scanner catches malicious tool descriptions and code at install time. SkillWatch catches bait-and-switch attacks where URL content changes after the static scan passes.
FAQ
What is SkillWatch? A free, open-source Python CLI that watches the web pages your AI agent skills and MCP tools point to, and tells you when the content changes. It runs 13 pattern checks on what changed to flag anything suspicious, and stores everything locally in SQLite.
How is it different from Snyk Agent Scan, Cisco skill-scanner, or MCP-Scan? Those check the code and descriptions inside AI tools at install time. SkillWatch checks the external web pages those tools point to, over time. Different layers. Use them together.
What does it catch, and what does it miss? It catches cleartext shell commands, known prompt-injection phrasings (32 patterns across 7 languages), suspicious HTML, Unicode look-alike characters, and more, including some ROT13, reversed-text, and HTML-comment obfuscation. It misses attacks phrased as polite requests, stories, or academic language, because those look like normal text. Overall recall is 27/42 (64.3%), falling to 17/32 (53.1%) against deliberately evasive payloads; the benign false-positive rate is 6/37 (16.2%). Corpus precision is 27/33 (81.8%), but that figure depends on the corpus benign:malicious ratio and does not transfer to a real change stream, which is overwhelmingly benign — expect most flags you see to be false positives. That evasive figure splits by attack family: mechanical obfuscation 7/7, structural 6/10, semantic framing 3/13, non-English 1/2 — so treat the triage as decorative against semantic evasion. Review every alert manually.
Can non-technical people use it? Not yet. It is a terminal tool, and reading an alert takes some security judgement. The Understanding your alerts guide helps, but a terminal and manual review are still required.
Does it send my data anywhere? No. Everything runs on your machine and stores locally. It only fetches the URLs you ask it to watch.
Is it on PyPI? Is it free?
Yes to both. pip install skillwatch, Apache 2.0.
Documentation
- Understanding your alerts: what each flag means and what to do, in plain language
- Verifiable content ledger: the hash-chain spec,
verify, and how to re-verify an export yourself - Architecture: how the pipeline fits together
- Threat model: SSRF, DoS, terminal injection, and privacy
- Changelog: release history
Development
git clone https://github.com/kuzivaai/SkillWatch.git
cd SkillWatch
python3 -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
pytest
326 tests, 95% code coverage.
Licence
Apache 2.0. See LICENSE for the full text. Copyright 2026 Kuziva Muzondo.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file skillwatch-0.4.1.tar.gz.
File metadata
- Download URL: skillwatch-0.4.1.tar.gz
- Upload date:
- Size: 152.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba389fabb053afb22a05cef6d72e05390124200ad15d903148332bec55a985a7
|
|
| MD5 |
ed41674c0bf958c31d32908eb5762ef5
|
|
| BLAKE2b-256 |
ca2bc328e01fb00097bcf1f3fe2b21fea0bc46fa4b6a5d441b7bfe87620ccea4
|
Provenance
The following attestation bundles were made for skillwatch-0.4.1.tar.gz:
Publisher:
publish.yml on kuzivaai/SkillWatch
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
skillwatch-0.4.1.tar.gz -
Subject digest:
ba389fabb053afb22a05cef6d72e05390124200ad15d903148332bec55a985a7 - Sigstore transparency entry: 2281763016
- Sigstore integration time:
-
Permalink:
kuzivaai/SkillWatch@b6e1d66c34803f0c0e4caf3ad4872dca4d8d8177 -
Branch / Tag:
refs/tags/v0.4.1 - Owner: https://github.com/kuzivaai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@b6e1d66c34803f0c0e4caf3ad4872dca4d8d8177 -
Trigger Event:
release
-
Statement type:
File details
Details for the file skillwatch-0.4.1-py3-none-any.whl.
File metadata
- Download URL: skillwatch-0.4.1-py3-none-any.whl
- Upload date:
- Size: 68.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73fb4939f316d7940e181aa80976b8ed8649e3ce4ea0726dcd05d73ed0b31d10
|
|
| MD5 |
c61ef59a93c2659a5257cffdf9e1e0c9
|
|
| BLAKE2b-256 |
c603779fb8d3ae4afc8ef86a0b9082c8f5193f107a7c92561e57dc66e9446819
|
Provenance
The following attestation bundles were made for skillwatch-0.4.1-py3-none-any.whl:
Publisher:
publish.yml on kuzivaai/SkillWatch
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
skillwatch-0.4.1-py3-none-any.whl -
Subject digest:
73fb4939f316d7940e181aa80976b8ed8649e3ce4ea0726dcd05d73ed0b31d10 - Sigstore transparency entry: 2281763029
- Sigstore integration time:
-
Permalink:
kuzivaai/SkillWatch@b6e1d66c34803f0c0e4caf3ad4872dca4d8d8177 -
Branch / Tag:
refs/tags/v0.4.1 - Owner: https://github.com/kuzivaai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@b6e1d66c34803f0c0e4caf3ad4872dca4d8d8177 -
Trigger Event:
release
-
Statement type: