Chore/consolidate Vibe Prompt Into Agents Md#22
Merged
Conversation
- system_prompt_id: vibe -> cli (use Vibe's built-in CLI prompt; repo guidance now comes from the root AGENTS.md) - session_logging.save_dir: correct /Users/jasperfrumau -> /Users/j (committed path pointed at a non-existent home and crashed vibe on launch with PermissionError) - absorb pending Vibe config migration (applied_migrations marker, supports_images, search_replace->edit and read_file->read renames)
Mistral Vibe reads AGENTS.md natively (walking up from the working dir), so the bundled custom system prompt is redundant. Move the repo conventions, config/Modelfile references, Ollama commands, model-selection guidance, and commit rules from .vibe/prompts/vibe.md into a root AGENTS.md (model recommendations refreshed to match CLAUDE.md) and delete the prompt. docs/AGENTS.md is left as-is: it is the human-facing OpenCode agents guide, and being under docs/ it would not be auto-loaded at the repo root anyway. Release 1.5.0.
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.
This release (1.5.0) consolidates the Mistral Vibe configuration for this Ollama/OpenCode setup repository by eliminating a redundant custom system prompt in favor of native
AGENTS.mdloading. The bundled.vibe/prompts/vibe.mdprompt was renamed and promoted to a root-levelAGENTS.md(58% similarity retained), since Mistral Vibe automatically walks up from the working directory collectingAGENTS.mdfiles, making a separate custom prompt unnecessary. Alongside this,.vibe/config.tomlswitches from the customvibesystem prompt to Vibe's built-incliprompt and fixes a stale session-log path that pointed at a non-existent home directory and crashed Vibe on launch. The changes span 3 files with 98 insertions and 84 deletions, and the model-selection guidance carried intoAGENTS.mdwas refreshed to match the canonicalCLAUDE.md. ACHANGELOG.mdentry documents the additions, changes, and removals.Configuration Changes:
system_prompt_idfromvibetocliin.vibe/config.toml, so Vibe uses its default built-in CLI system prompt and sources repository guidance fromAGENTS.mdrather than a bundled custom prompt.session_logging.save_dirfrom the stale/Users/jasperfrumau/.vibe/logs/sessionto/Users/j/.vibe/logs/session; the previous path referenced a non-existent home directory and crashedvibeon launch with aPermissionError.bash_read_only_defaults_v1applied_migrationsmarker, thesupports_imagesflag, and renaming thesearch_replace/read_filetool sections toedit/read.Documentation Consolidation:
.vibe/prompts/vibe.mdto a root-levelAGENTS.mdcarrying the repo conventions, key config and Modelfile references, Ollama commands, model-selection guidance, and commit rules, with model recommendations refreshed to matchCLAUDE.md..vibe/prompts/vibe.mdand the now-empty.vibe/prompts/directory, since Vibe readsAGENTS.mdnatively anddocs/AGENTS.md(the human-facing OpenCode agents guide) is intentionally left untouched as it would not auto-load from the repo root.Tooling and Changelog:
tools.bashread-only allowlist with additional safe commands (such asgrep,sort,diff,tr, checksum utilities, and pager tools) as part of the absorbed migration defaults.1.5.0entry toCHANGELOG.mddocumenting the newAGENTS.md, the configuration changes, and the removed custom prompt.Files Changed:
AGENTS.md(renamed from.vibe/prompts/vibe.md).vibe/config.toml(Modified)CHANGELOG.md(Modified)