AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Skill Doctor

skill-yuaicode-ai-skills-skill-doctor · by YuAICode

发布前校验 skill 目录是否符合合集约定的 lint 工具。当用户说"检查 skill / lint skill / skill 规范校验 / 发布前检查"时触发。

No reviews yet
0 installs
17 views
0.0% view→install

Install

$ agentstack add skill-yuaicode-ai-skills-skill-doctor

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-yuaicode-ai-skills-skill-doctor)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Skill Doctor? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

skill-doctor — skill 合集 lint 工具

发布一个 skill 前,用本工具确认它符合合集的目录约定(SKILL.md frontmatter、README 徽章、bin/tests 配对等)。

何时触发

用户说"检查 skill / lint skill / skill 规范校验 / 这个 skill 合规吗 / 发布前检查"。

用法

检查单个 skill

bash skill-doctor/bin/lint-skill.sh 

示例(在合集根目录运行):

bash skill-doctor/bin/lint-skill.sh ./my-new-skill

遍历整个合集

for d in */; do
  [ -f "$d/SKILL.md" ] || continue
  bash skill-doctor/bin/lint-skill.sh "$d"
done

退出码说明

| 退出码 | 含义 | |--------|------| | 0 | 全部通过(或只有 warning) | | 2 | 存在 error 级问题,阻止发布 |

Error vs Warning

Error(exit 2,须修复才能发布):

  1. 缺少 SKILL.md
  2. SKILL.md 没有 YAML frontmatter(缺 --- 围栏),或 frontmatter 缺 name: / description:
  3. frontmatter 的 name: 值与目录名不一致
  4. 缺少 README.md
  5. README.md 未包含 img.shields.io 徽章
  6. 存在 bin/ 目录且里面有 .sh 文件,却没有 tests/run.sh

Warning(exit 0,建议改但不拦):

  • description 为空或未含"触发"字样(建议 description 写明触发词)

边界

  • 只检查目录结构与 frontmatter 格式,不校验 SKILL.md 内容质量。
  • 不执行 tests/run.sh(只检查文件是否存在);要跑测试请单独执行。
  • 纯 bash,零外部依赖。

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.