@ross-sec/sync-odSync any codebase to your self-hosted Open Design MCP AND/OR extract its design system. Script-driven, adversarial grading, bidirectional sync with managed blocks.
2
753
近 7 天 181
41.5
生态多维模型
4 天前
2026-08-16
快速安装与配置
opencode.json写入当前项目的 opencode.json,只对这个仓库生效。
opencode.json
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["@ross-sec/sync-od@0.1.5"]
}写入 ~/.config/opencode/opencode.json,对所有项目生效。
~/.config/opencode/opencode.json
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["@ross-sec/sync-od@0.1.5"]
}若你要在本地改造这个插件,先装到项目里再从本地路径引用。
shell
pnpm add -D @ross-sec/sync-odopencode 启动时会通过内嵌运行时自动加载 npm 依赖并缓存至本地目录,无需手动在全局环境执行安装。
Sync With Open Design
Sync any codebase to Open Design and/or extract its design system.
Script-driven, adversarial grading, bidirectional sync with managed blocks.
What it does
| Mode | What happens |
|---|---|
| A — Project sync | Turn a codebase into an OD project: build od-bundle/ OD-safe pages, upload, grade, keep in sync |
| B — Design system sync | Extract the design system: DESIGN.md + tokens (light + dark) |
| Both (default) | Mode B then Mode A |
Features
| Feature | Description |
|---|---|
| 18 bundled scripts | Detect, extract, build, validate, grade, upload — all automated |
| Adversarial grading | 5-axis rubric: THEME / RTL / FIDELITY / COMPLETENESS / POLISH |
| Bidirectional sync | Pull designer edits back safely via managed blocks |
| Secret guard | Blocks secret-bearing content from reaching OD |
| Drift detection | Logs when tracked files are edited |
| Subagent support | Lead / worker / extractor agents |
Install
Global (recommended — available everywhere)
opencode plugin @ross-sec/sync-od --global
This installs to ~/.config/opencode/ and makes /sync-od available in all projects.
Per-project
opencode plugin @ross-sec/sync-od
Adds to project's .opencode/opencode.json — only available in that project.
Prerequisites
OpenDesign daemon MUST be running for sync operations:
- Desktop: open the Open Design app. It starts the daemon on a random high port — not the
documented
7456— so anyodcommand needs--daemon-url http://127.0.0.1:<port>orOD_DAEMON_URL. - Server/CLI:
pnpm tools-dev(from OpenDesign repo)
The plugin auto-detects MCP connectivity and falls back to od CLI if needed.
Usage
/sync-od # full pipeline (both modes)
/sync-od --mode project # Mode A: codebase → OD project
/sync-od --mode design-system # Mode B: extract DESIGN.md + tokens
/sync-od --test # connectivity check only
The tool runs Step A of RE-ANCHOR RITUAL — executes ods-status.js, reports exact next phase. You run that phase's script, verify DONE-gate, flip task box, call /sync-od again. Loop until DONE.
Usage
Once installed, run the autonomous pipeline:
/sync-od # full pipeline (both modes)
/sync-od --mode project # Mode A only: codebase → OD project
/sync-od --mode design-system # Mode B only: extract DESIGN.md + tokens
/sync-od --test # connectivity check only
The plugin runs Step A of RE-ANCHOR RITUAL — executes ods-status.js, reports the exact next phase, then you run that phase's script, verify DONE-gate, flip the task box, and call /sync-od again. Loop until DONE.
Plugin hooks
| Hook | Purpose |
|---|---|
tool.execute.before |
Secret guard — blocks secret-bearing content from being synced |
file.edited |
Drift detection — logs edits to tracked design-sync files |
Scripts
All scripts live in scripts/ and are run by the agent (never by the plugin directly):
| Script | Purpose |
|---|---|
ods-init.js |
Bootstrap .design-sync/ |
ods-detect.js |
Detect stack (Tailwind, CSS vars, etc.) |
ods-extract-tokens.js |
Extract light+dark tokens |
ods-build-design-system.js |
Build DESIGN.md + tokens |
ods-build.js |
Build OD-safe bundle |
ods-validate.js |
Validate bundle |
ods-capture.js |
Grade lifecycle |
ods-resync.js |
The driver (final build) |
ods-upload-plan.js |
Generate upload plan |
ods-upload-verify.js |
Verify upload |
ods-manifest.js |
Track src↔od pairs |
ods-pull.js |
Pull designer edits |
Links
| Platform | Link | Description |
|---|---|---|
| npm | @ross-sec/sync-od | Public package |
| GitHub Packages | ross-sec/sync-od | GitHub mirror |
| Open Design | open-design.ai | The design workspace |
| Skills Hub | skills.ross-developers.com | Ross Technologies skills |
MIT © Andre Ross / Ross Technologies