opencode-tui-plugin-workflowsOpenCode TUI plugin that shows the current workflows MCP phase and workflow name in the sidebar
0
49
近 7 天 12
22.8
生态多维模型
4 个月前
2026-03-29
快速安装与配置
opencode.json写入当前项目的 opencode.json,只对这个仓库生效。
opencode.json
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["opencode-tui-plugin-workflows@1.0.0"]
}写入 ~/.config/opencode/opencode.json,对所有项目生效。
~/.config/opencode/opencode.json
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["opencode-tui-plugin-workflows@1.0.0"]
}若你要在本地改造这个插件,先装到项目里再从本地路径引用。
shell
pnpm add -D opencode-tui-plugin-workflowsopencode 启动时会通过内嵌运行时自动加载 npm 依赖并缓存至本地目录,无需手动在全局环境执行安装。
An OpenCode TUI sidebar plugin that shows the active Responsible Vibe MCP workflow phase and workflow name while your agent is running.
What it does
When the workflows MCP is active, the sidebar displays the current phase and workflow name, updating automatically whenever the agent calls a workflows tool:

Requirements
- OpenCode >= 1.3.4
- Responsible Vibe MCP configured in your project
Installation
[!IMPORTANT] This is a TUI plugin — it must be added to
tui.json, notopencode.json.
Add the plugin to your .config/opencode/tui.json:
{
"$schema": "https://opencode.ai/tui.json",
"plugin": ["opencode-tui-plugin-workflows"]
}
OpenCode installs the package automatically via Bun on next startup. No separate
npm install required.