Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计通过

skill-eval-preflight飞行前技能评估

Agent Skill

skill-eval-preflight 用于辅助安全审计、权限检查和凭据风险排查,适合在 OpenClaw 中需要复核安全边界、认证流程或敏感配置时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,256

周安装

266

GitHub Stars

1

下载量

2,192
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install skill-eval-preflight

简介

在技能创作阶段验证 OpenClaw 技能合规性。

  • 检查 evals/ 文件准备情况和基础安全边界。
  • 适用于发布前的质量门控环节使用。skill-eval-preflight 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 不替代完整安全审计,仅做初步筛查。
  • 需配合人工复核确保无遗漏风险点。

SKILL.md

name
skill-eval-preflight
description
Validate OpenClaw skills during authoring. Use when creating, revising, or preparing a skill for release and you need to scaffold evals/ files, check readiness for a first eval pass, review whether the frontmatter description has clear trigger coverage, or generate static comparison artifacts before deeper runtime evaluation.

Skill Eval

Use this skill as an authoring-side preflight for OpenClaw skills.

It is not a full runtime evaluator. It helps a skill author move from "this skill exists" to "this skill is structured well enough for first-pass evaluation and later regression work."

Good Requests

This skill is a good fit for requests like:

  • "Set up eval files for this skill before I publish it."
  • "Check whether this skill is ready for a first eval pass."
  • "Review the description and tell me whether trigger coverage is clear enough."
  • "Generate with-skill and without-skill static comparison artifacts for this skill."

Not A Good Fit

Do not rely on this skill alone for requests like:

  • large-scale live runtime benchmarking
  • scoring response quality across many real conversations
  • tool-call correctness or factuality audits
  • end-to-end production regression testing

Use a deeper evaluator after this step when you need those capabilities.

Best Fit

Use this skill when you need to:

  • initialize evals/ files for a new or existing skill
  • confirm a skill is ready for a first eval pass
  • make positive and negative trigger coverage explicit
  • catch placeholder content before sharing a skill
  • write static run summaries and with-skill/without-skill comparison artifacts

Use a deeper evaluator after this step when you need live runtime experiments, tool-call quality checks, or richer output scoring.

Position In The Flow

Recommended sequence:

skill-vetter -> install/review -> skill-eval -> deeper runtime eval

  • skill-vetter answers: "Is this skill safe enough to inspect or install?"
  • skill-eval answers: "Is this skill structured well enough to evaluate seriously?"
  • a deeper evaluator answers: "How well does the skill perform in practice?"

Workflow

  1. Confirm the target folder is a skill directory with SKILL.md.
  2. If the skill came from another repo or another person, do a safety review first.
  3. If evals/ does not exist, initialize it with:

- evals/evals.json - evals/triggers.json - evals/README.md

  1. Replace placeholder prompts with realistic authoring examples.
  2. Run the readiness check before any deeper benchmarking.
  3. If readiness fails, fix the missing pieces first instead of forcing a run.
  4. Generate static run artifacts only after the inputs are usable.

Scripts

Initialize eval files:

python3 scripts/init_eval.py /path/to/skill

Check readiness:

python3 scripts/check_eval_readiness.py /path/to/skill

Run static eval checks:

python3 scripts/run_eval.py /path/to/skill
python3 scripts/run_eval.py /path/to/skill --check readiness
python3 scripts/run_eval.py /path/to/skill --check triggers
python3 scripts/run_eval.py /path/to/skill --check artifacts
python3 scripts/run_eval.py /path/to/skill --check files
python3 scripts/run_eval.py /path/to/skill --mode with-skill
python3 scripts/run_eval.py /path/to/skill --mode without-skill --run-group demo-baseline
python3 scripts/compare_runs.py /path/to/skill --run-group demo-baseline

Readiness Rules

A skill is ready for first-pass evaluation only when:

  • SKILL.md exists
  • the frontmatter description is real and not a placeholder
  • evals/evals.json has at least one non-placeholder eval case
  • evals/triggers.json has at least one positive and one negative non-placeholder trigger case

What This Skill Checks Well

  • missing or empty eval scaffolding
  • placeholder prompts that would make an eval meaningless
  • missing positive/negative trigger coverage
  • empty or malformed expected_artifacts
  • malformed optional files declarations
  • static with-skill/without-skill run artifact organization

Current Limits

run_eval.py does not perform live trigger experiments against the OpenClaw runtime. It does not score real outputs for quality, factuality, or tool correctness.

Today it performs static validation passes that:

  • verify trigger files exist
  • verify cases are non-placeholder
  • verify positive and negative sets are both populated
  • verify eval cases have usable expected_artifacts
  • verify declared files entries are well-formed
  • write mode-specific run summaries for later comparison

Why Publish This Skill

This skill is for authors who do not yet need a full eval lab, but do need a clean starting point. It is most useful as a lightweight preflight and scaffolding step before deeper evaluation.

Release Readiness Checklist

Before calling a skill "ready for release," aim for all of the following:

  • the description names concrete trigger scenarios
  • positive and negative trigger cases both exist
  • placeholder content is gone
  • each eval case describes observable expected artifacts
  • static run summaries can be generated without errors

Compare Runs

Use compare_runs.py after both modes exist in the same run-group.

It compares:

  • overall pass/fail
  • per-check pass/fail
  • mode-specific errors
  • mode-specific notes

It writes comparison artifacts under the run-group root.

References

Read references/eval_format.md when you need the expected file formats and field meanings.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.68%
按下载量换算1,571

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills