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

autoresearch-skill-optimizer自动研究技能优化器

Agent Skill

autoresearch-skill-optimizer 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,823

周安装

276

GitHub Stars

公开资料未说明

下载量

2,142
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install autoresearch-skill-optimizer

简介

使用 Karpathy 循环自动提升任意 OpenClaw 技能。

  • 根据是/否清单反复运行技能并调整参数。
  • 适用于提示工程与输出准确性优化场景。
  • 安装命令:openclaw skills install autoresearch-skill-optimizer。
  • 必须提供高质量测试用例集作为反馈依据。

SKILL.md

name
skill-optimizer
description
Auto-improve any OpenClaw skill using Karpathy's autoresearch loop. Runs skill repeatedly against test inputs, scores against a yes/no checklist, makes one targeted change, keeps if better, reverts if worse. Also audits skill structure against Anthropic's best practices (progressive disclosure, gotchas section, trigger-phrase description). Use when asked to "optimize this skill", "improve my skill", "run autoresearch on", "audit this skill", or before running any skill at scale (e.g., cold outreach). Based on Ole Lehmann's autoresearch method + Anthropic internal skill patterns (@trq212).

Skill Optimizer (Autoresearch Loop + Anthropic Structure Audit)

Two-phase improvement system: (1) structural audit against Anthropic best practices, (2) iterative output quality loop.


Phase 1: Structure Audit (run first, always)

Before optimizing output quality, audit the skill's architecture. Score against these 5 structural checks:

Structural Checklist:

  1. Gotchas section — Does SKILL.md have a ## Gotchas section with at least one real failure case? (Highest-signal content per Anthropic)
  2. Trigger-phrase description — Does the YAML description field say *when* to use the skill, not just *what* it does? Must include "Use when..." or equivalent trigger condition.
  3. Progressive disclosure — Does the skill use the file system (references/, scripts/, assets/, config.json) instead of inline-dumping everything into SKILL.md?
  4. Single focus — Does the skill fit cleanly into one type (Library Reference, Verification, Automation, Scaffolding, Runbook, etc.) without straddling multiple?
  5. No railroading — Does the skill give Claude information + flexibility, rather than over-specifying *how* it must execute?

Score each: ✅ pass | ❌ fail | ⚠️ partial

For each failure: propose a concrete fix and apply if approved.

Quick wins to apply immediately:

  • If no Gotchas section → add `## Gotchas\
  • [Placeholder: add real failures here as they're discovered]`
  • If description is a summary → rewrite as trigger condition
  • If all content is inline → propose a references/ folder structure

Phase 2: Output Quality Loop (autoresearch)

After structure audit, run the iterative improvement loop on the skill's actual outputs.

Setup

  1. Which skill? — User specifies, or infer from context.
  2. Test inputs — Get 2-3 representative inputs. If the user doesn't provide them:

- Check the skill's own docs for example usage - Use recent real invocations from memory/session history - For extraction skills: use known-good URLs/files. For generation skills: use the skill's own example prompts.

  1. Scoring checklist — Build 3-6 scoring items. Start from the examples below, then customize:

- What's the #1 thing that makes this skill's output *bad*? (That's checklist item 1) - What would make a user say "that's exactly what I wanted"? (That's the positive framing) - Add 1-2 items from the "Universal structural quality" list below

Scoring Checklist Examples

See references/checklist-examples.md for starter checklists by skill type (cold outreach, content, research, extraction, process/meta-skills).

Scoring Modes

Binary mode (default for simple skills): Yes/no per checklist item. Pass rate = total yes / (items × runs).

Dimensional mode (use for complex skills or when binary plateaus): Score each dimension 0-10. Identify the weakest dimension (lowest average across runs). Target that dimension for revision — do NOT rewrite everything.

Use dimensional mode when:

  • Binary scoring hits 100% but output still feels mediocre
  • The skill has qualitative dimensions (tone, depth, relevance) that binary can't capture
  • You want to improve from "good" to "excellent" rather than from "broken" to "working"

The Loop

Round N:
1. Run skill against each test input
2. Score each output (binary: 1 per yes | dimensional: 0-10 per dimension)
3. Calculate score:
   - Binary: pass rate = (total yes) / (items × runs)
   - Dimensional: avg score per dimension across runs
4. Identify the weakest item/dimension (most failures or lowest avg score)
5. Make ONE targeted change to SKILL.md addressing ONLY that weakness
6. Re-run and re-score
7. If new score > old score: KEEP. Else: REVERT.
8. Log: score before/after, change made, dimension targeted, kept/reverted

Stop when: binary ≥ 95% (3 consecutive rounds) OR dimensional weakest ≥ 8/10 (3 consecutive) OR 20 rounds reached.

Output Files

  • skills/{skill-name}/SKILL-optimized.md — improved version (original untouched)
  • skills/{skill-name}/optimization-changelog.md — full round log

Changelog Format

## Structural Audit
- Gotchas section: ❌ → Added placeholder
- Description: ❌ → Rewritten as trigger condition
- Progressive disclosure: ⚠️ → Noted, deferred

## Round 1 (binary mode)
- Score: 4/10 (40%)
- Weakest item: "Does it mention business name?"
- Change: Added rule "Always open with [Business Name],"
- New score: 7/10 (70%)
- Decision: KEPT

## Round 2 (dimensional mode)
- Scores: Accuracy 8/10 | Tone 5/10 | Brevity 9/10 | Relevance 7/10
- Weakest dimension: Tone (5/10)
- Change: Added "Match prospect's industry language, not generic sales speak"
- New scores: Accuracy 8/10 | Tone 7/10 | Brevity 9/10 | Relevance 7/10
- Decision: KEPT (Tone +2)

Optimizing Meta-Skills (Process Skills)

Some skills don't produce text — they drive a process (e.g., this skill itself, planning workflows, research pipelines). For these:

What to score: Score the *experience of following the process*, not a text artifact.

  • Did the process produce a clear result?
  • Were there moments of confusion where the instructions were ambiguous?
  • Did any step feel unnecessary or redundant?
  • Could someone follow this without prior context?

How to test: Run the skill on 2-3 real tasks (not hypothetical). Score after each real use. The test inputs ARE the tasks you're applying the skill to.

Dimensional scoring for process skills:

  • Clarity — Can I follow each step without re-reading?
  • Completeness — Does the process cover the full workflow?
  • Actionability — Do I know exactly what to do at each step, or do I have to infer?
  • Efficiency — Are there wasted/redundant steps?
  • Self-applicability — Can this process improve itself? (Meta-test)

Checklist Sweet Spot

  • 3-6 questions = optimal
  • Too few: not granular enough to guide changes
  • Too many: skill starts gaming the checklist (like a student memorizing answers without understanding)

When to Use

  • Before running any skill at scale (cold outreach, content generation, scraping)
  • After a new model upgrade — re-validate existing skills
  • When a skill has inconsistent output quality
  • Monthly maintenance pass on high-use skills
  • Immediately after creating a new skill (structural audit only takes 5 min)

When to Run Which Phase

  • Any new skill → Structure audit (5 min, catches issues early)
  • Before scale use → Output loop (validate quality before mass runs)
  • After model upgrade → Output loop (re-validate existing skills)
  • Inconsistent output → Output loop (find the failing item/dimension)
  • High-revenue skills → Both phases (cold outreach, content gen — quality variance = revenue impact)

Gotchas

  • Output loop requires skills that produce scoreable text outputs — scripts/tools that produce side effects need a different verification approach (use a Product Verification skill type instead)
  • Don't run output loop on skills that call expensive APIs without rate limit awareness — each round runs the skill multiple times
  • Phase 1 (structure audit) should always run before Phase 2 — fixing structure first makes the output loop more effective
  • 3-6 checklist questions is the sweet spot — more than 6 and the skill starts gaming individual checks rather than improving overall quality

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

94.84%
按下载量换算2,031

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills