/SKILL.md
Kiểm tra bảo mật cho tất cả AI skills/plugins trước khi sử dụng. Phát hiện lệnh ẩn, exfiltration, mã hoá Base64, ký tự Unicode nguy hiểm, và behavior chain độc hại. Dùng khi cài skill mới, muốn audit toàn bộ skill library, hoặc kiểm tra file .md nghi ngờ.
npx skillsauth add sekiro009/skillsentry SkillSentryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Scans AI skill files for malicious patterns before you install them.
Run SkillSentry before installing any third-party skill:
.md file that will be added to your agent's skills directorygithub.com/anthropics/claude-code.agent/skills/skill-auditor/scripts/audit_skill.py"Audit this skill before I install it: path/to/SKILL.md"
Claude will run:
python .agent\skills\skill-auditor\scripts\audit_skill.py path\to\SKILL.md
/skillsentry path/to/SKILL.md
/skillsentry --all
"Kiểm tra toàn bộ skills hiện tại"
Runs:
python .agent\skills\skill-auditor\scripts\audit_skill.py --all
# Discord
python audit_skill.py --all --discord "https://discord.com/api/webhooks/..."
# Telegram
python audit_skill.py --all --telegram "BOT_TOKEN:CHAT_ID"
python audit_skill.py SKILL.md --json > report.json
| Layer | What | Examples |
|-------|------|----------|
| 1 | Behavior Chains | read .env → upload → delete |
| 2 | Unicode Evasion | homoglyphs, zero-width, RTLO |
| 3 | Obfuscation | Base64, ROT13, XOR, chr() concat, split keywords |
| 4 | Prompt Injection | DAN, delimiter hijack, instruction override |
| 5 | Cloud SSRF | AWS metadata (169.254.169.254), GCP, Azure |
| 6 | Persistence | cron jobs, startup scripts, git hooks |
| 7 | Package Poisoning | custom pip/npm registry, typosquatting |
| 8 | Clipboard Harvest | pbpaste, Get-Clipboard, pyperclip |
| 9 | Time Bombs | date-conditional execution |
100 = Fully safe
80+ ✅ Safe
60+ ⚠️ Low risk — review flagged items
40+ 🟠 Medium risk — do not install without review
20+ 🔴 High risk — very likely malicious
0 🚨 Critical — do not install
Add rules to resources/rules.yaml:
rules:
- id: my_rule
pattern: 'dangerous_regex_here'
severity: critical # critical | high | medium | low
category: exfiltration # any label
description: What this detects
weight: 50 # subtracted from score when matched
enabled: true
25 built-in rules included. See resources/rules.yaml for full list.
| Source | Trust | Action |
|--------|-------|--------|
| github.com/anthropics/* | ✅ | Install directly |
| Your own code | ✅ | Install directly |
| Known GitHub authors | ⚠️ | Audit first |
| Forums, chats, DMs | ⚠️ | Full audit required |
| Score < 40 | 🚫 | Do not install |
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.