Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/reference/integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ The currently declared multi-install safe integrations are:
| `kiro-cli` | `.kiro/prompts` |
| `lingma` | `.lingma/skills` |
| `omp` | `.omp/commands` |
| `opencode` | `.opencode/commands` |
| `pi` | `.pi/prompts` |
| `qodercli` | `.qoder/skills` |
| `qwen` | `.qwen/commands` |
Expand Down
1 change: 1 addition & 0 deletions src/specify_cli/integrations/opencode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

class OpencodeIntegration(MarkdownIntegration):
key = "opencode"
multi_install_safe = True
config = {
"name": "opencode",
"folder": ".opencode/",
Expand Down
3 changes: 3 additions & 0 deletions tests/integrations/test_integration_opencode.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ class TestOpencodeIntegration(MarkdownIntegrationTests):
COMMANDS_SUBDIR = "commands"
REGISTRAR_DIR = ".opencode/commands"

def test_multi_install_safe(self):
assert get_integration(self.KEY).multi_install_safe is True

def test_build_exec_args_uses_run_command_dispatch(self):
integration = get_integration(self.KEY)

Expand Down
Loading