(&self, ctx: &InstallContext, project_path: &Path)
| 56 | } |
| 57 | |
| 58 | fn install_local(&self, ctx: &InstallContext, project_path: &Path) -> Result<()> { |
| 59 | install_mcp_server(&project_path.join("opencode.json"), &ctx.tracedecay_bin)?; |
| 60 | let agents_md = project_path.join("AGENTS.md"); |
| 61 | install_prompt_rules(&agents_md)?; |
| 62 | super::install_managed_skill_prompt_index( |
| 63 | &ctx.home, |
| 64 | &agents_md, |
| 65 | crate::automation::skill_targets::SkillInstallTarget::OpenCode, |
| 66 | ) |
| 67 | } |
| 68 | |
| 69 | fn uninstall(&self, ctx: &InstallContext) -> Result<()> { |
| 70 | let config_path = opencode_config_path(&ctx.home); |
nothing calls this directly
no test coverage detected