@vibo-dev/skill-injection-scanner 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # 🔍 Skill Injection Scanner
2
2
 
3
+ [![SkillQA CI](https://github.com/vnbochkarev-netizen/skill-injection-scanner/actions/workflows/skillqa-ci.yml/badge.svg)](https://github.com/vnbochkarev-netizen/skill-injection-scanner/actions/workflows/skillqa-ci.yml)
4
+ [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
5
+ [![npm](https://img.shields.io/npm/v/@vibo-dev/skill-injection-scanner)](https://www.npmjs.com/package/@vibo-dev/skill-injection-scanner)
6
+
7
+ <p align="center"><img src="assets/banner.svg" alt="Skill Injection Scanner" width="100%"></p>
8
+
3
9
  **Find hidden instructions and prompt-injection patterns inside your agent's skill files — before they find you.**
4
10
 
5
11
  Skill marketplaces are booming (ClawHub, n8n, OpenClaw…). So is the dark side:
package/SKILL.md CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: skill-injection-scanner
3
3
  description: "Scan agent skill files for hidden instructions and prompt-injection patterns (EN/RU) before a poisoned skill rewrites your agent. 19 rules, zero dependencies. Use ONLY with the user's explicit consent: tell the user which skills folder will be scanned — findings are printed to stdout locally."
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  tools: [python]
6
6
  license: MIT
7
7
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibo-dev/skill-injection-scanner",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Find hidden instructions and prompt-injection patterns inside agent skill files (EN/RU, 19 rules). Local-first, zero dependencies, Python 3.8+.",
5
5
  "license": "MIT",
6
6
  "author": "Viacheslav Bochkarev <vnbochkarev@gmail.com>",
@@ -8,15 +8,30 @@
8
8
  "type": "git",
9
9
  "url": "https://github.com/vnbochkarev-netizen/skill-injection-scanner.git"
10
10
  },
11
- "keywords": ["agent-skills", "prompt-injection", "security", "llm", "skill-scanner", "openclaw", "ai-agents"],
11
+ "keywords": [
12
+ "agent-skills",
13
+ "prompt-injection",
14
+ "security",
15
+ "llm",
16
+ "skill-scanner",
17
+ "openclaw",
18
+ "ai-agents"
19
+ ],
12
20
  "bin": {
13
21
  "skill-injection-scanner": "bin/skill-injection-scanner.js"
14
22
  },
15
- "files": ["SKILL.md", "README.md", "LICENSE", "scanner.py", "bin/", "fixtures/"],
23
+ "files": [
24
+ "SKILL.md",
25
+ "README.md",
26
+ "LICENSE",
27
+ "scanner.py",
28
+ "bin/",
29
+ "fixtures/"
30
+ ],
16
31
  "engines": {
17
32
  "node": ">=16"
18
33
  },
19
34
  "publishConfig": {
20
35
  "access": "public"
21
36
  }
22
- }
37
+ }
package/scanner.py CHANGED
@@ -33,7 +33,7 @@ import os
33
33
  import re
34
34
  import sys
35
35
 
36
- __version__ = "1.1.2"
36
+ __version__ = "1.1.3"
37
37
 
38
38
  RULES = [
39
39
  # (name, regex, severity, note)