| 8490 | } |
| 8491 | |
| 8492 | static void install_bob_durable_context(const char *home, bool ide, bool force, bool dry_run) { |
| 8493 | char rules_path[CLI_BUF_1K]; |
| 8494 | snprintf(rules_path, sizeof(rules_path), "%s/.bob/rules/codebase-memory.md", home); |
| 8495 | install_managed_agent_instructions(ide ? "IBM Bob IDE" : "IBM Bob Shell", rules_path, dry_run); |
| 8496 | if (ide) { |
| 8497 | char skills_dir[CLI_BUF_1K]; |
| 8498 | snprintf(skills_dir, sizeof(skills_dir), "%s/.bob/skills", home); |
| 8499 | install_agent_skill("IBM Bob IDE", skills_dir, force, dry_run); |
| 8500 | } |
| 8501 | } |
| 8502 | |
| 8503 | static void install_pochi_durable_context(const char *home, bool force, bool dry_run) { |
| 8504 | char instructions_path[CLI_BUF_1K]; |
no test coverage detected