MCPcopy Create free account
hub / github.com/deepnote/deepnote / AgentConfig

Interface AgentConfig

packages/cli/src/commands/install-skills.ts:16–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14}
15
16interface 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
29const CLAUDE_CODE: AgentConfig = {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected