MIT 许可的 EasyEDA Pro 自动化层——通过 CLI、Agent Skill(Codex / Claude Code)与本地 stdio MCP 提供类型化的原理图/PCB 动作;README 未记载 DeepSeek Harness 专属集成。
DSH 适配
生态相关
作者声明
安全审计
未审计
最后核验
2026-08-21
许可证
MIT
01它能帮你完成什么?
Drive full schematic design in EasyEDA Pro from a plain requirements document via an AI agent
Deliverable multi-page schematics (S0–S6 gated flow) with real LCSC/JLC components, partitioning, wiring and `sch gate --strict` checks — e.g. the showcase run produced 3 schematic pages, 26 real LCSC parts and a pin-by-pin verified netlist
Electronics and hardware engineers who want an AI coding agent to draw production-grade schematics inside EasyEDA Pro (嘉立创EDA专业版)
Automate PCB layout, routing, power planes and copper pours in EasyEDA Pro
Placed and routed boards via the P0–P10 flow: auto-placement, board outline fitting, rule-aware short routing, 4-layer power planes, copper pour, silkscreen collision avoidance and DRC / `pcb check` gates
PCB designers who want agent-driven layout and routing with mechanical gates instead of manual canvas work
Reuse community-verified peripheral circuit blocks instead of redrawing them
One-command placement + wiring + netlist reconciliation via `sch block-apply` from a built-in library of 37 blocks (19 ready / 13 verified / 5 draft): CH340 USB-UART, ESP32 auto-download, button debounce, USB-HUB, buck converters…
Engineers and AI agents that repeatedly rebuild the same peripheral circuits and want validated topologies with author attribution
02如何接入 DeepSeek Harness?
前置条件
- A four-piece set at the same version and all in place: CLI/daemon, connector `.eext` plugin, `easyeda-agent` Skill, and EasyEDA Pro
- EasyEDA Pro with 「允许外部交互」 (allow external interaction) enabled so the connector's WebSocket can reach the local daemon (fixed port 60832)
安装步骤
- 01
Run `curl -fsSL https://raw.githubusercontent.com/zhoushoujianwork/easyeda-agent/main/install.sh | sh` — installs/updates the `easyeda` CLI/daemon, auto-detects installed clients and installs the `easyeda-agent` skill (Codex `~/.codex/skills/easyeda-agent`, Claude Code `~/.claude/skills/easyeda-agent`), then prints the connector `.eext` import URL
$ curl -fsSL https://raw.githubusercontent.com/zhoushoujianwork/easyeda-agent/main/install.sh | sh
- 02
Import the connector `.eext` from the GitHub Release URL printed by the installer, or install it one-click from the LCSC plugin marketplace (marketplace versions may lag the CLI)
- 03
Upgrade later with `easyeda update` (CLI binary with sha256 check + atomic replace, plus skill directory); the connector `.eext` is not auto-upgraded and must be re-imported when flagged stale
- 04
Optional MCP: run `npm --prefix mcp ci --ignore-scripts`, then register the stdio server with your MCP client (README example: `codex mcp add easyeda-agent --env EASYEDA_BIN="$(command -v easyeda)" -- node "$(pwd)/mcp/src/server.mjs"`), and restart the agent client
$ npm --prefix mcp ci --ignore-scripts
验证接入成功
- `easyeda update --check` prints a read-only version-alignment table for cli / skill / connector
- `easyeda daemon health` marks any lagging connector as stale
03DSH 适配与能力边界
No DeepSeek Harness-specific integration is documented — the README positions it as a generic AI-harness automation layer for EasyEDA Pro, installed as a Go CLI/daemon, an Agent Skill for detected clients (Codex / Claude Code), or a local stdio MCP adapter
Typed, observable action system over the official eda.* API
typed CLI commands (`easyeda <domain> <verb>`) from a Skill or a human→validated actions routed through the local daemon to the EasyEDA connector, with audit logs, artifacts, screenshots and DRC results as first-class outputs
modifies the open EasyEDA document via the official eda.* APIdaemon records audit logs/artifacts and performs debounced auto-saveraw JS remains only as a double-confirm `debug.exec_js` escape hatchBuilt-in circuit block library (flagship feature)
`easyeda blocks ls/show/search` queries — works offline, no daemon or EasyEDA window needed→verified, reusable peripheral circuit blocks (37 blocks: 19 ready / 13 verified / 5 draft) with author/contributor attribution
Mechanical gates & audits
`sch gate --strict`, `sch nets --strict`, `sch reconcile`, netlist golden-table comparison→five-check gate (layout-lint→clusters→check→bridge-check→drc), cross-page net-name audits and pin-by-pin netlist reconciliation
Local stdio MCP adapter
the `mcp/` Node adapter reusing the existing `easyeda` CLI/daemon→`easyeda_*` tools discoverable by MCP-capable agents (Codex example provided); does not bypass typed actions, audits, workflow gates or the official eda.* API
exposes easyeda_* tools to MCP clients; the `debug.exec_js` raw-JS domain is not exposed via MCP
04适合谁?何时不该用?
适合
- Electronics and hardware engineers who want an AI coding agent to draw production-grade schematics inside EasyEDA Pro (嘉立创EDA专业版)
- PCB designers who want agent-driven layout and routing with mechanical gates instead of manual canvas work
- Engineers and AI agents that repeatedly rebuild the same peripheral circuits and want validated topologies with author attribution
不适合
- The CLI/daemon, connector `.eext`, Skill and EasyEDA Pro must all be present at the same version; upgrades of CLI + connector + Skill must happen together, and the connector `.eext` is sideloaded with no in-place auto-update — it must be re-imported when `easyeda update` flags it stale.
- Requires EasyEDA Pro (嘉立创EDA专业版) with 「允许外部交互」 enabled, and the daemon binds a fixed local port 60832 for the connector's WebSocket — without either, no connection is possible.
- Schematic flow (S0–S6) is officially delivered while the PCB flow (P0–P10) is still evolving; the platform `eda.*` API has no programmatic undo/redo, so rollback relies on self-built snapshots + inverse operations, and controlled-impedance Z0 computation is impossible because stackup parameters are unreadable.
05兼容性、维护与安全提示
- The CLI/daemon, connector `.eext`, Skill and EasyEDA Pro must all be present at the same version; upgrades of CLI + connector + Skill must happen together, and the connector `.eext` is sideloaded with no in-place auto-update — it must be re-imported when `easyeda update` flags it stale.
- Requires EasyEDA Pro (嘉立创EDA专业版) with 「允许外部交互」 enabled, and the daemon binds a fixed local port 60832 for the connector's WebSocket — without either, no connection is possible.
- Schematic flow (S0–S6) is officially delivered while the PCB flow (P0–P10) is still evolving; the platform `eda.*` API has no programmatic undo/redo, so rollback relies on self-built snapshots + inverse operations, and controlled-impedance Z0 computation is impossible because stackup parameters are unreadable.
MIT · actively maintained (latest release v1.1.1, 2026-08-20)
06常见问题
easyeda-agent 支持 DeepSeek Harness 吗?
README 未提及 DeepSeek Harness。它的定位是通用 AI harness 自动化层:一套 Go CLI/daemon、安装到代理 skill 目录(Codex `~/.codex/skills/`、Claude Code `~/.claude/skills/`)的 `easyeda-agent` Skill,以及供 Codex 等 MCP 客户端使用的本地 stdio MCP 适配层。
安装前需要准备什么?
四件套必须同版本、同时在位:CLI/daemon、连接器 `.eext` 插件、`easyeda-agent` Skill,以及开启「允许外部交互」的 EasyEDA Pro——这样连接器的 WebSocket 才能连到固定端口 60832 上的本地 daemon。
如何安装和升级?
执行一键脚本 `curl -fsSL https://raw.githubusercontent.com/zhoushoujianwork/easyeda-agent/main/install.sh | sh`:安装 CLI/daemon、把 skill 部署到检测到的客户端,并打印连接器 `.eext` 导入地址。之后升级用 `easyeda update`;侧载的连接器被标记落后时需重新导入。
我的设计数据会去哪里?
全部留在本地:daemon 跟踪已连接的 EasyEDA 窗口,经 WebSocket 把每个 typed action 路由到编辑器内的连接器,并记录审计日志、产物与校验结果;连接器只执行被批准的动作,且全部落到官方 `eda.*` API。
它目前做不到什么?
不做迷宫档自动布线(完整布线走外部 Freerouting 的 DSN 往返)、无法计算受控阻抗 Z0、没有泪滴 typed API,且平台无编程 undo——回滚靠数据快照加反向操作自建。
07相关的 DSH 工作流
ruflo
作者 ruvnet
原版智能体元框架(meta-harness):支持多智能体集群部署、自主工作流编排与对话式 AI 系统构建,内置自适应记忆、自学习智能与 RAG 检索,原生集成 Claude Code / Codex / Hermes 等大量工具。
reactive-resume
作者 amruthpillai
注重隐私的开源简历生成器,安全、可定制、可移植,永久免费,支持自托管。
everos
作者 evermind-ai
为所有 AI 智能体提供的便携统一记忆层,本地优先、Markdown 原生、数据归用户所有,跨应用与工作流自进化。
yao
作者 yaoapp
在桌面、移动端、浏览器或 API 上统一管理你的智能体与工作区,看板式任务追踪,支持自托管。
08数据与来源
一键脚本会:安装/更新 `easyeda` CLI/daemon;自动检测已安装的客户端并把 `easyeda-agent` skill 安装/更新到对应目录 —— Codex(`~/.codex/skills/easyeda-agent`…
仓库内的 [`mcp/`](mcp) 是一个本地 stdio MCP 适配层,方便 Codex 等支持 MCP 的
页面基于项目公开文档、仓库元数据和 DSH Plugins 的结构化解析生成;最后核验于 2026-08-21。发现错误?提交更正。
最佳 DeepSeek Harness 插件
从全目录挑出的 12 个值得优先安装的插件,覆盖各个分类。
