| 10646 | } |
| 10647 | |
| 10648 | static void uninstall_pi_durable_context(const char *home, bool dry_run) { |
| 10649 | char instructions_path[CLI_BUF_1K]; |
| 10650 | char skills_dir[CLI_BUF_1K]; |
| 10651 | snprintf(instructions_path, sizeof(instructions_path), "%s/.pi/agent/AGENTS.md", home); |
| 10652 | snprintf(skills_dir, sizeof(skills_dir), "%s/.pi/agent/skills", home); |
| 10653 | if (!dry_run && cbm_remove_managed_instructions(instructions_path) != CLI_OK) { |
| 10654 | record_agent_config_error(true, "Pi", "instructions_uninstall", instructions_path); |
| 10655 | } |
| 10656 | printf(" instructions: removed managed context\n"); |
| 10657 | uninstall_agent_skill("Pi", skills_dir, dry_run); |
| 10658 | char extension_path[CLI_BUF_1K]; |
| 10659 | snprintf(extension_path, sizeof(extension_path), "%s/.pi/agent/extensions/cbmem.ts", home); |
| 10660 | uninstall_generated_client_extension("Pi", extension_path, dry_run); |
| 10661 | } |
| 10662 | |
| 10663 | static void uninstall_managed_agent_instructions(const char *label, const char *instructions_path, |
| 10664 | bool dry_run) { |
no test coverage detected