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

oh-my-skill哦,我的技能

Agent Skill

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

总安装

5,357

周安装

221

GitHub Stars

公开资料未说明

下载量

1,750
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install oh-my-skill

简介

自动生成并保存可重复使用的 AI 技能。

  • 适合复杂任务后的技能沉淀与复用场景。
  • 通过 clawhub 安装,安装时按仓库提供的命令执行,建议先在测试环境验证依赖、命令权限和文件改动范围。
  • 注意工具调用次数触发条件。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • oh-my-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
oh-my-skill
description
Automatically generate and save a reusable skill after AI agent successfully completes a complex task involving 5 or more tool calls. Use this skill whenever a multi-step workflow has just been completed successfully — such as document creation pipelines, data transformation flows, research-and-write tasks, multi-file editing workflows, or any agentic sequence that involved planning, tool use, and structured output. Trigger this skill proactively at the end of complex task completions even if the user hasn't asked for it, offering to save the workflow as a reusable skill. Also trigger when users say things like "save this as a skill", "make this repeatable", "turn this into a skill" or "oh-my-skill".
metadata
openclaw
requires
bins

oh-my-skill: Auto-Skill Generator

Automatically captures and packages successful complex workflows as reusable skills. *Warning*: Make sure your session doesn't contain any highly private data. If it's already been sent to Claude, then that's it. you could modify the Desensitize process to match your scence/case.

When to Trigger

Trigger proactively after completing any task that involved:

  • 5 or more distinct tool calls
  • A clear sequence of steps (plan → execute → verify)
  • A structured or repeatable output (file, report, transformation, research summary)
  • Tool combinations that aren't obvious and took iteration

After such a task completes successfully, say something like:

"That was a fairly involved workflow — want me to save it as a reusable skill so you can repeat it easily next time?"

If the user says yes, or explicitly asks to generate a skill, proceed with the steps below.


Workflow: Capturing a Skill from a Completed Task

Step 1: Analyze the Session

Review the current conversation and extract:

  1. What was accomplished — the goal and final output
  2. The tool call sequence — ordered list of tools used and why
  3. Key decisions made — branch points, error recovery, formats chosen
  4. Inputs required — what the user had to provide (files, preferences, constraints)
  5. Output format — what was produced and where it was saved

Look for patterns: What made this hard? What would be needed to repeat it?

Step 1b: Desensitize the Session

Before extracting any content, run the session text through the masking script to strip sensitive data:

python3 ~/.openclaw/workspace/skills/oh-my-skill/scripts/desensitize.py session.txt clean_session.txt

Or pipe text directly:

echo "my text" | python3 ~/.openclaw/workspace/skills/oh-my-skill/scripts/desensitize.py

The script applies two layers of masking:

Literal replacements (named individuals → generic labels):

  • Bill GatesA man
  • Add more entries in the LITERAL_REPLACEMENTS list in desensitize.py

Pattern-based masking (regex, auto-detected)

Use the cleaned text as the source for all subsequent steps.

Step 2: Draft the Skill

Write a SKILL.md with:

---
name: <kebab-case-name>
description: <What it does, when to trigger. Be specific and "pushy" — list all the user phrases and contexts that should trigger this skill.>
---

# <Skill Title>

<One-paragraph summary of what this skill does and why it's valuable.>

## Inputs

List what the user must provide:
- File paths / uploads
- Preferences or configuration
- Any required context

## Workflow

Step-by-step instructions Claude should follow, referencing tool calls and decision points extracted from the session.

### Step 1: ...
### Step 2: ...
...

## Output

What gets produced, in what format, saved where.

## Notes / Edge Cases

Anything learned from the original run: gotchas, fallbacks, format quirks.

Naming conventions:

  • Use kebab-case for the name
  • Keep it specific: pdf-to-summary-docx not document-helper
  • Reflect the *domain + action*: research-and-cite, excel-data-cleaner, slide-deck-from-outline
  • Always append a 4-digit UUID suffix to the name: e.g. pdf-to-summary-docx-4f2a, excel-data-cleaner-9c31
  • Generate the suffix randomly: python3 -c "import uuid; print(str(uuid.uuid4())[:4])"

Step 3: Save the Skill

Save to ~/.openclaw/workspace/skills/<skill-name>/SKILL.md.

If the task also used supporting scripts or reference files, save those under:

~/.openclaw/workspace/skills/<skill-name>/scripts/
~/.openclaw/workspace/skills/<skill-name>/references/
~/.openclaw/workspace/skills/<skill-name>/assets/

Step 4: Confirm with the User

Show the user:

  • The skill name and description
  • A brief summary of the workflow it captures

Ask: "Does this look right? Want me to adjust the name, description, or any steps?"


Quality Checklist

Before saving, verify:

  • [ ] Description is specific enough to trigger reliably (not vague like "helps with files")
  • [ ] Workflow steps are ordered and actionable
  • [ ] Inputs section lists everything the user must supply
  • [ ] Edge cases from the original run are documented
  • [ ] Skill name is unique and descriptive

Example Output

After a session where Claude built a Word report from a PDF + web research:

---
name: pdf-research-to-docx-report
description: Build a polished Word document report by combining content from an uploaded PDF with live web research. Use this whenever a user uploads a PDF and wants a written report, briefing, or summary that also pulls in current data from the web. Trigger on phrases like "make a report from this PDF", "write me a briefing", "research and write a doc".
---

# PDF + Research → DOCX Report

Combines PDF extraction, web search, and Word document generation into a single pipeline.

## Inputs
- Uploaded PDF file
- Report topic / framing question
- Desired length and tone (optional)

## Workflow

### Step 1: Read the skill files
Load `docx/SKILL.md` for Word generation instructions.

### Step 2: Extract PDF content
Use `bash_tool` to extract text from the PDF via `pdftotext` or Python `pdfplumber`.

### Step 3: Web research
Run 3–5 `web_search` calls to supplement the PDF with current data.

### Step 4: Outline and draft
Combine findings into a structured outline, then write the full report draft.

### Step 5: Generate DOCX
Follow `docx/SKILL.md` instructions to produce a styled Word document.

### Step 6: Present
Copy to `/mnt/user-data/outputs/` and call `present_files`.

## Output
A `.docx` report file, downloadable by the user.

Notes

  • This skill is self-referential: it was itself generated using the oh-my-skill pattern.
  • Keep captured skills focused — one workflow per skill is better than one mega-skill.
  • If the session was messy (lots of retries, dead ends), simplify the skill to the *successful path only*.
  • If the user ran the same workflow before and already has a skill for it, offer to *update* the existing skill instead of creating a duplicate.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.95%
按下载量换算1,294

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills