feat: add configuration system with JSONC support#1
Merged
Conversation
Add a 2-layer configuration system (global + project) allowing users to customize hint behavior, injection targets, auto-clear triggers, and more via ~/.config/opencode/btw.jsonc or .opencode/btw.jsonc. - New config module with types, defaults, JSONC parsing, validation - JSON Schema (btw.schema.json) for IDE auto-completion - All hardcoded values now respect user configuration - Auto-creates global config with $schema reference on first run - Comprehensive test coverage (177 tests, 293 assertions) - Updated README with configuration documentation and examples
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
~/.config/opencode/btw.jsonc+ project.opencode/btw.jsonc) allowing users to customize hint behavior without code changesbtw.schema.json) for IDE auto-completion out of the box$schemareference on first runConfiguration Options
defaultPinnedfalseautoClear.onIdletrueautoClear.onQuestionTooltrueinjection.target"both""both","system","user"injection.systemPromptPosition"prepend""prepend"or"append"injection.systemInstructionsinjection.userMessagePrefix"BTW, "debugfalsetoastDuration3000Changes
src/config.ts— config types, defaults, 2-layer JSONC loading, validation with advisory warningssrc/config.test.ts— comprehensive config testsbtw.schema.json— JSON Schema for IDE supportsrc/core.ts— functions accept optional config parametersrc/plugin.ts— loads config at init, all hooks respect configsrc/core.test.ts— updated imports + config-aware testspackage.json— addedjsonc-parserdependencyREADME.md— added Configuration section with examples.github/workflows/test.yml— updated branch refs frommastertomainTest Coverage
177 tests, 293 assertions across 3 test files — all passing.