Token导航 LogoToken导航TokenDH.com
开发external-serviceclawhub未标认证来源可访问clear审计提醒

skeallskeall 开发

Agent Skill

skeall 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

22,326

周安装

912

GitHub Stars

公开资料未说明

下载量

7,223
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install skeall

简介

用于构建、审核和改进 Agent Skill 的跨平台开发工具。

  • 适合技能模板生成、代码审查和功能增强。
  • 支持多语言项目,提升技能开发效率。skeall 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 安装前建议确认项目依赖和环境配置。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 注意维护状态,确保与 OpenClaw 版本兼容。

SKILL.md

name
skeall
description
|

Skeall

Create, improve, and audit Agent Skills following the Agent Skills open standard. This skill encodes lessons from real-world skill development and cross-platform compatibility testing.

Quick start

/skeall --create              # Interview, then scaffold new skill
/skeall --improve <path>      # Analyze and improve existing skill
/skeall --scan <path>         # Audit only, no changes (report)
/skeall --scan .              # Audit skill in current directory
/skeall --scan-all            # Batch scan all skills in ~/.claude/skills/
/skeall --scan-all <dir>      # Batch scan all skills in custom directory
/skeall --healthcheck <path>  # Runtime check single skill (orphans, deps, env, URLs)
/skeall --healthcheck-all     # Runtime check all skills in ~/.openclaw/skills/
/skeall --healthcheck-all <dir> # Runtime check all skills in custom directory

Mode 1: Create (scaffold a new skill)

Process

  1. Interview the user (ask questions 1-4 always, then 5-6 if user hasn't already specified complexity or distribution scope):

- What does this skill do? (one sentence) - What category? Reference / Task / MCP Enhancement / Hybrid. See references/advanced-patterns.md - What triggers should activate it? (keywords users would type) - Does it accept arguments? (e.g., file path, topic — use $ARGUMENTS or $ARGUMENTS[N] in body) - How complex is it? (single file vs references/ needed) - Will this skill be shared? (personal / project / public) — affects README, license, metadata

  1. Generate the skill structure:
{skill-name}/
├── SKILL.md                    # Core instructions (always loaded)
├── references/                 # On-demand detail files
│   ├── {topic-1}.md
│   └── {topic-2}.md
└── README.md                   # GitHub-facing (optional)
  1. Write SKILL.md following these rules:

- YAML frontmatter with name and description (see Frontmatter section) - Body under 500 lines, under 5000 tokens - Instruction-based framing, not persona-based - Progressive disclosure: core in SKILL.md, details in references/

  1. Show the generated SKILL.md to user for review.
  1. Run --scan on the generated skill. If any HIGH issues found, fix them before delivering.

Next step: "Optimize with reprompter?" (optional, see Reprompter section). Then suggest installing the skill.


Mode 2: Improve (refactor existing skill)

Process

  1. Read SKILL.md first. Read reference files only if scan identifies issues requiring them (broken links, routing table mismatches).
  2. Run the scan checklist (see Mode 3).
  3. For each issue found, propose a specific before/after edit.
  4. Group edits by priority: HIGH first, then MEDIUM, then LOW.
  5. Ask user: "Fix all? Review one by one? Or just the HIGHs?" (recommended: fix all HIGHs automatically, review MEDIUMs)
  6. Apply approved edits.
  7. Re-scan once. If new issues appear, report them but do not enter an infinite fix loop.

Next step: "Run --scan to verify?" or "Commit changes?"

Common improvements

ProblemFix
Body over 5000 tokensMove detail sections to references/
Redundant contentSingle source of truth, reference elsewhere
Persona-based framingSwitch to instruction-based framing
Missing trigger phrasesAdd keywords to description field
Platform-specific patternsReplace with universal formatting
No progressive disclosureAdd routing table to reference files

Mode 3: Scan (audit and report)

Process

  1. Read the skill's SKILL.md and directory structure.
  2. Check every item in the checklist below.
  3. Output a severity-tagged report.

Report format

## Skill Audit: {skill-name}

Score: X.X/10

STRUCTURE
  [PASS] S1 -- SKILL.md exists at root
  [FAIL] S3 HIGH -- name does not match directory name
  [WARN] S5 MEDIUM -- No references/ directory

FRONTMATTER
  [PASS] F2 -- Trigger phrases present
  [FAIL] F1 HIGH -- description over 1024 characters

CONTENT
  [WARN] C5 MEDIUM -- Persona-based framing ("You are an expert")
  [FAIL] C3 HIGH -- Same content repeated 3 times (lines 45, 120, 280)

LLM-FRIENDLINESS
  [WARN] L4 MEDIUM -- Unicode arrows instead of markdown tables
  [PASS] L3 -- No emoji markers in headings

SECURITY
  [PASS] SEC1 -- No XML angle brackets in frontmatter
  [PASS] SEC3 -- No hardcoded secrets

CROSS-PLATFORM
  [PASS] X1 -- No {baseDir} placeholders
  [WARN] X4 LOW -- No multi-platform install instructions in README

Total: 3 HIGH | 4 MEDIUM | 1 LOW

Next step after scan: "Want me to fix these? Run /skeall --improve <path>"

Error handling

InputResponse
No SKILL.md found at path"No skill found at {path}. Did you mean --create?"
Empty directory for --scan-all"No skills found in {dir}. Skills must have a SKILL.md file."
Invalid YAML frontmatterReport the parse error, suggest fixing frontmatter first
--improve on non-skill file"Not a valid skill (no YAML frontmatter). Try --create instead."
--improve on a skill scoring 10/10"Scan found 0 issues (score 10.0/10). No changes needed. Consider running trigger and functional tests."

Agent Skills spec reference

Frontmatter (required)

---
name: my-skill-name
description: What this skill does and when to use it. Include trigger phrases.
---

name rules:

  • Must match the parent directory name
  • Lowercase alphanumeric with hyphens only (unicode lowercase allowed)
  • 1-64 characters, no leading/trailing/consecutive hyphens
  • No spaces, no special characters, no reserved words ("anthropic", "claude")
  • Recommended: gerund form (processing-pdfs, testing-code) or descriptive noun (pdf-processor)

description rules:

  • Explain WHAT it does AND WHEN to use it
  • Write in third person ("Processes files", not "I can process" or "You can use")
  • Include trigger phrases users would actually type
  • Put the most important keyword first (platforms weight first words)
  • Spec limit: 1024 characters. Recommended: under 300 for best matching
  • Use noun-phrase style ("Guide for X"), not persona style ("Expert in X")
  • No XML angle brackets (<, >) in any frontmatter value (injection risk)

Optional frontmatter fields

These are silently ignored by platforms that do not support them:

license: MIT                          # For distributed skills
compatibility: "Node.js 18+"         # Environment requirements (max 500 chars)
metadata:                             # Arbitrary key-value (author, version)
  author: your-name
  version: 1.0.0
allowed-tools: "Bash Read"           # Experimental: space-delimited tool list
user-invocable: true                  # Show in /slash menu (false = hidden but still callable)
disable-model-invocation: true        # Block Claude from auto-loading this skill
argument-hint: "<file-path>"          # Hint shown in /skill autocomplete
model: opus                           # Override model for this skill
context: fork                         # Run in isolated subagent
agent: general-purpose                # Subagent type: general-purpose, Explore, Plan, or custom
hooks:                                # Skill-scoped lifecycle hooks
  PostToolCall: "validate.sh"

Directory structure

skill-name/
├── SKILL.md           # REQUIRED -- core instructions
├── references/        # OPTIONAL -- on-demand detail files
├── scripts/           # OPTIONAL -- executable scripts
├── assets/            # OPTIONAL -- static assets (images, etc.)
└── README.md          # OPTIONAL -- GitHub-facing docs

Token budget

LevelContentBudget
Metadata (YAML frontmatter)name + description~100 tokens
Instructions (SKILL.md body)Always loaded by LLM< 5000 tokens
References (each file)Loaded on demand~2000-3000 tokens each

Estimation: ~1.5 tokens per word for mixed code+prose markdown.

Progressive disclosure: SKILL.md body should handle ~70% of user requests. Reference files handle the remaining 30% (detailed workflows, complete examples, edge cases).

Line limits

GuidelineLimit
SKILL.md bodyUnder 500 lines (under 300 for complex skills with many references)
Reference filesNo hard limit, but keep each under 700 lines. Add TOC at top if over 100 lines

Scan checklist

Structure checks

IDSeverityCheck
S1HIGHSKILL.md exists at skill root
S2HIGHYAML frontmatter present with --- delimiters
S3HIGHname field present and valid (lowercase, hyphens, 1-64 chars, no consecutive hyphens)
S4HIGHdescription field present
S5MEDIUMReferences in references/ not loose at root
S6LOWREADME.md present for GitHub-hosted skills
S7LOWNo unnecessary files (node_modules, .DS_Store, etc.)
S8HIGHname field matches parent directory name

Frontmatter checks

IDSeverityCheck
F1HIGHDescription under 1024 characters (spec limit)
F1bLOWDescription under 300 characters (recommended for matching)
F2HIGHDescription includes trigger phrases
F3MEDIUMDescription starts with noun phrase, not "Expert in"
F4MEDIUMName 1-64 characters, no leading/trailing/consecutive hyphens
F5LOWNo platform-specific fields (keeps universal compatibility)

Content checks

IDSeverityCheck
C1HIGHBody under 500 lines
C2HIGHEstimated tokens under 5000
C3HIGHNo content repeated in SKILL.md body (controlled repetition across reference files is acceptable)
C4HIGHCode examples use correct, verified patterns
C5MEDIUMInstruction-based framing (not "You are an expert")
C6MEDIUMHas routing table to reference files (if references/ exists)
C7MEDIUMTroubleshooting section present (for skills with code blocks or CLI commands)
C8LOWNo deprecated content at the top (wastes prime token space)
C9MEDIUMRouting table completeness: if references/ exists, SKILL.md lists ALL files in references/
C10MEDIUMInternal count consistency: claimed counts ("34 patterns", "8 phases") match actual content
C11MEDIUMNo stale references: documented APIs, functions, model names exist in actual source

LLM-friendliness checks

IDSeverityCheck
L1HIGHTables for structured data (not bullet lists with arrows)
L2HIGHImperative instructions ("Do X", not "You should consider X")
L3MEDIUMNo emoji in headings or structural markers (frontmatter metadata values are data, not markers)
L4MEDIUMNo Unicode arrows or special characters for data flow
L5MEDIUMConsistent heading hierarchy (no skipped levels). Ignore headings inside fenced code blocks
L6MEDIUMCode blocks have language tags
L7LOWSentence case headings (not Title Case)
L8LOWNo nested blockquotes (some LLMs parse poorly)

Security checks

IDSeverityCheck
SEC1HIGHNo XML angle brackets (<, >) in frontmatter values
SEC2HIGHName does not contain reserved words ("anthropic", "claude")
SEC3HIGHNo hardcoded API keys, tokens, or secrets in any skill file
SEC4MEDIUMScripts include error handling (not bare commands)
SEC5HIGHNo credential patterns (Bearer eyJ, sk-/pk- prefixes, api_key=/token= + long strings). Ignore $ENV_VAR refs and YOUR_KEY_HERE placeholders

Cross-platform checks

IDSeverityCheck
X1HIGHNo {baseDir} placeholders (breaks non-OpenClaw platforms)
X2MEDIUMRelative paths from SKILL.md to references/
X3MEDIUMInternal links use standard markdown [text](path)
X4LOWREADME has multi-platform install paths

Runtime checks (healthcheck mode only)

IDSeverityCheck
R1HIGHOrphan skill: not referenced in any config or skill registry
R2HIGHDuplicate name: same name field found in 2+ skill directories
R3HIGHTrigger collision: description phrases 80%+ overlap with another skill
R4HIGHBroken dependency: file referenced in SKILL.md does not exist
R5MEDIUMStale endpoint: URL in curl command returns 404 or times out
R6MEDIUMMissing env var: $VAR reference found but not set in environment
R7LOWToken cost: estimated tokens loaded per session

LLM-friendliness patterns

These patterns come from real cross-platform testing. Apply them when creating or improving skills.

Do

  • Tables over prose for structured data (parameters, options, comparisons)
  • Single source of truth for any concept explained more than once
  • Instruction-based framing: "This skill provides instructions for X. Follow these patterns exactly."
  • Imperative verbs: "Call X after Y", "Use Z for W"
  • Compact routing table at the top pointing to reference files
  • Parameter comments inline in code blocks: providerAddress, // 1st: wallet address
  • Copyable progress checklists for multi-step workflows (LLM tracks completion)
  • Validation feedback loops for quality-sensitive output (generate, score, retry if needed)
  • Consistent freedom level per section — do not mix exact scripts with vague guidance. See references/advanced-patterns.md

Do not

  • Persona-based framing: "You are an expert in..." (Claude-leaning, other LLMs respond better to instructions)
  • Emoji markers in headings or structural elements (token-expensive, parsed inconsistently). Emoji in frontmatter metadata values is data and acceptable
  • Unicode arrows (→, ←) for data flow — use tables or plain prose
  • Blockquote warnings at top of SKILL.md (wastes prime token space, primes distrust)
  • "When Users Ask" checklists with 10+ items (bury critical rules, use tables instead)
  • Synonym cycling for the same concept (confuses LLMs about whether it's the same thing)
  • Repeated content (wastes tokens, risks contradictions if copies drift)
  • Assuming exclusive activation (other skills may load simultaneously — declare dependencies explicitly)

Description field optimization

Good description pattern:

{Product/Tool name} guide for {primary use case}. Covers {feature list}.
Use this skill for {trigger phrases separated by commas}.

Example:

description: 0G Compute Network guide for decentralized AI inference and fine-tuning.
  Covers chatbots, image generation, speech-to-text, SDK integration, CLI commands.
  Use this skill for any 0G compute, 0G AI, or decentralized GPU question.

Cross-platform compatibility

Universal format (works everywhere)

Only name and description in frontmatter. Standard markdown body. Relative paths. No platform-specific syntax.

Platform discovery paths

PlatformUser-wideProject
Claude Code~/.claude/skills/{name}/.claude/skills/{name}/
OpenAI Codex~/.agents/skills/{name}/.agents/skills/{name}/
OpenClaw~/.openclaw/skills/{name}/.openclaw/skills/{name}/
CursorStandard SKILL.md discoveryProject skills dir
Gemini CLIStandard SKILL.md discoveryProject skills dir

Codex-specific extensions

OpenAI Codex adds an optional openai.yaml file alongside SKILL.md for platform metadata (interface, policy, dependencies). SKILL.md itself stays cross-platform. See references/advanced-patterns.md for details.

Things that break cross-platform

PatternProblemFix
{baseDir} placeholderOnly OpenClaw resolves itUse relative paths
Platform-specific instructionsConfuse other LLMsKeep instructions generic
Hardcoded pathsBreak on other OS/platformsUse relative from SKILL.md

Token estimation

Estimate: wc -w SKILL.md × 1.5 (prose) or × 1.7 (code-heavy files).

Budget allocation guide

Skill complexitySKILL.md targetReferences needed?
Simple (one topic, few commands)100-200 lines / ~1500 tokensNo
Medium (multiple features, some code)200-350 lines / ~3000 tokens1-2 files
Complex (multi-domain, many patterns)300-450 lines / ~4500 tokens3-5 files

Severity reference

SeverityMeaningAction
HIGHBreaks spec compliance or causes LLM confusionMust fix
MEDIUMReduces quality or cross-platform compatibilityShould fix
LOWMinor improvement opportunityFix if time permits

Mode 4: Batch scan (scan-all)

Scan every skill in a directory at once. Useful for auditing your entire skill collection.

Process

  1. List all subdirectories containing SKILL.md in the target path (default: ~/.claude/skills/).
  2. Run Mode 3 (scan) on each skill. Output each skill's score as you complete it.
  3. Output a summary table sorted by score ascending (worst first).

Report format

## Batch Skill Audit

| Skill | Score | HIGH | MEDIUM | LOW | Status |
|-------|-------|------|--------|-----|--------|
| seo-optimizer | 5/10 | 3 | 2 | 1 | NEEDS WORK |
| reprompter | 6/10 | 2 | 3 | 0 | NEEDS WORK |
| blogger | 7/10 | 1 | 1 | 2 | NEEDS WORK |
| humanizer-enhanced | 8/10 | 0 | 2 | 1 | PASS |

Total: 4 skills scanned
PASS: 1 | NEEDS WORK: 3

Top issues across all skills:
1. [HIGH] C2 reprompter: Body exceeds 5000 tokens (est. 8,200)
2. [HIGH] C3 seo-optimizer: Content repeated 4 times
3. [HIGH] C5 reprompter: Persona-based framing

PASS threshold: Score 7+ with zero HIGH issues.

Next step: "Start with the lowest-scoring skill. Run /skeall --improve <path> on it."


Mode 5: Health check (runtime audit)

Checks whether a skill actually works at runtime — beyond what static scan can catch. Run static scan (Mode 3) first and fix HIGH issues before health check.

Process

  1. Run R1-R7 checks against the target skill.
  2. For --healthcheck-all: cross-check all skills for duplicates (R2) and trigger collisions (R3).
  3. Output severity-tagged report with sections: RUNTIME, DUPLICATES, TRIGGER COLLISIONS.
  4. Labels: [FAIL] for HIGH issues (must fix), [WARN] for MEDIUM (runtime risk), [INFO] for LOW.

For detection algorithms, report format examples, and batch output format, see references/healthcheck.md.


Scoring methodology

Formula: Score = max(0, 10 - (HIGHs x 1.5) - min(MEDIUMs x 0.5, 3) - min(LOWs x 0.2, 1))

PASS threshold: Score 7+ AND zero HIGH issues. For detailed examples, see references/scoring.md.


Troubleshooting

IssueFix
Token estimate seems wrongUse wc -w and multiply by 1.5 (prose) or 1.7 (code-heavy)
Scan reports FAIL but skill works fineHIGHs indicate spec/LLM issues, not runtime bugs. Fix them anyway.
Batch scan misses a skillSkill directory must contain SKILL.md at root
Two fixes contradict each otherFlag the conflict, ask user to choose (e.g., "shorten file" vs "add section")
Score 7+ but still NEEDS WORKCheck for HIGH issues. Any HIGH = NEEDS WORK regardless of score

References

For detailed checklists and examples, see:

Testing your skill: After create or improve, test trigger activation (3-5 keyword variants), functional output, and negative (unrelated queries stay quiet). See references/testing.md.

MCP integration: Use fully qualified tool names (mcp__server__tool_name). Document required MCP servers and provide fallbacks. See references/advanced-patterns.md.

Reprompter integration (optional): After --create interview, say "reprompter optimize" to score description variants and validate code examples. Works standalone if reprompter is not installed.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.24%
按下载量换算6,951

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills