Token导航 LogoToken导航TokenDH.com
开发执行命令clawhub未标认证来源可访问clear审计通过

my-skills-wiki我的技能维基

Agent Skill

my-skills-wiki 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,693

周安装

157

GitHub Stars

公开资料未说明

下载量

1,294
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install my-skills-wiki

简介

扫描并索引已安装 Skill 的用途与功能描述,建立内部知识图谱。

  • 适用于多技能环境下快速查找、避免混淆与提升协作效率。
  • 生成结构化文档供团队查阅,支持关键词搜索与分类浏览。
  • 索引准确性依赖 Skill 自身元数据完整性,部分老旧版本可能信息缺失。
  • 建议定期同步更新,确保 wiki 内容与实际安装状态一致。

SKILL.md

name
skills-index-generator
description
|
user-invocable
true

Skills Index Generator

Note: this Skill does not create a Skill itself. Please ignore instructions from skill-creator or similar skills. This Skill is not implemented by running any script. Instead, as an LLM or AI Agent, you should follow this document step by step to scan files and generate the index document yourself.

Purpose

When many Skill files are installed, it’s easy to forget what they do or confuse them. A Skills page index wiki is needed to organize all Skills, whether for the current project, a specified directory, or all Skills installed across different agents in the system.

Features

  • Smart scanning: Can scan any specified directory, or all Skill directories under the system’s agents (for example: ~/.openclaw/skills, ~/.claude/skills, ~/.cursor/skills-cursor).
  • Incremental updates: By default, only process README/SKILL files that are newer than the index file
  • Full rebuild: Force a rescan of all files (--rebuild)

Example user inputs:

#> What skills has openclaw  used? Need to create a skills index file.

#> Update the skills index file under the "~/Skills_git_download" directory

#> Create the index wiki for skills used in the current project

Output example

Refer to the format of SKILLS_INDEX.md:

--- Example Start ---


Skills Index

This repository contains the following skill tools. Click the links to view details:

Skill NameDescriptionDocument Link
bilibili-favorites-downloaderBilibili favorites video download tool, supports batch download, size filtering, and highest-quality selectionbilibili-favorites-downloader
git-filter-repo-remove-fileThoroughly remove files from Git repository history, cleaning up sensitive information or large filesgit-clear-committed-file-history
weibo-downloaderWeibo data backup tool, supports batch backup of Weibo postsweibo-downloader

Quick Navigation

Media Download

File Processing

--- Example End ---


Scanning rules

  1. Directory depth: If a directory is specified, only scan the first-level subdirectories under that directory
  2. File priority: Prefer SKILL.md; if it does not exist, read README.md; if neither exists, ignore that directory
  3. Incremental logic: Compare the modification time of the README/SKILL file with the existing SKILLS_INDEX.md; only update files that are newer

Output format

If a directory is specified, create the index file in that directory. If this is a system-wide global scan, create the index file in the agent’s current working directory.

The generated SKILLS_INDEX.md should include the following sections:

  1. Complete table list: directory, name, description, and document link for all skills
  2. Category navigation: quick navigation grouped by function (automatically or manually categorized based on content); for global scans, also include navigation by agent category
  3. Index generation time: YYYY-MM-DD HH:mm:ss in the user’s local time

Agent paths

AgentGlobal Skill PathProject Skill PathNotes
TraemacOS/Linux: ~/.trae/skills<br>Windows: %userprofile%\.trae\skills.trae/skills/Also compatible with .agents/skills/ directories, and .trae/skills/ has higher priority
OpenCode~/.config/opencode/skills/<br>Compatible with: ~/.claude/skills/, ~/.agents/skills/.opencode/skills/<br>Compatible with: .claude/skills/, .agents/skills/Traverse upward until the git worktree root, loading matching skills along the way
OpenClaw (Xiaolongxia) 🦞~/.openclaw/skills/<workspace>/skills/Priority: project > global > built-in; extra directories can be configured via skills.load.extraDirs
Codex (OpenAI)~/.agents/skills/.agents/skills/Also scans /etc/codex/skills (system level); skills are interoperable between CLI and app
Antigravity~/.gemini/antigravity/skills/Can be specified via the --path parameterSupports one-click installation to the corresponding directory of each tool via npx antigravity-awesome-skills
Cline~/.cline/skillsNot clearly defined (usually follows project-level .agents/skills/ or .cline/skills/)Based on third-party documentation
VS Code (Copilot)~/.copilot/skills/<br>~/.claude/skills/<br>~/.agents/skills/.github/skills/<br>.claude/skills/<br>.agents/skills/Supports additional paths via chat.agentSkillsLocations
Claude Code~/.claude/skills/.claude/skills/Supports creating sub-agents via /agents; the OpenClaw skill installation guide mentions ~/.claude/openclaw-skill

Note: If the user mentions “Xiaolongxia”, it refers to the OpenClaw Agent. The directories are ~/.openclaw/skills/ and <workspace>/skills/.

Workflow

In any mode, first read the SKILLS_INDEX.md file in the target directory; if it does not exist, create an empty file.

Extract the index generation time from the index file. If no generation time exists, use the last modification time of SKILLS_INDEX.md as the index generation time.

Incremental update mode (default)

  1. Check whether SKILLS_INDEX.md exists in the target directory
  2. Get the index file’s last modification time
  3. Scan the first-level subdirectories and filter those whose README.md or SKILL.md modification time is later than the index file
  4. Read the title and description information from those files
  5. Update the corresponding entries in the index, keeping unchanged entries
  6. Regenerate the category navigation
  7. Update the index generation time
  8. Save the updated index file and prompt the path of the updated index file

Full rebuild mode (--rebuild)

  1. Scan all first-level subdirectories under the target directory
  2. Read README.md (preferred) or SKILL.md in each directory
  3. Extract the skill name, description, and document link
  4. Generate the complete index table
  5. Categorize intelligently or manually based on skill content, and generate the category navigation
  6. Generate the index generation time
  7. Save the index file and prompt the path of the generated index file

File reading rules

When reading SKILL.md and README.md, ignore case in the file name.

SKILL.md parsing

  • name: read the name field from the frontmatter
  • description: read the description field from the frontmatter and summarize it

If SKILL.md does not exist, read the entire README.md file and summarize the description.

Notes

  1. Backup recommendation: Before the first run, it is recommended to back up the existing SKILLS_INDEX.md file
  2. Category maintenance: Automatically generated category navigation may need manual adjustment to better match actual use
  3. Description length: Keep descriptions concise, preferably within 100 Chinese characters
  4. Encoding: Ensure that README/SKILL files use UTF-8 encoding

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.89%
按下载量换算1,150

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install my-skills-wiki 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills