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

find-souls寻找灵魂

Agent Skill

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

总安装

8,087

周安装

324

GitHub Stars

1

下载量

2,618
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install find-souls

简介

用于从 Agent Souls 库中搜索并安装 AI 角色提示(Persona Prompts)。

  • 适合用户希望扮演历史人物、虚构角色或专家身份时使用。
  • 返回匹配的角色提示列表及安装方式,支持快速切换人格设定。
  • 需确认角色提示来源合法性与适用场景,避免误导或不当使用。
  • 安装前建议评估是否涉及内容生成、网络请求或用户数据交互。

SKILL.md

name
find-souls
description
>-
version
0.2.0

Find Souls

Search the Agent Souls library (332+ AI persona prompts) and install a SOUL.md into the current project.

Workflow

Step 1: Search

Load the soul index with local caching (cache file: ~/.cache/agent-souls/search.json):

  1. Check if ~/.cache/agent-souls/search.json exists and its modification time is less than 1 day old.

- Use stat to check the file's modification time.

  1. If the cache is fresh (< 1 day old): read the local file directly with the Read tool.
  2. If the cache is stale (>= 1 day old) or missing:

- WebFetch https://agent-souls.com/search.json to download it. - Create directory ~/.cache/agent-souls/ if it doesn't exist. - Write the downloaded JSON to ~/.cache/agent-souls/search.json.

The JSON is an array of objects with these fields:

  • name_en — English display name
  • name_zh — Chinese display name
  • url — path like /real_world/confucius/
  • category_en — "Real World", "Virtual World", or "Expert Personas"
  • category_zh — Chinese category
  • tags / tags_en / tags_zh — keyword arrays

Match the user's query against name_en, name_zh, tags, tags_en, tags_zh, and category_en / category_zh. Show the top matches (up to 10) in a numbered list with name, category, and tags. Ask the user to pick one.

If no matches are found:

  1. If using a cached search.json, tell the user the cache may be outdated and offer to refresh it (delete the cache and re-download). If after refresh there are still no results, go to step 2.
  2. Tell the user this soul doesn't exist yet, and suggest they submit a request at: https://github.com/wklken/souls/issues

Step 2: Determine Language

  • If the user's conversation is in Chinese, use SOUL.md (Chinese version).
  • If the user's conversation is in English or unknown, use SOUL.en.md (English version).
  • The user can explicitly request a language.

Step 3: Download

Construct the download URL:

https://agent-souls.com{url}SOUL.md       # Chinese
https://agent-souls.com{url}SOUL.en.md    # English

Where {url} is the url field from search.json (e.g. /real_world/confucius/).

Use WebFetch to download the raw content of the chosen SOUL file.

Step 4: Backup & Install

Before replacing, always back up the existing SOUL.md:

  1. Check if SOUL.md exists in the current working directory.
  2. If it exists, create .soul_backups/ directory if it doesn't exist, then:

- First time only: if .soul_backups/SOUL.md.original does not exist, copy SOUL.md to .soul_backups/SOUL.md.original. This preserves the user's original persona and is never overwritten. - Every time: copy SOUL.md to .soul_backups/SOUL.md.<slug> where <slug> is the soul's unique identifier extracted from the url field (the last non-empty path segment, e.g. /virtual_world/sun_wukong/sun_wukong, so the backup file is SOUL.md.sun_wukong). If a backup with the same slug already exists, overwrite it (only the latest version of each soul needs to be kept).

  1. Write the downloaded content to SOUL.md in the current working directory.
  2. Tell the user:

- Which soul was installed (name + category). - That they should reset the conversation (e.g. /clear or start a new session) to load the new persona. - That the previous SOUL.md was backed up and can be restored with this skill. - (First time only) That the original SOUL.md has been saved and can be restored at any time.

Step 5: Rollback (if requested)

When the user asks to revert / rollback / restore the previous SOUL.md:

  1. List all files in .soul_backups/ sorted alphabetically.
  2. Show them to the user with a numbered list. Each backup is named SOUL.md.<slug> (e.g. SOUL.md.sun_wukong, SOUL.md.confucius), making it easy to identify which soul each backup contains. Highlight SOUL.md.original as "[Original]" if it exists — this is the user's initial persona before any soul was installed.
  3. Ask the user which one to restore (the user can specify by slug name; if user says "original" / "最初" / "初始", use SOUL.md.original).
  4. Back up the current SOUL.md the same way (so rollback is also reversible).
  5. Copy the selected backup to SOUL.md.
  6. Tell the user to reset the conversation to reload.

Notes

  • The .soul_backups/ directory keeps a full history. The user can manually delete old backups.
  • If no SOUL.md exists and no backup exists, skip the backup step.
  • Always confirm with the user before overwriting SOUL.md.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

85.67%
按下载量换算2,243

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills