@sentiolabs/opencode-arcOfficial OpenCode plugin package for arc workflow integration.
1
17
近 7 天 1
26.5
生态多维模型
2 个月前
2026-06-08
快速安装与配置
opencode.json写入当前项目的 opencode.json,只对这个仓库生效。
opencode.json
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["@sentiolabs/opencode-arc@0.3.1"]
}写入 ~/.config/opencode/opencode.json,对所有项目生效。
~/.config/opencode/opencode.json
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["@sentiolabs/opencode-arc@0.3.1"]
}若你要在本地改造这个插件,先装到项目里再从本地路径引用。
shell
pnpm add -D @sentiolabs/opencode-arcopencode 启动时会通过内嵌运行时自动加载 npm 依赖并缓存至本地目录,无需手动在全局环境执行安装。
This repository contains three marketplace trees:
claude-marketplace/for Claude-facing pluginscodex-marketplace/for Codex-facing pluginsopencode-marketplace/for OpenCode-facing plugins
OpenCode support is rolling out in stages rather than matching Claude and Codex yet. Use the Platform Support Matrix and OpenCode Roadmap for current coverage and gating.
The repository root is a harness, not the canonical marketplace. Claude and Codex resolve through root shims:
.claude-plugin/marketplace.json.agents/plugins/marketplace.json
OpenCode does not use a root marketplace manifest. Its install entrypoint lives at
.opencode/INSTALL.md and installs either project-local .opencode/ files or global
~/.config/opencode/ files from the OpenCode marketplace subtree.
Shared support files live in shared/, but runtime plugin files stay inside the plugin
roots that each platform resolves.
Where To Look
- Claude Marketplace
- Codex Marketplace
- OpenCode Marketplace
- Platform Support Matrix
- Migration Rules
- OpenCode Roadmap
Current Layout
claude-marketplace/plugins/contains the Claude plugin copiescodex-marketplace/plugins/contains the Codex plugin copiesopencode-marketplace/plugins/contains the OpenCode plugin copies.opencode/INSTALL.mdcontains the fetched OpenCode install instructionsshared/contains non-runtime support files such as validation scripts and referencesdocs/contains design notes and contributor guidance
Working Rule
Start with explicit platform-specific duplication. Only introduce generation or shared-source rendering if duplicated maintenance becomes a real problem.