| 10025 | } |
| 10026 | |
| 10027 | static void uninstall_pi_durable_context(const char *home, bool dry_run) { |
| 10028 | char instructions_path[CLI_BUF_1K]; |
| 10029 | char skills_dir[CLI_BUF_1K]; |
| 10030 | snprintf(instructions_path, sizeof(instructions_path), "%s/.pi/agent/AGENTS.md", home); |
| 10031 | snprintf(skills_dir, sizeof(skills_dir), "%s/.pi/agent/skills", home); |
| 10032 | if (!dry_run && cbm_remove_managed_instructions(instructions_path) != CLI_OK) { |
| 10033 | record_agent_config_error(true, "Pi", "instructions_uninstall", instructions_path); |
| 10034 | } |
| 10035 | printf(" instructions: removed managed context\n"); |
| 10036 | uninstall_agent_skill("Pi", skills_dir, dry_run); |
| 10037 | char extension_path[CLI_BUF_1K]; |
| 10038 | snprintf(extension_path, sizeof(extension_path), "%s/.pi/agent/extensions/cbmem.ts", home); |
| 10039 | uninstall_generated_client_extension("Pi", extension_path, dry_run); |
| 10040 | } |
| 10041 | |
| 10042 | static void uninstall_managed_agent_instructions(const char *label, const char *instructions_path, |
| 10043 | bool dry_run) { |
no test coverage detected