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

soultrace灵魂追踪

Agent Skill

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

总安装

7,588,944

周安装

319,418

GitHub Stars

12

下载量

2,657,408
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/soultrace-ai/soultrace-skill --skill soultrace

简介

soultrace 用于查找、检索和筛选相关信息,支持跨会话的行为轨迹追踪。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中还原决策路径与问题排查。
  • 通过 npx skills add 命令从 GitHub 仓库安装,日志存储方式需符合安全规范。
  • 使用前请了解其对内存与持久化资源的需求。
  • soultrace 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

SoulTrace Personality Assessment

Take an adaptive personality assessment through the soultrace API. Answer 24 questions on a 1-7 Likert scale and receive your personality archetype based on a 5-color psychological model.

API Endpoint

POST https://soultrace.app/api/agent

No authentication required. Rate limited to 100 requests/hour per IP.

How It Works

The API is stateless. You pass all accumulated answers with every request, and the server replays the Bayesian inference to select the next optimal question.

Step 1: Start the test

Send an empty answers array to get the first question:

curl -X POST https://soultrace.app/api/agent \
  -H "Content-Type: application/json" \
  -d '{"answers": []}'

Response:

{
  "status": "in_progress",
  "question": {
    "id": 42,
    "text": "I find deep satisfaction in mastering complex systems."
  },
  "currentDistribution": {
    "white": 0.2,
    "blue": 0.2,
    "black": 0.2,
    "red": 0.2,
    "green": 0.2
  },
  "entropy": 2.322,
  "progress": { "answered": 0, "total": 24 }
}

Step 2: Answer questions

The user answers each question on a scale of 1-7:

  • 1 = Strongly Disagree
  • 4 = Neutral
  • 7 = Strongly Agree

Append the answer and send all answers so far:

curl -X POST https://soultrace.app/api/agent \
  -H "Content-Type: application/json" \
  -d '{"answers": [{"questionId": 42, "score": 6}]}'

Keep accumulating answers. Each response gives the next question.

Step 3: Get results

After 24 answers, the response automatically returns the final result:

{
  "status": "complete",
  "resultId": "abc-123-def",
  "resultUrl": "https://soultrace.app/en/results/abc-123-def",
  "distribution": {
    "white": 0.15,
    "blue": 0.35,
    "black": 0.25,
    "red": 0.10,
    "green": 0.15
  },
  "entropy": 1.89,
  "archetype": {
    "key": "blue-black",
    "name": "Strategist",
    "alignmentScore": 87.3,
    "coreDynamic": "...",
    "strengths": ["..."],
    "weaknesses": ["..."]
  },
  "topMatches": [
    { "key": "blue-black", "name": "Strategist", "alignmentScore": 87.3 },
    { "key": "blue", "name": "Rationalist", "alignmentScore": 82.1 },
    { "key": "black-blue", "name": "Operator", "alignmentScore": 78.5 }
  ],
  "shadowColors": [
    { "color": "red", "score": 0.10 },
    { "color": "green", "score": 0.15 }
  ],
  "progress": { "answered": 24, "total": 24 }
}

Agent Interaction Protocol

When a user asks to take the personality test:

  1. Start by calling the API with {"answers": []}.
  2. Present each question to the user clearly. Tell them to answer 1-7 (1=Strongly Disagree, 4=Neutral, 7=Strongly Agree).
  3. Collect the user's numeric answer (1-7). If they give a non-numeric or descriptive answer, map it to the scale:

- "strongly disagree" / "not at all" → 1 - "disagree" / "not really" → 2 - "slightly disagree" → 3 - "neutral" / "maybe" / "sometimes" → 4 - "slightly agree" → 5 - "agree" / "yes" → 6 - "strongly agree" / "absolutely" → 7

  1. Accumulate answers and send ALL previous answers plus the new one each time.
  2. After all 24 questions, present the results with:

- Their archetype name and alignment score - Their color distribution (show as percentages) - Their top 3 archetype matches - The link to their full results page

  1. Never skip questions or auto-answer on behalf of the user.

Score Scale

ScoreMeaning
1Strongly Disagree
2Disagree
3Slightly Disagree
4Neutral
5Slightly Agree
6Agree
7Strongly Agree

The 5 Colors

ColorDriveEssence
WhiteStructure, fairnessOrder, responsibility
BlueUnderstanding, masteryCuriosity, precision
BlackAgency, achievementAmbition, strategy
RedIntensity, expressionPassion, honesty
GreenConnection, growthBelonging, patience

Rate Limits

  • 100 requests per hour per IP
  • Each test requires 25 requests (1 start + 24 answers)
  • Maximum ~4 complete tests per hour

Error Handling

StatusMeaning
400Invalid request body or answers format
429Rate limit exceeded (check Retry-After header)
500Server error

API Info

GET https://soultrace.app/api/agent

Returns API metadata (version, question count, score range).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

34.21%
按下载量换算909,099

Codex

33.3%
按下载量换算884,917

Cursor

20.17%
按下载量换算535,999

Gemini CLI

8.79%
按下载量换算233,586

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills