贡献指南
git clone https://github.com/lidge-jun/opencodex.gitcd opencodexbun installbun run dev:proxy # 开发模式代理 APIbun run dev:gui # 仪表盘 dev 服务器(另一个终端)bun run typecheck # bun x tsc --noEmitbun run test:changed # routine import-graph test selectionbun test tests/routing/router.test.ts # routine focused testbun run test # complete suite (PR-ready / explicit ask)bun run dev 继续作为 bun run dev:proxy 的别名。仪表盘 dev 服务器使用 bun run dev:gui;
GET / 提供的打包仪表盘由 bun run build:gui 构建到 gui/dist。
构建与测试命令
Section titled “构建与测试命令”根 package 是 Bun-native TypeScript,没有单独的 server compile 步骤。请使用仓库内的 script, 确保本地命令与 CI 一致:
bun run typecheck # 严格 TypeScript 检查bun run test # 完整 tests/ suitebun test tests/routing/router.test.ts # 聚焦单个测试文件bun run build:gui # Vite GUI 构建 + package 准备bun run privacy:scan # CI 使用的 credential/privacy 扫描bun run prepare:package # 刷新 package launcher/asset测试是按 src/ 划分的领域目录(tests/<domain>/)下的 Bun test,映射表在 scripts/test-layout/layout.json。tests/helpers/ 存放共享 fixture,
tests/e2e-style/ 存放范围更广的原生一致性场景。请在对应 subsystem 的现有测试附近加入聚焦的
回归测试;若改动涉及共享 routing、adapter、config 或 server 行为,还应运行完整 suite。
你正在阅读的文档站点位于 docs-site/(Astro + Starlight):
cd docs-site && bun install && bun dev公开文档发布到 GitHub Pages:https://opencodex.me/zh-cn/。
.github/workflows/deploy-docs.yml 会在 main push 中 docs-site/** 或 workflow 本身发生变化时
运行,构建 docs-site 并部署生成的网站。推送文档变更前请运行:
cd docs-sitebun install --frozen-lockfilebun run buildCI 与发布
Section titled “CI 与发布”GitHub Actions 有意只保留必要步骤:
- Cross-platform CI(
.github/workflows/ci.yml)会在改动 runtime、test、package、script、 TypeScript 或 workflow 文件的 pull request 与mainpush 上运行。Bun matrix 覆盖 Linux、 Windows 和 macOS,执行 install、typecheck、test、privacy scan、release-helper build smoke、GUI build 和ocx help。另一个三系统 lane 使用 package 内置 runtime,验证无需单独安装 Bun 也能 完成 npm global install。 - Release(
.github/workflows/release.yml)只能手动运行。它不是第二套完整 CI;dry-run 或 publish 前,精确的 release commit(GITHUB_SHA)必须已有成功的 Cross-platform CI run。
发布请使用 helper:
运行 helper 前,先确定目标发布版本,并从默认分支运行
.github/workflows/dev-version-bump.yml,设置 intended-version=<version> 和
mode=pre-move。审核生成的 PR 并合并到 dev,再提升到 main 或 preview,
最后运行 helper。如果 dev 的版本已经高于目标版本,工作流会返回
changed=false,无需创建版本更新 PR。发布仍要求对应发布提交的 CI 全部通过。
bun run release <version> # commit/push 版本 bump;publish workflow 默认 dry-runbun run release --bump minor # 根据 tag 与 npm channel 推导下一个 patch、minor 或 major 版本bun run release <version> --publish # 确认 CI-gated dry-run 后真正 publishbun run release:watch # 观察最新的 Release workflow run可用 --bump patch|minor|major 代替显式版本。较高 core 的 preview tag 建立后,--bump patch
会拒绝继续旧的 stable patch 版本线;请将修复包含在已开启的 preview core 中发布。
dev— 唯一的集成目标。请把所有 PR 提到这里。main— 仅用于发布。只有维护者从dev提升时才会变动,请勿直接提功能 PR。preview— 预发布通道。
承载 Go 原生移植的 dev2-go 已经退役,同时维护两条集成线的政策也一并结束。其历史以只读
形式保存在
lidge-jun/opencodex-go-archive。
现在 dev 上的 Bun 原生 TypeScript 是唯一的运行时线。
欢迎变基 PR。把陈旧分支变基到当前 head 是正常的贡献而非噪音。请在描述中注明来源提交。
- 仅使用 ES Modules(
import/export)、TypeScript 和strictmode。保持bun x tsc --noEmit无报错。 - 每个文件最多约 500 行 —— 按职责拆分。
web-search/和vision/sidecar 是很好的例子: 小而专注的 module 位于单一index.ts之后。 - 在边界处理异步错误 —— sidecar 不会把异常抛进请求路径,而会降级成合适的 marker。
- Structure SOT —— 当前维护者不变量放在
structure/;公开用户流程放在docs-site/; 历史调查/诊断记录放在docs/。 - 保留 export —— 其他 module 可能依赖它们。
向目录中添加 provider
Section titled “向目录中添加 provider”所有 provider picker 与 seed 都来自 canonical registry(src/providers/registry.ts):
{ id: "my-provider", label: "My Provider", baseUrl: "https://api.example.com/v1", adapter: "openai-chat", authKind: "key", dashboardUrl: "https://example.com/keys", models: ["model-a", "model-b"], defaultModel: "model-a", noVisionModels: ["model-a"], // text-only models → vision sidecar describes images},src/providers/derive.ts 会把该条目提供给 ocx init、ocx provider、仪表盘 preset、API-key
登录和 OAuth config seed。enrichProviderFromCatalog() 会把模型 metadata 与 capability 分类复制到
保存的 provider 配置。OAuth protocol 实现仍位于 src/oauth/;只有 registry metadata 并不会
自动形成 OAuth flow。
添加 adapter
Section titled “添加 adapter”在 src/adapters/ 中实现 ProviderAdapter(参见
Adapters),在 src/server/adapter-resolve.ts 注册其名称,
并把输出桥接成内部 AdapterEvent。图像处理请复用 image.ts;普通 streaming/tool call 以
openai-chat.ts 为参考。只有 adapter 自己负责 transport retry 时才使用 fetchResponse;Cursor
这类真正的双向 transport 应使用 runTurn。在 tests/ 中添加聚焦测试;如果 factory 属于 public
package API,还要从 src/index.ts export。
添加兼容性声明
Section titled “添加兼容性声明”兼容性声明位于 src/compatibility/。声明的范围比 adapter 更窄:它必须指定已经验证的准确 provider、
规范化 upstream base URL、认证模式、inbound/upstream 协议和 model id。不要仅因为使用相同的 adapter
或 wire format,就把声明复制到其他 provider 或目标地址。
请使用带版本的 disposition:passthrough、translated、degraded 或 unsupported。每个非
passthrough 声明都必须说明具体限制;基于 fixture 的声明必须列出证明它的准确 assertion id。
在 tests/fixtures/compatibility/ 中添加不含 secret 的 request vector,并编写通过 production adapter
执行该向量的聚焦测试。
兼容性 manifest 是被动数据。普通 router、Responses handler 和 server startup path 不得导入 manifest 目录或激活 Compatibility Lab。
在声称完成前先验证
Section titled “在声称完成前先验证”先运行能证明改动的最小命令:类型检查用 bun run typecheck,行为检查用聚焦的
bun test tests/<name>.test.ts 或 runtime probe,然后再执行适合影响范围的更宽 gate。
opencodex 倾向于小而可验证的 commit,而不是大批量改动。

