feat(compass): add instruction template system for AI prompts#34
Open
acmacalister wants to merge 2 commits into
Open
feat(compass): add instruction template system for AI prompts#34acmacalister wants to merge 2 commits into
acmacalister wants to merge 2 commits into
Conversation
Port Helmsman Ruby gem functionality to manage system instructions/prompts for AI assistants with Go text/template support. - Add Instruction type and InstructionsConfig to domain types (mcp.go) - Implement compass package with model tier detection (~30 models), environment detection (OS, shell, Docker, SSH, tools), and template rendering with ModelContext and EnvContext - Extend ConfigService with instruction CRUD methods - Register "instructions" MCP prompt that renders enabled instructions with optional model_id argument for context-aware output - Add web UI pages for instructions management (list, create, edit, delete) with live preview functionality - Include comprehensive tests for config persistence, tier detection, env detection, and template rendering 🐨 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
…uctions - Change model tiers from agi/engineer/monkey to large/small - Add ModelTiers field to InstructionsConfig for custom model mappings - Custom tiers from config override built-in defaults - Fix comment: Helmsman is Rust, not Ruby Add repo-local instruction discovery for worktree sharing: - .git/switchboard/instructions.json - worktree-shared, uncommitted - .switchboard/instructions.json - committed, version-controlled - ~/.config/switchboard/config.json - user-wide defaults Instructions merge with priority: repo-local > project > global. This allows testing instructions across git worktrees without committing. 🐨 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <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.
Port Helmsman Ruby gem functionality to manage system instructions/prompts for AI assistants with Go text/template support.
🐨 Generated with Claude Code