feat: add OpenCode provider support to build system

- Created opencode transformer in scripts/lib/transformers/opencode.js
- Added opencode placeholders to scripts/lib/utils.js
- Integrated opencode into build.js and universal assembly
- Updated README.md and scripts/lib/transformers/index.js with OpenCode support
This commit is contained in:
hamshad
2026-03-12 16:30:15 +05:30
parent 0df1ba59dc
commit 506957487f
5 changed files with 102 additions and 1 deletions
+5
View File
@@ -293,6 +293,11 @@ export const PROVIDER_PLACEHOLDERS = {
model: 'Claude',
config_file: '.kiro/settings.json',
ask_instruction: 'ask the user directly to clarify what you cannot infer.'
},
opencode: {
model: 'Claude',
config_file: 'OPENCODE.md',
ask_instruction: 'STOP and call the AskUserQuestionTool to clarify.',
}
};