| 14 | } |
| 15 | |
| 16 | interface AgentConfig { |
| 17 | name: string |
| 18 | /** Directory to check for project-level detection (relative to project root). Null = not auto-detectable in project mode. */ |
| 19 | projectConfigDir: string | null |
| 20 | /** Skills install directory in project mode (relative to project root). */ |
| 21 | projectSkillDir: string |
| 22 | /** Directory to check for global-level detection (relative to home). Null = not auto-detectable globally. */ |
| 23 | globalConfigDir: string | null |
| 24 | /** Skills install directory in global mode (relative to home). Null = global not supported. */ |
| 25 | globalSkillDir: string | null |
| 26 | } |
| 27 | |
| 28 | // Agent configurations sourced from https://github.com/vercel-labs/skills |
| 29 | const CLAUDE_CODE: AgentConfig = { |
nothing calls this directly
no outgoing calls
no test coverage detected