From opencode
Sends a prompt to an opencode model and presents the response inline, clearly attributed. Use this to get a second opinion or alternative perspective without leaving the Claude session.
How this skill is triggered — by the user, by Claude, or both
Slash command
/opencode:ask-opencodeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Call the `list_models` tool from the `opencode` MCP server to get the current list of allowed models at runtime.
Call the list_models tool from the opencode MCP server to get the current list of allowed models at runtime.
If the user invoked the skill with an argument (e.g. /ask-opencode <question>), use that argument verbatim as the prompt.
If no argument was given, ask the user what they would like to send to opencode before proceeding.
If the user specifies a model (e.g. /ask-opencode --model github-copilot/gpt-4o <question>), use that model. Otherwise use the MCP server's default (call list_models if unsure what's available).
If the prompt references "this repo", "this project", "here", "audit", or similar context-dependent language, gather the following before sending and prepend it to the prompt:
git rev-parse --show-toplevel, git branch --show-current)package.json, CLAUDE.md, README.md — truncated to ~50 lines each)Prepend this as a fenced block labelled ## Repo Context before the user's prompt so opencode has accurate grounding.
If the prompt is a general question with no repo reference, skip this step entirely.
Call the query tool from the opencode MCP server with the resolved prompt (including any injected context) and model.
Display the response under a clearly labelled heading:
### opencode (<model>)
<output>
Do not paraphrase, edit, or interpret the output — show it exactly as returned.
After presenting the opencode response, offer to share your own take or highlight any meaningful differences. Only if it adds value — if the user did not ask for a comparison, keep this to a single brief sentence.
npx claudepluginhub kud/claude-plugins --plugin opencodeCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.