
Skill Resources【免费下载链接】oh-my-claudecodeTeams-first Multi-agent orchestration for Claude Code项目地址: https://gitcode.com/GitHub_Trending/oh/oh-my-claudecodeSkill directory:{技能目录相对路径}Bundled resources:lib/psm.shPrefer reusing these bundled resources when they fit the task instead of recreating them from scratch.#### 两类消费场景的接入点 - **斜杠加载技能**在 [src/hooks/auto-slash-command/executor.ts](https://link.gitcode.com/i/44b88c4d57d0c5d9de141372fb9f9a83) 的 formatCommandTemplate 中当命令 scope skill 且携带 cmd.path 时调用 renderSkillResourcesGuidance(cmd.path)渲染结果与注入内容、运行期指引、pipeline 指引拼装在一起最终成为 /技能名 展开后的命令模板的一部分。 - **内置技能**在 [src/features/builtin-skills/skills.ts](https://link.gitcode.com/i/ce2e9ca549866c36b6a6ba1e7d94462b) 中引入同一生成器内置技能模板加载后同样携带资源块。 #### 测试对行为的锚定 仓库测试对渲染块的内容有非常具体的断言[src/__tests__/skills.test.ts](https://link.gitcode.com/i/60e703a3763863104df4cdf3d2ed6b7e) 以 project-session-manager该技能目录确实携带 lib/、templates/、tests/ 与 psm.sh为样本验证 ts it(should surface bundled skill resources for skills with additional files, () { const skill getBuiltinSkill(project-session-manager); expect(skill?.template).toContain(## Skill Resources); expect(skill?.template).toContain(skills/project-session-manager); expect(skill?.template).toContain(lib/); expect(skill?.template).toContain(psm.sh); });【免费下载链接】oh-my-claudecodeTeams-first Multi-agent orchestration for Claude Code项目地址: https://gitcode.com/GitHub_Trending/oh/oh-my-claudecode创作声明:本文部分内容由AI辅助生成(AIGC),仅供参考