| 10081 | } |
| 10082 | |
| 10083 | static void uninstall_pi_durable_context(const char *home, bool dry_run) { |
| 10084 | char instructions_path[CLI_BUF_1K]; |
| 10085 | char skills_dir[CLI_BUF_1K]; |
| 10086 | snprintf(instructions_path, sizeof(instructions_path), "%s/.pi/agent/AGENTS.md", home); |
| 10087 | snprintf(skills_dir, sizeof(skills_dir), "%s/.pi/agent/skills", home); |
| 10088 | if (!dry_run && cbm_remove_managed_instructions(instructions_path) != CLI_OK) { |
| 10089 | record_agent_config_error(true, "Pi", "instructions_uninstall", instructions_path); |
| 10090 | } |
| 10091 | printf(" instructions: removed managed context\n"); |
| 10092 | uninstall_agent_skill("Pi", skills_dir, dry_run); |
| 10093 | char extension_path[CLI_BUF_1K]; |
| 10094 | snprintf(extension_path, sizeof(extension_path), "%s/.pi/agent/extensions/cbmem.ts", home); |
| 10095 | uninstall_generated_client_extension("Pi", extension_path, dry_run); |
| 10096 | } |
| 10097 | |
| 10098 | static void uninstall_managed_agent_instructions(const char *label, const char *instructions_path, |
| 10099 | bool dry_run) { |
no test coverage detected