Skip to content

Commit 216cd33

Browse files
easonysliuclaude
andcommitted
fix: add missing vibe and agy agent configs to CommandRegistrar
Both agents are defined in AGENT_CONFIG in __init__.py but were absent from CommandRegistrar.AGENT_CONFIGS in extensions.py, which meant the extension system could never register commands for them. - vibe (Mistral Vibe): .vibe/prompts, markdown format - agy (Antigravity): .agent/commands, markdown format Co-Authored-By: Claude (claude-opus-4-6) <noreply@anthropic.com>
1 parent 1db11b8 commit 216cd33

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/specify_cli/extensions.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -835,6 +835,18 @@ class CommandRegistrar:
835835
"format": "markdown",
836836
"args": "$ARGUMENTS",
837837
"extension": "/SKILL.md"
838+
},
839+
"vibe": {
840+
"dir": ".vibe/prompts",
841+
"format": "markdown",
842+
"args": "$ARGUMENTS",
843+
"extension": ".md"
844+
},
845+
"agy": {
846+
"dir": ".agent/commands",
847+
"format": "markdown",
848+
"args": "$ARGUMENTS",
849+
"extension": ".md"
838850
}
839851
}
840852

0 commit comments

Comments
 (0)