用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill unnamed-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
基于 SOC 职业分类
正在显示 SKILL.md
| name | unnamed-skill |
| description | 当用户请求"初始化索引"、"更新文档"、"生成依赖图"或检测到文件结构性变更时,使用此技能维护分形自指文档系统 Use when this capability is needed. |
| metadata | {"author":"Claudate"} |
本技能现在采用 双模式架构:
skills/project-multilevel-index/universal/关系: 插件模式内部调用 universal/core/ 的通用逻辑,两者共享核心引擎。
加载语言配置(必须)
.claude/locale-config.jsonLANG 对象初始化 Claude Code 适配器
universal/adapters/claude-code/adapter.md调用 Universal 核心工作流
输出结果
LANG 对象中的翻译文本{directory}, {count})/init-index - 初始化索引系统使用场景: 首次运行或重建整个索引系统
执行步骤:
universal/core/generator/init-workflow.md详细实现: commands_impl/init-index.md
核心工作流: ../../universal/core/generator/init-workflow.md
/update-index - 更新索引使用场景: 文件修改后手动更新或 Hook 自动调用
执行步骤:
universal/core/generator/update-workflow.md详细实现: commands_impl/update-index.md
核心工作流: ../../universal/core/generator/update-workflow.md
/check-index - 一致性检查使用场景: 验证索引系统完整性
执行步骤:
universal/core/generator/check-workflow.md详细实现: commands_impl/check-index.md
核心工作流: ../../universal/core/generator/check-workflow.md
/set-language - 切换语言使用场景: 快速切换界面语言
执行步骤:
.claude/locale-config.json详细实现: commands_impl/set-language.md
当检测到文件修改(Write/Edit)时:
加载语言配置
应用过滤规则(详见 locales/{language}/hooks.json)
判断是否为结构性变更
执行更新
/update-index静默处理
配置文件方式(推荐)
# 创建配置文件
mkdir -p .claude
cat > .claude/locale-config.json << 'EOF'
{
"language": "en-US",
"fallback": "zh-CN"
}
EOF
命令方式
/set-language
环境变量方式
export CLAUDE_LOCALE=en-US
初始化时询问
/init-index 会询问用户选择语言以下术语在所有语言中保持英文:
locales/zh-CN/ 和 locales/en-US/templates/版本: 2.1.0 更新日期: 2025-12-23 新特性: 双模式架构 + Universal 多平台核心 + 适配器系统
Source: Claudate/project-multilevel-index — distributed by TomeVault.