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

autoagentauto Agent 搜索

Agent Skill

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

总安装

7,342

周安装

297

GitHub Stars

公开资料未说明

下载量

2,305
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install autoagent

简介

迭代优化代理提示词与技能定义质量。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

  • 通过测试评分机制改进指导语有效性。
  • 适用于 AGENTS.md 条目与技能模板调优。
  • 需准备多样化的测试用例作为反馈依据。
  • 优化过程可能改变原有行为预期。autoagent 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
autoagent
description
Automatically improve agent guidance through iterative testing and scoring. Use when you want to optimize prompts, AGENTS.md entries, or skill definitions using a Karpathy-style training loop with OpenClaw cron.

Autoagent Skill

Optimize any agent guidance through automated testing and iterative improvement.

Quick Start

/autoagent

What It Does

  1. Setup Phase - Asks where your guidance lives and what it should do
  2. Creates Sandbox - Copies guidance to test folder with fixtures
  3. Runs Optimization Loop - Every 5 minutes via cron:

- Analyzes current guidance - Proposes improvement - Tests with subagent - Scores result - Keeps or discards change

  1. Logs Everything - Check scores.md for history

Setup Phase (Every Invocation Starts Fresh)

Every invocation of /autoagent starts fresh with interactive setup questions.

Step 1: Ask Sandbox Location

Ask the user:

Where should I create the sandbox folder? Default: ../../autoagent-sandbox/ (resolves to /clawd/autoagent-sandbox/)

You can respond with:

  • Empty/default: Press enter to use ../../autoagent-sandbox/
  • Just a name: "news" creates ../../autoagent-news//clawd/autoagent-news/
  • Relative path: "agentDev/optimize" creates ../../agentDev/optimize//clawd/agentDev/optimize/
  • Absolute path: /some/other/path/optimize/ → exact path

Wait for their response (or empty for default).

Step 2: Discuss Success Criteria

Ask the user:

Let's define how we'll measure success. What does a "good" result look like for this task?

Follow up one at a time based on their response:

  • What specific outputs are expected?
  • What format should they be in?
  • What's the minimum viable quality?
  • Any edge cases to consider?

Once you have enough information, propose a draft scoring.md:

## Proposed Scoring Criteria

**Score Components:**
- [Component 1]: [X] points - [description]
- [Component 2]: [Y] points - [description]
- ...

**Total:** 100 points

**[Any additional notes]**

Wait for user approval or modifications.

Step 3: Ask About External Scripts/Tools

Ask the user:

Does the guidance rely on any scripts, tools, or external software? - If yes: Note each script/tool path and what functionality it provides - The autoagent should analyze these to recommend improvements

Step 4: Ask Cron Schedule

Ask the user:

Run optimization every 5 minutes (default), or different interval?

Step 5: Create Sandbox

After all questions answered, create the sandbox folder at the user-specified path:

sandbox/
├── guidance-under-test.md   # Copy of original guidance
├── current-guidance.md      # Same as guidance-under-test initially
├── fixtures/
│   └── test-cases.json      # {"cases": [{"input": "...", "expected": "..."}]}
├── scoring.md               # Scoring criteria document (user-approved)
├── scores.md                # Score history table
└── scripts/                  # (optional) Copy of referenced scripts/tools

Step 6: Set Up Cron

Use OpenClaw cron syntax to schedule the iteration agent:

  • Default: every 5 minutes (*/5 * * * *)
  • Command: invoke the iteration prompt with the sandbox path

Step 7: Confirm Start

Return confirmation message showing the resolved path:

"Optimization started at /clawd/autoagent-news/. I'll check back every 5 minutes. Monitor progress in scores.md."

Iteration Phase (Runs Every Cron Interval)

Each time the cron triggers, do the following:

Step 1: Analyze Current State

Read from the sandbox:

  • current-guidance.md - The guidance being optimized
  • scores.md - History of scores and changes
  • scoring.md - How to measure success
  • fixtures/test-cases.json - Test inputs (MUST read this to understand what the guidance is being tested against)

Review score history (last 10 runs or all available runs if fewer than 10 exist), identify patterns, note current score. When fewer than 10 runs exist, treat all available scores as the set for plateau detection.

Important: Load the test cases from fixtures/test-cases.json to understand what specific outputs/ behaviors are expected. The edit should address gaps revealed by test case failures or missing criteria.

Step 1b: Analyze External Scripts/Tools (If Applicable)

If the guidance references any scripts, tools, or external software:

  1. Locate each script/tool - Find the actual script files or binary locations
  2. Analyze the functionality - Read the code or documentation to understand what it does
  3. Identify improvement opportunities:

- For open-source scripts: Can the script be modified to improve functionality? - For closed-source/compiled tools: Can wrapper behavior be improved? Can you recommend API/interface changes?

  1. Note findings in the iteration - If script improvements could help test scores, document them

Example outputs:

  • "Script X does Y but could do Z - recommend modification to add feature W"
  • "Tool A is closed-source, recommend changing prompt to work around limitation B"
  • "Script C has bug in function D - fix would improve test outcomes"

Step 2: Propose Edit

Generate ONE specific edit to the guidance that might improve the score.

Analyze Score History First:

  • Read scores.md to find the last 10 runs
  • Identify patterns: Which scoring criteria are consistently low?
  • Look for repeated failures - if the same criterion failed multiple times, that's your target
  • Check what changes were tried before (avoid repeating failed approaches)

Edit Selection Strategy (Priority Order):

  1. If scores exist: Target the lowest-scoring criteria from scoring.md
  2. If all scores high (90+): Add missing detail to any criteria marked as partial
  3. If only 1-2 runs: Assume baseline covered basics, add missing methodology
  4. Prioritize edits that affect multiple scoring criteria at once

The edit should:

  • Be specific and actionable (not vague like "improve clarity")
  • Address a weakness identified in scoring (target the lowest-scoring criteria)
  • Not be identical to recently tried changes (check scores.md for recent descriptions)
  • Include the exact text to add/remove/replace

Format:

## Proposed Edit

**Rationale:** Why this change might help

**Change:**

[Show exact diff or new text]

Step 3: Apply Edit

Write the edited guidance to current-guidance.md

Step 4: Run Test

Use a subagent to run the task with the new guidance:

  • Give the subagent current-guidance.md
  • Provide test inputs from fixtures/test-cases.json
  • Capture the output
  • Subagent invocation: Use sessions_spawn with task containing the full contents of current-guidance.md, include the test cases JSON inline in the task prompt, set timeoutSeconds to 120, and request the subagent to return the raw output (not just pass/fail)

Step 5: Score Result

Evaluate the output against scoring.md criteria. Generate a score 0-100.

Step 6: Log Decision

Append to scores.md:

| N   | Description of change | SCORE | keep/discard |

Where N is the run number (increment from last).

Step 7: Update Guidance

  • If score improved: Keep the edit (current-guidance.md is already updated)
  • If score declined: Revert current-guidance.md to previous version

Step 8: Check Plateau

If last 10 scores are within 5 points of each other:

  • Log "Plateau detected - pausing"
  • Notify user
  • Stop the cron (or pause and await user override)

Files Created in Sandbox

FileDescription
guidance-under-test.mdOriginal copy (read-only reference)
current-guidance.mdWorking version (edited each iteration)
fixtures/test-cases.jsonInput → expected output pairs
scoring.mdScoring methodology
scores.mdScore history log
scripts/(optional) Copies of referenced scripts/tools for analysis

Usage

  1. Invoke: /autoagent
  2. Answer setup questions
  3. Monitor scores.md for progress
  4. Copy improvements to original when satisfied
  5. Stop cron when done

Stopping

  • User can stop cron anytime
  • Auto-stops if score plateaus for 10 runs
  • Check scores.md for progress

Key Principles

  • Non-destructive: Original guidance stays in guidance-under-test.md
  • Learn from history: Don't repeat failed approaches
  • Be specific: Vague changes won't score well
  • Human in the loop: User defines success criteria, can override plateau detection

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.47%
按下载量换算1,878

安全审计

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills