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 @@ -276,6 +276,7 @@ The currently declared multi-install safe integrations are:
| `grok` | `.grok/skills` |
| `junie` | `.junie/commands`, `.junie/AGENTS.md` |
| `kilocode` | `.kilocode/workflows`, `.kilocode/rules/specify-rules.md` |
| `omp` | `.omp/commands` |
| `qodercli` | `.qoder/commands`, `QODER.md` |
| `qwen` | `.qwen/commands`, `QWEN.md` |
| `shai` | `.shai/commands`, `SHAI.md` |
Expand Down
1 change: 1 addition & 0 deletions src/specify_cli/integrations/omp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class OmpIntegration(MarkdownIntegration):
"args": "$ARGUMENTS",
"extension": ".md",
}
multi_install_safe = True
Comment thread
jawwad-ali marked this conversation as resolved.

def build_exec_args(
self,
Expand Down
6 changes: 6 additions & 0 deletions tests/integrations/test_integration_omp.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ class TestOmpIntegration(MarkdownIntegrationTests):
COMMANDS_SUBDIR = "commands"
REGISTRAR_DIR = ".omp/commands"

def test_multi_install_safe(self):
# Omp writes only to its isolated, static root .omp/commands, disjoint
# from every other integration, so it must be co-install safe (mirrors
# qwen/shai/qodercli and the kiro-cli #3471 precedent).
assert get_integration(self.KEY).multi_install_safe is True

def test_build_exec_args_uses_omp_json_mode(self):
i = get_integration(self.KEY)

Expand Down