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

improve-skill提高技能

Agent Skill

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

总安装

15,924

周安装

684

GitHub Stars

公开资料未说明

下载量

5,581
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install improve-skill

简介

评估现有技能对当前项目的适配性并提出改进建议。

  • 支持代码库对比与具体优化方案生成。
  • 适合技能扩展与性能调优场景。improve-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装命令:openclaw skills install improve-skill。
  • 建议结合项目实际需求验证建议可行性。

SKILL.md

name
improve-skill
description
>-
Meta-skill
evaluate any Factory Droid skill against the current project codebase
user-invocable
true
disable-model-invocation
false

Improve Skill — The Meta-Skill

Evaluate an existing Factory Droid skill against the current project codebase and produce concrete, prioritized improvement recommendations.

When to Use

  • After first invocation of a skill — "that worked, but it missed X"
  • When a project evolves and a skill hasn't kept up
  • When onboarding a skill from another project into a new codebase
  • When the user says "make this skill better" or "this skill doesn't handle Y"
  • Auto-invocable: the droid can suggest improvements after observing skill friction

Inputs

When invoked, determine which skill to evaluate:

  1. Explicit: /improve-skill ghost-catalog — user names the skill
  2. Contextual: If the user just invoked a skill and says "improve it" — use the last invoked skill
  3. Discovery: If no skill is named, list all installed skills and ask which one to evaluate

Evaluation Framework

Run these 6 analyses in order. For each, produce findings and a verdict (STRONG / ADEQUATE / WEAK / MISSING).

1. Skill Definition Audit

Read the skill's SKILL.md and all supporting files.

Check for:

  • Clarity: Are instructions unambiguous? Could a droid follow them without guessing?
  • Completeness: Are all commands documented with inputs, outputs, and edge cases?
  • Structured inputs: Does the skill define what it expects (paths, flags, formats)?
  • Success criteria: Does the skill define what "done" looks like?
  • Error handling: Does the skill say what to do when things fail?
  • Verification step: Does the skill require confirmation that it worked?

Report gaps as specific line-level observations, not vague suggestions.

2. Codebase Fit Analysis

Scan the current project to understand its shape:

  • File types: What extensions exist? Does the skill handle all of them?
  • Directory structure: How deep? How many top-level dirs? Does the skill's path logic match?
  • Naming conventions: camelCase, kebab-case, PascalCase? Does the skill respect them?
  • Framework patterns: Next.js App Router, Flask blueprints, monorepo? Does the skill understand the framework?
  • Scale: How many files? Does the skill handle the volume efficiently (batch vs one-by-one)?

Identify blind spots — file types, directories, or patterns the skill doesn't account for but the project uses.

3. Edge Case Discovery

Look for things that would break or confuse the skill:

  • Unusual files: Files with no extension, dotfiles, generated files, symlinks
  • Encoding issues: Non-UTF-8 files, BOM markers, mixed line endings
  • Directive conflicts: 'use client', shebangs (#!/usr/bin/env), pragma comments (@ts-nocheck)
  • Framework magic: Auto-generated files (.next/, __generated__/), barrel exports (index.ts)
  • Binary in source dirs: Images in public/, fonts in assets/, SQLite in data/
  • Monorepo patterns: Multiple package.json, nested .gitignore, workspace configs

For each edge case found in the current project, note whether the skill handles it.

4. Output Quality Assessment

If the skill has been invoked before and produced artifacts (files, DB entries, reports), evaluate them:

  • Accuracy: Are generated descriptions meaningful or generic ("Module for foo")?
  • Consistency: Same patterns get same treatment across the codebase?
  • Completeness: Did it miss any files it should have caught?
  • Formatting: Headers well-formed? DB entries normalized? Reports readable?

If no prior invocation exists, simulate a dry run by analyzing what the skill WOULD produce for 5-10 representative files.

5. Composability Check

How well does this skill play with others?

  • Data output: Does it produce machine-readable output other skills can consume?
  • Idempotency: Safe to run twice? Does it detect prior runs?
  • State management: Where does it store state? Is that documented?
  • Cross-skill hooks: Could other skills trigger this one? Could this one feed into others?
  • Token efficiency: Does the skill load too much context? Could supporting files be trimmed?

6. User Experience Review

From the user's perspective:

  • Invocation friction: Is /skill-name enough or does the user need to remember flags?
  • Feedback quality: Does the skill report what it did clearly?
  • Progressive disclosure: Can a user start simple and go deeper?
  • Recovery: If the skill makes a mistake, how hard is it to undo?
  • Documentation: Could a new user understand the skill from SKILL.md alone?

Output Format

After running all 6 analyses, produce a structured improvement report:

SKILL IMPROVEMENT REPORT
========================
Skill:    [name]
Project:  [current project]
Date:     [today]
Agent:    [agent_id]

SCORECARD
---------
1. Definition Clarity:   [STRONG/ADEQUATE/WEAK/MISSING]
2. Codebase Fit:         [STRONG/ADEQUATE/WEAK/MISSING]
3. Edge Case Coverage:   [STRONG/ADEQUATE/WEAK/MISSING]
4. Output Quality:       [STRONG/ADEQUATE/WEAK/MISSING]
5. Composability:        [STRONG/ADEQUATE/WEAK/MISSING]
6. User Experience:      [STRONG/ADEQUATE/WEAK/MISSING]

Overall: [X/6 STRONG]

TOP IMPROVEMENTS (prioritized by impact)
-----------------------------------------
1. [HIGH] Title
   Problem: ...
   Fix: ...
   Effort: [trivial / small / medium / large]

2. [HIGH] Title
   Problem: ...
   Fix: ...
   Effort: ...

3. [MEDIUM] Title
   ...

EDGE CASES FOUND IN THIS PROJECT
----------------------------------
- [handled/unhandled] Description

SUGGESTED SKILL.MD PATCHES
----------------------------
[Specific text additions/changes to the skill definition]

After the Report

Ask the user which improvements to implement. Then:

  1. Edit the skill's SKILL.md with the approved changes
  2. Add or update supporting files if needed
  3. Re-run the skill on a sample of files to verify the improvement
  4. Update the improvement report with results

Auto-Invocation Guidance

This skill should be considered when:

  • A user says "that didn't work right" or "it missed something" after a skill runs
  • A skill produces generic or inaccurate output
  • The user asks "how can we make this better"
  • The droid observes repeated manual corrections after a skill invocation
  • A skill is being used in a project type it wasn't originally designed for

Principles

  • Be specific, not vague: "Add .vue to the CMP category in line 47 of SKILL.md" not "consider more file types"
  • Prioritize by impact: What change helps the most files / saves the most tokens / prevents the most errors?
  • Show evidence: Every finding should reference a specific file, line, or pattern in the project
  • Respect the user's design: Improve the skill's execution of its stated purpose, don't redesign it
  • Measure before and after: If possible, show what changes quantitatively (files caught, accuracy %, etc.)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

91.3%
按下载量换算5,095

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills