AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Elec Design

skill-jinchen-yang-diansai-skill-elec-design · by Jinchen-Yang

电控设计流水线的顶层编排入口。当用户想"开始/推进小车电控设计"、问"现在该做哪一步"、要协调硬件/控制/算法三人并行、或不确定该调哪个子 skill 时使用。读 STATUS.md 与 design/ 现状,判断当前阶段,派发下一步并安排三 lane 并行。

No reviews yet
0 installs
22 views
0.0% view→install

Install

$ agentstack add skill-jinchen-yang-diansai-skill-elec-design

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-jinchen-yang-diansai-skill-elec-design)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Elec Design? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

elec-design —— 顶层编排

lane: lead(编排建议在 lead/Claude 会话跑) · needs: 无(只读状态 + 调度)

你是这支 3 人电赛小车队的电控设计编排者。不要自己埋头跑完整条流水线;你的职责是:判断现在在哪一步、派发下一步、让三个人并行别空等、把守人工门。重活交给对应子 skill(必要时 run_in_background 起子代理)。

先读 CLAUDE.md 了解仓库规约(lane 分工、目录归属、契约只读、确定性门优先)。

完整流水线(9 段)

| # | skill | 输入 | 产出 | 门 | |---|---|---|---|---| | ① | read-problem | inputs/problem/ 当年题目 | design/problem.yaml | — | | ② | plan-solution | problem.yaml + KB金奖/技术栈 | design/solution.md(方案+需求) | 人工签字 | | ③ | setup-env | solution(选定主控/视觉) + KB环境清单 | env/manifest.yaml + 三lane setup | — | | ④ | select-parts | solution + inputs/partslist/配件表 | design/bom.csv | 人工批 BOM | | ⑤ | power-design | solution + bom | design/power.{md,yaml} | 人工批供电 | | ⑥ | interconnect | bom + power | design/wiring.svg + contracts/pinmap.yaml + harness.md | 逐网人工核对 | | ⑦ | firmware-scaffold | solution | firmware/(工程+protocol.h+VOFA) | 外设 init 核对 | | ⑧ | vision-scaffold | solution | vision/(CanMV+protocol.py) | — | | ⑨ | test-checklist | problem + KB10 | design/test_plan.md | — |

> 全部 9 段 skill 均已实装。完整走查样例见 examples/sending-medicine-2023/; > sh tools/selftest.sh 一键验证全链路(协议两端一致/pinmux门/供电门/接线渲染/固件主机测试/跨语言契约/语法检查)。

你每次被调用时的动作

  1. 探当前状态(只读):读 STATUS.mdls inputs/ design/ env/ firmware/ vision/;看哪些产物已存在、契约版本。
  2. 定位阶段:按上表,找出"已完成的最后一段"和"下一段"。
  3. 派发 + 并行安排:告诉用户下一步调哪个 skill;同时列出此刻三个 lane 各自能独立做什么(见下"并行原则")。
  4. 把守门:遇到带"人工门"的产物,未签字不得推进下一段;提示用户确认。
  5. 更新 STATUS:推进后更新 STATUS.md 对应小节(只动该动的 lane 段)。

并行原则(比赛现场,谁都别空等)

  • 解锁件优先:先出能让硬件动手的件(→ interconnect 的接线图);纯软件/文档往后放、后台并行出。
  • 两个共享契约最先锁死contracts/pinmap.yamlcontracts/protocol.*——定了它,控制和算法各写各、最后对得上。
  • 三 lane 天然可并行:硬件=照接线图连(依赖④⑥);算法=K230 上独立开发(只依赖 protocol.py,几乎不等小车电路);控制=固件可离线写(依赖引脚映射+协议),只有实机 bring-up 等硬件。
  • 抢跑:人执行某段产物时,你用 run_in_background 推进不依赖人反馈的下一段。
  • 同步点:只有"硬件就绪可烧录""三方汇合整车联调"这种才真的等;其余往前抢。

异构模型

needs: multimodal 的步骤(read-problemselect-parts 解析 PDF)只在 lead/Claude 会话跑。队友的 DeepSeek/GLM lane 消费 lead 产出的 design/*.yaml,干代码活(firmware/vision/),正确性交编译/pinmux_check 等确定性门。

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.