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

skill-garden技能花园

Agent Skill

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

总安装

2,002

周安装

86

GitHub Stars

公开资料未说明

下载量

702
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install skill-garden

简介

skill-garden 通过被动观察和批量分析自动提升已安装技能效果。

  • 适合在 OpenClaw 中希望持续优化技能表现或发现改进点时使用。
  • 可在使用任意技能后或响应“gro”指令时激活学习机制。
  • 安装前需评估其对系统资源的占用情况,注意可能增加后台计算负载。
  • 建议定期检查更新日志了解模型迭代情况。

SKILL.md

name
skill-garden
description
Automatically improves installed skills through passive usage observation and periodic batch analysis. Activates after any skill is used, or when you say grow / improve skill / analyze skills. Uses a three-layer token-efficient architecture: lightweight structured logging after each skill use, weekly isolated-agent batch analysis, and targeted SKILL.md edits for high-confidence improvements. Designed to be invisible - runs passively, accumulates evidence, improves skills over time. Handles its own cron scheduling, dashboard generation, and proposal tracking. Use whenever you want skills to get better automatically through use.

🌿 Skill Garden — Skill Evolution Engine

*"Every skill should get better the more you use it."*

Philosophy

Skill Garden treats skill improvement as a continuous, invisible process — not a special operation. It runs passively in the background, accumulating observations from every skill invocation, then periodically synthesizes them into concrete improvements.

Key design principles:

  • Token-efficient: Lightweight structured logs, batch processing, no real-time overhead
  • User-in-control: High-confidence changes auto-apply; uncertain ones ask first
  • Transparent: Every change is explained, nothing happens silently without explanation
  • Self-contained: Manages its own memory, dashboard, proposals, and cron schedule

Three-Layer Architecture

Layer 1 — Passive Observation (near-zero token cost)
  Every skill invocation → 1-line structured log entry
  Abnormal outcomes (FAIL/SLOW) → detailed log with evidence

Layer 2 — Weekly Batch Analysis (isolated agent, ~5-15 min)
  Read all accumulated logs
  Run evaluation engine across 6 dimensions
  Generate specific improvement proposals

Layer 3 — Targeted Modification (low frequency, high precision)
  Confidence ≥ 90% → apply immediately, notify user
  Confidence 70–89% → apply with [experimental] tag
  Confidence 50–69% → write to proposals, ask user
  Confidence < 50% → log as observation only

When This Skill Activates

Trigger 1 — After every skill use (automatic, passive): When any skill finishes executing, immediately log the outcome using the format in references/usage_tracker.md. This is the most important layer — it costs almost nothing and feeds everything else.

Trigger 2 — On user request:

  • "grow this skill" / "improve skill" / "optimize skill"
  • "why did this fail" / "analyze this skill"
  • "run skill analysis" / "check my skills"
  • "skill health" / "skill dashboard"

Trigger 3 — On schedule (automatic, every Sunday 20:00): An isolated agent runs batch_analyze.py and generate_report.py, applies high-confidence improvements, and sends you a summary.

Layer 1: Passive Observation

After any skill finishes (any outcome: OK, FAIL, PARTIAL, SLOW, SKIP), immediately write a structured log. Use log_insight.py or write directly to the skill's references/usage_log.md.

Log Entry Format

For OK outcomes with nothing notable (minimal tokens):

## YYYY-MM-DD HH:MM
Trigger: [trigger in ≤10 words]
Outcome: OK
Signal: [one-line finding or "No issues"]

For PARTIAL, FAIL, SLOW outcomes (always log all fields):

## YYYY-MM-DD HH:MM

### Trigger
[What the user asked for, ≤10 words]

### Outcome
OK | PARTIAL | FAIL | SLOW | SKIP

### Signal
[One specific phrase: what this tells us about the skill]
Examples:
  - "Covered: standard use case works perfectly"
  - "Missing: error handling for network timeouts"
  - "Ambiguous: step 3 could be interpreted two ways"
  - "Outdated: API version in skill doesn't match current"

### Evidence
[1-2 sentences. Quote or paraphrase exact output/error. Be specific.]

### Flags
[Comma-separated tags: [new_trigger] [missing_coverage] [confusing_step]
 [outdated_info] [token_heavy] [edge_case] [user_workaround_used]
 [config_stale] [api_change] [Covered] [success_boost]]

Using log_insight.py

# Quick OK log (minimal)
python3 ~/.openclaw/workspace/skills/skill-garden/scripts/log_insight.py \
  --skill github-trending-summary \
  --trigger "daily top 5 repos" \
  --outcome OK \
  --signal "Covered: standard case"

# Detailed failure log
python3 ~/.openclaw/workspace/skills/skill-garden/scripts/log_insight.py \
  --skill banxuebang-helper \
  --trigger "check homework" \
  --outcome FAIL \
  --signal "Missing: semester selector not dynamic" \
  --evidence "Config hardcoded to 2024-2025 but API shows 2025-2026 is current." \
  --flags "missing_coverage,config_stale" \
  --mark-landmark "SkillImproved"

Rule of thumb: If you had to pause, reconsider, or work around something — log it with full detail. If it just worked perfectly — log minimally. The goal is signal, not noise.

Layer 2: Weekly Batch Analysis

Run manually or wait for the Sunday cron trigger.

Manual Trigger

Say: "run skill analysis" or "grow all skills"

The analysis does the following in order:

  1. Scan all skills — read every references/usage_log.md
  2. Evaluate each skill across 6 dimensions (see references/evaluation_engine.md)
  3. Generate proposals — for each skill with score below threshold
  4. Apply high-confidence changes — auto-edit SKILL.md for confident improvements
  5. Update dashboard — rewrite references/dashboard.md
  6. Notify user — send summary message

Running Scripts Directly

# Full batch analysis (evaluate all skills, generate proposals)
python3 ~/.openclaw/workspace/skills/skill-garden/scripts/batch_analyze.py

# Analyze one skill only
python3 ~/.openclaw/workspace/skills/skill-garden/scripts/batch_analyze.py --skill github-trending-summary

# Dry run (proposals only, don't apply)
python3 ~/.openclaw/workspace/skills/skill-garden/scripts/batch_analyze.py --dry-run --min-confidence 70

# Generate/refresh dashboard
python3 ~/.openclaw/workspace/skills/skill-garden/scripts/generate_report.py

# Output as JSON (for integrations)
python3 ~/.openclaw/workspace/skills/skill-garden/scripts/generate_report.py --output json

Layer 3: Applying Improvements

The Six Evaluation Dimensions

DimensionWeightWhat It Measures
Coverage30%Does the skill's description match how it's actually used?
Completeness25%Are all necessary steps present? Do FAIL events reveal missing coverage?
Clarity20%Are steps unambiguous? Are there [confusing_step] or [user_workaround_used] flags?
Currency15%Is the information still accurate? Are there [outdated_info] or [config_stale] flags?
Efficiency10%Is it unnecessarily verbose or token-heavy?

See references/evaluation_engine.md for the full evaluation algorithm, scoring thresholds, and confidence calibration guide.

Applying an Edit to SKILL.md

When a proposal meets the confidence threshold:

  1. Read the current SKILL.md
  2. Identify the exact text to replace using edit tool
  3. Write the improved version
  4. Add a brief changelog note at the top of the edit:
   <!-- Auto-improved by Skill Garden: YYYY-MM-DD
        Reason: [confidence]% confidence — [evidence summary] -->
  1. Update references/improvement_proposals.md to mark as applied
  2. Notify the user with a summary of what changed

Editing Checklist

Before applying any edit:

  • [ ] Change is specific and testable (not vague advice)
  • [ ] New text is more concrete than old text (examples > statements)
  • [ ] If adding a step, verify it doesn't contradict existing steps
  • [ ] If removing text, verify no other part of the skill depends on it
  • [ ] If changing description, verify all log triggers are now covered
  • [ ] Change addresses the flagged evidence, not just the symptom

Dashboard

The dashboard (references/dashboard.md) shows:

  • Overall skill ecosystem health
  • Per-skill scores across all 6 dimensions
  • Recent signals and flags
  • Pending proposals
  • Weekly outcome distribution
  • Recent landmark events

Regenerate with:

python3 ~/.openclaw/workspace/skills/skill-garden/scripts/generate_report.py

Cron Setup

Set up a weekly Sunday 20:00 analysis run:

openclaw cron add \
  --name "Skill Garden Weekly Analysis" \
  --schedule '{"kind":"cron","expr":"0 20 * * 0","tz":"Asia/Shanghai"}' \
  --sessionTarget isolated \
  --payload '{"kind":"agentTurn","message":"Run full skill analysis: execute batch_analyze.py then generate_report.py and notify me of any improvements applied.","timeoutSeconds":900}'

Or manually trigger with:

grow all skills

Reference Files

FilePurpose
references/usage_tracker.mdFull logging schema, log rotation, landmark events
references/evaluation_engine.mdScoring algorithm, thresholds, confidence calibration
references/improvement_examples.mdReal improvement examples with full context
references/dashboard.mdAuto-generated growth dashboard (don't edit manually)
references/master_log.mdGrower's own lightweight master log
scripts/log_insight.pyCLI for writing log entries
scripts/batch_analyze.pyCore analysis engine
scripts/generate_report.pyDashboard generator

Examples in Context

Example 1: Passive Log — Skill Works Perfectly

User: "给我推荐一首今天听的歌" Skill: daily-song-recommender — succeeds, email sent Your action: Write one-line abbreviated log:

## 2026-04-22 09:15
Trigger: daily song recommendation
Outcome: OK
Signal: Covered: standard use case, no issues

Example 2: Passive Log — Skill Fails Due to Missing Coverage

User: "查一下这周的数学作业" Skill: banxuebang-helper — API error: semester field stale Your action: Write full structured log:

## 2026-04-22 21:30

### Trigger
banxuebang: check math homework

### Outcome
FAIL

### Signal
Missing: semester config hardcoded, not dynamic

### Evidence
API returned {"code": 500, "msg": "semester not found"}.
Config in skill has "2024-2025下学期" but actual is "2025-2026下学期".

### Flags
[missing_coverage] [config_stale]

Example 3: Passive Log — New Trigger Not in Description

User: "爬一下GitHub今日热榜发到我邮箱" Skill: github-trending-summary — works, but user's phrasing not in description Your action: Write log with [new_trigger] flag:

## 2026-04-22 10:00

### Trigger
github-trending-summary: crawl and email

### Outcome
OK

### Signal
Covered: but user said "爬" not in description triggers

### Evidence
Skill handled it fine, but description doesn't mention "爬" as a trigger phrase.

### Flags
[new_trigger]

Example 4: User Requests Analysis

User: "run skill analysis" Your action:

  1. Run batch_analyze.py --dry-run
  2. Read the proposals from output
  3. Apply high-confidence changes (≥90%) via edit tool
  4. Run generate_report.py to refresh dashboard
  5. Message user: "Found N improvement(s) — applied X automatically, Y need your review"

Example 5: Weekly Cron Fires (Sunday 20:00)

Isolated agent runs full cycle:

  1. batch_analyze.py scans all 20 installed skills
  2. Finds github-trending-summary: 1 [new_trigger] flag, coverage 66%
  3. Generates proposal with 65% confidence → written to proposals
  4. Updates dashboard
  5. You receive: "🌿 Weekly analysis done. github-trending-summary needs description update (65% confidence — needs more data to auto-apply). Review?"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.73%
按下载量换算609

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills