Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

skill-linter-checker技能 linter 检查器

Agent Skill

skill-linter-checker 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,306

周安装

142

GitHub Stars

公开资料未说明

下载量

1,159
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skill-linter-checker(技能 linter 检查器)
来源仓库:https://github.com/mengbin92/skill-linter-checker
安装命令:
openclaw skills install skill-linter-checker
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install skill-linter-checker

简介

skill-linter-checker 用于分析和验证 SKILL.md 文件,提供最佳实践和改进建议。

  • 适合在查看、创建或优化技能时提升文档质量和规范性。
  • 自动检查技能定义的结构、内容和常见问题,辅助完善技能描述。
  • 安装前应确认其是否访问外部 API 或修改本地文件。
  • 建议核对来源仓库以了解最新支持的功能和维护情况。

SKILL.md

name
skill-linter
description
Analyze and validate SKILL.md files for best practices, common issues, and improvement suggestions. Use when reviewing a Skill, creating a new Skill, or when asked to check/audit/improve a SKILL.md file.
allowed-tools
Read, Edit, Write

Skill Linter & Advisor

Analyze SKILL.md files against Claude Code Skills best practices and provide actionable feedback.

Analysis Process

  1. Read the SKILL.md file - Load the complete content
  2. Parse frontmatter - Validate YAML structure and required fields
  3. Check content structure - Verify best practices for the markdown body
  4. Compare against patterns - Match against known good Skill patterns
  5. Generate report - Provide structured feedback with severity levels

Validation Checklist

Frontmatter (YAML Header)

CheckSeverityDescription
Has --- delimiters🔴 CriticalMust have opening and closing ---
Valid YAML syntax🔴 CriticalYAML must parse without errors
Has name field🟡 WarningDefaults to directory name, but explicit is better
Has description🔴 CriticalRequired for auto-trigger to work
Description quality🟡 WarningShould be specific, mention when to use
disable-model-invocation🟢 InfoOnly set if you want manual-only
user-invocable🟢 InfoSet to false to hide from / menu
allowed-tools🟡 WarningSpecify if Skill needs specific tools
model override🟢 InfoOnly if you need specific model
context: fork🟢 InfoUse for long-running or isolated tasks
agent with context🟢 InfoRequired when context: fork

Content Structure

CheckSeverityDescription
Has clear title/heading🟡 WarningFirst line should indicate purpose
Has process/steps🟡 WarningSkills should have actionable steps
Has output format🟡 WarningDefine expected output structure
Uses specific language🟡 WarningAvoid vague terms like "etc", "etc."
Has examples🟢 InfoConcrete examples improve reliability
Has constraints/guardrails🟢 InfoDefine what NOT to do
Appropriate length🟡 WarningToo short (<100 words) or too long (>2000)

Common Issues

IssueSeverityFix
Missing description🔴 CriticalAdd description explaining when to trigger
Description too vague🟡 WarningBe specific about use cases
No clear output format🟡 WarningAdd expected output structure
Missing tool declarations🟡 WarningAdd allowed-tools if using tools
Too many responsibilities🟡 WarningSplit into multiple focused Skills
Hardcoded paths🟡 WarningUse variables or relative paths
No error handling guidance🟢 InfoAdd what to do when things go wrong

Output Format

# Skill Analysis Report

## File: {filepath}

### Frontmatter Analysis

| Field | Status | Value | Notes |
|-------|--------|-------|-------|
| name | ✅/⚠️/❌ | {value} | {feedback} |
| description | ✅/⚠️/❌ | {value} | {feedback} |
| ... | | | |

**Frontmatter Score:** X/10

### Content Analysis

| Check | Status | Notes |
|-------|--------|-------|
| Has clear purpose | ✅/⚠️/❌ | {feedback} |
| Actionable steps | ✅/⚠️/❌ | {feedback} |
| Output format defined | ✅/⚠️/❌ | {feedback} |
| Has examples | ✅/⚠️/❌ | {feedback} |
| Appropriate length | ✅/⚠️/❌ | {word_count} words |

**Content Score:** X/10

### Issues Found

#### 🔴 Critical (Must Fix)
1. {issue description} → {fix suggestion}

#### 🟡 Warnings (Should Fix)
1. {issue description} → {fix suggestion}

#### 🟢 Suggestions (Nice to Have)
1. {issue description} → {fix suggestion}

### Overall Assessment

**Total Score:** X/10

**Verdict:**
- ✅ Excellent - Ready to use
- 🟡 Good - Minor improvements suggested
- ⚠️ Needs Work - Address warnings before using
- ❌ Critical Issues - Must fix before using

### Recommended Actions

1. {action item}
2. {action item}
3. {action item}

### Improved Version (Optional)

If significant improvements are needed, provide a rewritten SKILL.md:

improved frontmatter


Improved content...

Skill Patterns Reference

Pattern 1: Checklist/Task Skill

For: Code review, testing, validation tasks

Structure:

  • Clear trigger description
  • Step-by-step process
  • Checklist categories
  • Severity ratings
  • Structured output format

Pattern 2: Generator Skill

For: Documentation, commit messages, reports

Structure:

  • Input requirements
  • Analysis steps
  • Template/format specification
  • Examples
  • Constraints

Pattern 3: Explorer/Research Skill

For: Code exploration, debugging, analysis

Structure:

  • Context gathering (!commands)
  • Investigation steps
  • What to look for
  • How to present findings

Pattern 4: Workflow Skill

For: Multi-step processes, releases, deployments

Structure:

  • Prerequisites check
  • Sequential steps
  • Validation points
  • Rollback guidance

Examples of Good Descriptions

Good:

  • "Perform a thorough code review following the team checklist. Use when reviewing code changes, pull requests, or when the user asks for a code review."
  • "Generate API documentation from source code. Use when the user asks to document an API endpoint, route handler, or controller."
  • "Create a standardized git commit message following Conventional Commits format. Use when the user asks to commit or create a commit message."

Bad:

  • "Does code review" (too vague)
  • "Helps with documentation" (when?)
  • "A skill for git" (too broad)

Examples of Good Output Formats

Good:

## Output Format

Structure your review as:

**Summary**
[One-paragraph overall assessment]

**Critical Issues**
[Must fix before merging]

**Approved?**
[YES / NO / YES WITH CONDITIONS]

Bad:

Just give me a review of the code.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

88.85%
按下载量换算1,030

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills