| 8160 | } |
| 8161 | |
| 8162 | static void install_amp_durable_context(const char *home, bool force, bool dry_run) { |
| 8163 | char instructions_path[CLI_BUF_1K]; |
| 8164 | char skills_dir[CLI_BUF_1K]; |
| 8165 | snprintf(instructions_path, sizeof(instructions_path), "%s/.config/amp/AGENTS.md", home); |
| 8166 | snprintf(skills_dir, sizeof(skills_dir), "%s/.config/agents/skills", home); |
| 8167 | install_managed_agent_instructions("Amp", instructions_path, dry_run); |
| 8168 | install_agent_skill("Amp", skills_dir, force, dry_run); |
| 8169 | } |
| 8170 | |
| 8171 | static void install_codebuddy_durable_context(const char *home, bool force, bool dry_run) { |
| 8172 | char instructions_path[CLI_BUF_1K]; |
no test coverage detected