feat: add Mistral Vibe as a supported host#1640
Open
nmrtn wants to merge 1 commit into
Open
Conversation
Adds hosts/vibe.ts following the slate.ts minimal template. Vibe uses the SKILL.md standard natively with skills at ~/.vibe/skills/. - globalRoot / localSkillRoot: .vibe/skills/gstack - frontmatter: allowlist mode, keeps name + description - pathRewrites: ~/.claude/skills/gstack → ~/.vibe/skills/gstack - suppressedResolvers: same as other CLI agents (can't self-invoke) - boundaryInstruction: prevents Vibe from reading Claude skill files - cliAliases: ['mistral-vibe'] - skipSkills: ['codex'] (Claude-specific wrapper) Registers in hosts/index.ts, adds row to README Other AI Agents table, adds .vibe/ to .gitignore, bumps host count in host-config test to 11. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
hosts/vibe.ts— Mistral Vibe host config following theslate.tsminimal templatehosts/index.ts(ALL_HOST_CONFIGS, re-exports)--host vibe→~/.vibe/skills/gstack-*/.vibe/to.gitignoretest/host-config.test.tsfrom 10 → 11Why
Vibe uses the SKILL.md standard natively (same frontmatter, same invocation model). It's already used by nanopm (the PM skill pack built on gstack's SKILL.md standard — nmrtn/nanopm), which ships Vibe-translated skills and installs to
~/.vibe/skills/automatically. Adding gstack itself closes the gap for the engineering side.Config notes
suppressedResolvers: same set as other CLI agents — Vibe can't spawn itself as a subagent, so self-invocation resolvers (DESIGN_OUTSIDE_VOICES,ADVERSARIAL_STEP,CODEX_SECOND_OPINION,CODEX_PLAN_REVIEW,REVIEW_ARMY) are suppressed, along with gbrain resolversboundaryInstruction: prevents Vibe from accidentally reading~/.claude/skills/files meant for Claude CodecliAliases: ['mistral-vibe']for users who type the full namegenerateMetadata: false— noopenai.yamlneededTest plan
bun test test/host-config.test.ts— 71 pass, 2 pre-existing golden file failures unrelated to this change./setup --host vibeinstalls skills to~/.vibe/skills/gstack-*/./setupauto-detects Vibe whenvibebinary is on PATHbun run gen:skill-docs --host vibegenerates with no.claude/skillspath leakage🤖 Generated with Claude Code