validate — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited validate (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
对项目中的 Markdown 文件运行验证检查。
name 和 description 字段不带参数运行以验证所有技能文件:
/validate# 检查 SKILL.md 文件缺失 frontmatter
find . -name "SKILL.md" -type f | while read f; do
if ! grep -q "^name:" "$f" || ! grep -q "^description:" "$f"; then
echo "缺失 frontmatter: $f"
fi
done
# 检查未翻译的英文(启发式:中文内容区域中 ASCII 字母占比 >50% 的行)
find . -name "SKILL.md" -type f | while read f; do
# 跳过代码块和 frontmatter,检查正文
awk '/^---$/,/^---$/ {next} /^```/,/^```/ {next} /[a-zA-Z]{20,}/ {print FILENAME ":" NR ": 可能的未翻译文本"}' "$f"
done 2>/dev/null | head -20
# 检查无效的相对链接
find . -name "*.md" -type f | while read f; do
grep -oE '\]\([^)]+\)' "$f" | grep -vE 'http|mailto' | sed 's/](\(.*\))/\1/' | while read link; do
target="$(dirname "$f")/$link"
if [[ "$link" == \#* ]]; then
continue # 锚点链接,跳过
fi
if [[ ! -f "$target" ]]; then
echo "$f 中的无效链接: $link"
fi
done
done 2>/dev/null | head -20~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.