MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / install_codebuddy_durable_context

Function install_codebuddy_durable_context

src/cli/cli.c:8109–8126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8107}
8108
8109static void install_codebuddy_durable_context(const char *home, bool force, bool dry_run) {
8110 char instructions_path[CLI_BUF_1K];
8111 char skills_dir[CLI_BUF_1K];
8112 char agent_path[CLI_BUF_1K];
8113 snprintf(instructions_path, sizeof(instructions_path), "%s/.codebuddy/CODEBUDDY.md", home);
8114 snprintf(skills_dir, sizeof(skills_dir), "%s/.codebuddy/skills", home);
8115 snprintf(agent_path, sizeof(agent_path), "%s/.codebuddy/agents/codebase-memory.md", home);
8116 install_managed_agent_instructions("CodeBuddy Code CLI", instructions_path, dry_run);
8117 install_agent_skill("CodeBuddy Code CLI", skills_dir, force, dry_run);
8118 install_tiered_agent_profiles(
8119 (cbm_tiered_profile_set_t){
8120 .label = "CodeBuddy Code CLI",
8121 .verify_path = agent_path,
8122 .legacy_verify_content = legacy_codebuddy_verify_agent_content,
8123 .dialect = CBM_GRAPH_DIALECT_CODEBUDDY,
8124 },
8125 dry_run);
8126}
8127
8128static void install_bob_durable_context(const char *home, bool ide, bool force, bool dry_run) {
8129 char rules_path[CLI_BUF_1K];

Callers 1

Calls 3

install_agent_skillFunction · 0.85

Tested by

no test coverage detected