platforms/hermes/skills/autonomous-ai-agents/trace-skill-provenance/SKILL.md
Investigate where a Hermes skill came from, when it was created, and whether it was builtin, promoted/imported, or locally created via skill_manage.
npx skillsauth add codingsamss/ai-dotfiles trace-skill-provenanceInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this when a user asks questions like:
Determine, with evidence:
builtin or localimported-codex / manifest) or was created later via skill_manageRun:
hermes skills list | grep -n '<skill-name>'
Interpretation:
builtin | builtin => official built-in skilllocal | local => local skill in the runtime environmentDo not rely on memory alone.
Check likely skill roots directly:
~/.hermes/skills~/.codex/skills (older/shared runtime copies may still exist)Example shell approach:
for d in ~/.hermes/skills ~/.codex/skills; do
[ -d "$d" ] || continue
find "$d" -type d -name '<skill-name>'
done
If needed, inspect SKILL.md under the found path.
For the skill directory and SKILL.md, inspect:
st_birthtime on macOS when available)Example Python snippet:
from pathlib import Path
from datetime import datetime
p = Path('~/.hermes/skills/<category>/<skill-name>/SKILL.md').expanduser()
st = p.stat()
print(datetime.fromtimestamp(getattr(st, 'st_birthtime', st.st_ctime)))
print(datetime.fromtimestamp(st.st_mtime))
print(datetime.fromtimestamp(st.st_ctime))
Use this only as approximate creation evidence; later edits can change mtime/ctime.
Look for promotion manifests such as:
~/.hermes/skill-promotions/<timestamp>/promotion-manifest.json
Read them and see whether the skill appears in entries.
Interpretation:
imported-codex or another sourceImportant: verify against the specific manifest timestamp instead of assuming all local skills came from promotion.
Search Hermes session files and/or use session search for:
skill_manageaction":"create"action":"patch"Useful targets:
~/.hermes/sessions/*.jsonsession_search(query='"<skill-name>"')High-signal evidence is a session snippet containing:
skill_manageaction: createname: <skill-name>If found, report:
Use the evidence to classify one of these outcomes:
skill_manage(action='create', ...)patch / edithermes skills listskill_manageThis makes the conclusion auditable and easy to trust.
hermes skills inspect <name> may fail even when skill_view(name) works; do not stop there.~/.hermes/skills can miss older copies in ~/.codex/skills.local without being imported; do not equate local with promoted.You should be able to answer, with citations/evidence:
builtin vs local)tools
Apifox 接口测试用例:test-case 与 test-data 的查询、创建、更新、删除、分类和运行;处理测试步骤、断言、提取变量、前后置处理器、数据集,以及“CLI 创建后前端测试步骤无法展示”等问题。
tools
通过 Apifox CLI 管理 Apifox 项目资源。触发场景:运行接口自动化测试/测试套件,查询/创建/更新/删除接口、环境、Schema、Mock、分支等项目资源,导入导出 API 文档,查看测试报告,管理 Runner、定时任务、通知等 CI/CD 配置。CLI 输出为结构化 JSON,常含 agentHints.nextSteps;所有命令支持 --help。
tools
Apifox 接口测试用例:test-case 与 test-data 的查询、创建、更新、删除、分类和运行;处理测试步骤、断言、提取变量、前后置处理器、数据集,以及“CLI 创建后前端测试步骤无法展示”等问题。
tools
通过 Apifox CLI 管理 Apifox 项目资源。触发场景:运行接口自动化测试/测试套件,查询/创建/更新/删除接口、环境、Schema、Mock、分支等项目资源,导入导出 API 文档,查看测试报告,管理 Runner、定时任务、通知等 CI/CD 配置。CLI 输出为结构化 JSON,常含 agentHints.nextSteps;所有命令支持 --help。