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

Function install_pochi_durable_context

src/cli/cli.c:8139–8156  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8137}
8138
8139static void install_pochi_durable_context(const char *home, bool force, bool dry_run) {
8140 char instructions_path[CLI_BUF_1K];
8141 char skills_dir[CLI_BUF_1K];
8142 char agent_path[CLI_BUF_1K];
8143 snprintf(instructions_path, sizeof(instructions_path), "%s/.pochi/README.pochi.md", home);
8144 snprintf(skills_dir, sizeof(skills_dir), "%s/.pochi/skills", home);
8145 snprintf(agent_path, sizeof(agent_path), "%s/.pochi/agents/codebase-memory.md", home);
8146 install_managed_agent_instructions("Pochi", instructions_path, dry_run);
8147 install_agent_skill("Pochi", skills_dir, force, dry_run);
8148 install_tiered_agent_profiles(
8149 (cbm_tiered_profile_set_t){
8150 .label = "Pochi",
8151 .verify_path = agent_path,
8152 .legacy_verify_content = legacy_pochi_verify_agent_content,
8153 .dialect = CBM_GRAPH_DIALECT_POCHI,
8154 },
8155 dry_run);
8156}
8157
8158static void install_agent_client_registry(const char *home, const char *binary_path,
8159 bool inherit_claude_session, bool force, bool dry_run) {

Callers 1

Calls 3

install_agent_skillFunction · 0.85

Tested by

no test coverage detected