Playing with OpenCode CLI #173
ksylvan
started this conversation in
Show and tell
Replies: 2 comments 1 reply
-
|
That looks awesome running a terminal! I might try this out - I have been loving using Claude-Code also in the terminal - never really thought I would like the experience. What agentic IDE do you normally use aside from this on? |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
Awsome im also using opencode and now came across bmad looks great ill try it out. Since yesterday devstral 2 and mistral vibe cli launched its already inside opencode but its useless. Im curious if mistral vibe cli is working with bmad? Anyone tested this? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I've been keeping an eye on this project: https://github.com/opencode-ai/opencode
Today I synced my fork and updated their Anthropic SDK to the latest version via this PR: opencode-ai/opencode#189
I set up my config file like this (
~/.opencode.json):{ "data": { "directory": ".opencode" }, "providers": { "anthropic": { "apiKey": "[REDACTED]", "disabled": false }, "gemini": { "apiKey": "[REDACTED]", "disabled": false }, "groq": { "apiKey": "[REDACTED]", "disabled": false }, "openai": { "apiKey": "[REDACTED]", "disabled": false }, "openrouter": { "apiKey": "[REDACTED]", "disabled": false } }, "lsp": { "go": { "enabled": false, "command": "gopls", "args": null, "options": null }, "python": { "enabled": false, "command": "python", "args": [ "/Users/kayvan/.vscode-insiders/extensions/ms-python.black-formatter-2025.2.0/bundled/tool/lsp_server.py", "--stdio" ], "options": null } }, "agents": { "coder": { "model": "claude-4-sonnet", "maxTokens": 64000, "reasoningEffort": "high" }, "task": { "model": "claude-4-sonnet", "maxTokens": 50000, "reasoningEffort": "medium" }, "title": { "model": "claude-4-sonnet", "maxTokens": 2000, "reasoningEffort": "low" } }, "tui": { "theme": "opencode" }, "shell": { "path": "/bin/zsh", "args": [ "-l" ] }, "autoCompact": true }Then I proceeded to play with the BMAD orchestrator inside the Opencode CLI:
Then I fire up
opencode, paste the agent orchestrator prompt, and hit return, and away we go!Beta Was this translation helpful? Give feedback.
All reactions