返回目录

easyeda-agent

维护状态: 活跃

zhoushoujianwork/easyeda-agent

嘉立创EDA专业版(EasyEDA Pro)自动化:给 AI harness 装上画板的「手」—— 一套 typed 原理图/PCB 动作,CLI / Agent Skill / stdio MCP 三形态融合接入。承接嘉立创「不以卖板赚钱,以培养中国工程师为己任」 | EasyEDA Pro automation: the hands of your AI harness — typed schematic/PCB actions via CLI, Agent Skill and stdio MCP.

前往 GitHub项目主页
$ curl -fsSL https://raw.githubusercontent.com/zhoushoujianwork/easyeda-agent/main/install.sh | sh

389

星标

57

Fork

Go

语言

NOASSERTION

许可证

2026-06-25

创建于

2026-09-08

最近推送

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)

安装步骤

  1. 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

  2. 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)

  3. 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

  4. 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 适配与能力边界

DSH 适配生态相关

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 humanvalidated 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 hatch
  • Built-in circuit block library (flagship feature)

    `easyeda blocks ls/show/search` queries — works offline, no daemon or EasyEDA window neededverified, 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 comparisonfive-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.
2026-06-252026-08-18v1.1.1

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——回滚靠数据快照加反向操作自建。

08数据与来源

  • 作者声明github.comcf3c990756df…

    一键脚本会:安装/更新 `easyeda` CLI/daemon;自动检测已安装的客户端并把 `easyeda-agent` skill 安装/更新到对应目录 —— Codex(`~/.codex/skills/easyeda-agent`…

  • 作者声明github.comcf3c990756df…

    仓库内的 [`mcp/`](mcp) 是一个本地 stdio MCP 适配层,方便 Codex 等支持 MCP 的

页面基于项目公开文档、仓库元数据和 DSH Plugins 的结构化解析生成;最后核验于 2026-08-21。发现错误?提交更正。

🏆

最佳 DeepSeek Harness 插件

从全目录挑出的 12 个值得优先安装的插件,覆盖各个分类。

DSH Plugins 是独立的 DeepSeek Harness 插件市场,与 DeepSeek 官方无关,也不代表官方背书。第三方插件未经安全审计,安装前请审查源码。

每周获取最新的 DeepSeek Harness 插件,绝不滥发。