/designing-hardware-products
AI-automated hardware product pipeline: from requirements to manufacturable Gerber + compiled firmware + cross-platform app. Orchestrates system design, ESP-IDF firmware, KiCad PCB, UniApp client, and release packaging in a zero-human-touch flow.
$ npx -y skills add telagod/code-abyss --skill designing-hardware-products --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/designing-hardware-products
Context preview
The summary Claude sees to decide when to auto-load this skill.
AI-automated hardware product pipeline: from requirements to manufacturable Gerber + compiled firmware + cross-platform app. Orchestrates system design, ESP-IDF firmware, KiCad PCB, UniApp client, and release packaging in a zero-human-touch flow.
SKILL.md
designing-hardware-products.SKILL.mdname: designing-hardware-products
description: "AI-automated hardware product pipeline: from requirements to manufacturable Gerber + compiled firmware + cross-platform app. Orchestrates system design, ESP-IDF firmware, KiCad PCB, UniApp client, and release packaging in a zero-human-touch flow."
user-invocable: true
argument-hint: "<product-brief: MCU, sensors, features, form-factor>"
allowed-tools: Read, Bash, Write, Edit, Agent, Workflow
# Bash: build firmware (idf.py), generate assets (Python scripts), run uni build
# Write/Edit: create design docs, firmware source, app pages, KiCad scripts
# Agent: parallelize phases (firmware + hardware + app)
# Workflow: orchestrate multi-phase pipeline
Designing Hardware Products
> **判断先于执行**:决定「是否做 / 选什么 / 如何取舍」(栈、方案、架构、权衡)前,先读领域判断内核 `skills/_kernel/hardware/SKILL.md`——它管 judgment,本秘典管 execution;冲突时以内核判断为准。
> From empty directory to shippable product. Requirements in, Gerber + .bin + .apk out.
When to use
| Scenario | Use | Why | |----------|-----|-----| | New IoT / embedded product from scratch | Yes | Full pipeline | | Adding BLE app to existing hardware | Partial | Phase 4 only | | PCB redesign with existing firmware | Partial | Phase 3 only | | One-off breadboard prototype | No | Overkill, just wire it |
Pipeline phases
Phase 1: System Design → DESIGN.md (architecture, topology, protocol)
Phase 2: Firmware → ESP-IDF components, FreeRTOS tasks, BLE GATT
Phase 3: Hardware → KiCad schematic → PCB → route → DRC → Gerber
Phase 4: Mobile App → UniApp (BLE, i18n, dev mode, SVG icons)
Phase 5: Verify + Package → build all → zip release
Each phase is independently re-runnable. Skip phases that already exist.
Key decision points
1. **MCU selection** — ESP32-C3 (BLE+WiFi, RISC-V, cheap) vs ESP32-S3 (AI, USB) vs STM32 (low power) vs nRF (BLE-only) 2. **HV topology** — if product needs high voltage (mosquito swatter, taser), see [references/hv-design.md](references/hv-design.md) 3. **PCB form factor** — match physical product shape, not default rectangle 4. **App framework** — UniApp (WeChat+Android+iOS) vs React Native vs Flutter
Companion skills
- **[operating-kicad-eda](../operating-kicad-eda/SKILL.md)** — Phase 3 detail, KiCad MCP tool routing
- **developing-software** — firmware language patterns (C for ESP-IDF)
- **developing-mobile-apps** — app framework patterns
Usage
/designing-hardware-products "BLE mosquito swatter with kill counting, ESP32-C3, 30x100mm PCB strip"
References
| Topic | File | |-------|------| | Phase execution details | [pipeline-phases.md](references/pipeline-phases.md) | | KiCad 9 gotchas | [kicad9-quirks.md](references/kicad9-quirks.md) | | ESP-IDF patterns | [esp-idf-patterns.md](references/esp-idf-patterns.md) | | HV circuit design | [hv-design.md](references/hv-design.md) | | UniApp patterns | [uniapp-patterns.md](references/uniapp-patterns.md) |
Exit criteria
- [ ] `idf.py build` passes (firmware)
- [ ] KiCad DRC = 0 violations (hardware)
- [ ] `npx uni build` passes (app)
- [ ] Release zip contains: source + binary + Gerber + BOM + docs
Read more
name: designing-hardware-products description: "AI-automated hardware product pipeline: from requirements to manufacturable Gerber + compiled firmware + cross-platform app. Orchestrates system design, ESP-IDF firmware, KiCad PCB, UniApp client, and release packaging in a zero-human-touch flow." user-invocable: true argument-hint: "<product-brief: MCU, sensors, features, form-factor>" allowed-tools: Read, Bash, Write, Edit, Agent, Workflow # Bash: build firmware (idf.py), generate assets (Python scripts), run uni build # Write/Edit: create design docs, firmware source, app pages, KiCad scripts # Agent: parallelize phases (firmware + hardware + app) # Workflow: orchestrate multi-phase pipeline
Designing Hardware Products
> **判断先于执行**:决定「是否做 / 选什么 / 如何取舍」(栈、方案、架构、权衡)前,先读领域判断内核 `skills/_kernel/hardware/SKILL.md`——它管 judgment,本秘典管 execution;冲突时以内核判断为准。
> From empty directory to shippable product. Requirements in, Gerber + .bin + .apk out.
When to use
| Scenario | Use | Why | |----------|-----|-----| | New IoT / embedded product from scratch | Yes | Full pipeline | | Adding BLE app to existing hardware | Partial | Phase 4 only | | PCB redesign with existing firmware | Partial | Phase 3 only | | One-off breadboard prototype | No | Overkill, just wire it |
Pipeline phases
Phase 1: System Design → DESIGN.md (architecture, topology, protocol) Phase 2: Firmware → ESP-IDF components, FreeRTOS tasks, BLE GATT Phase 3: Hardware → KiCad schematic → PCB → route → DRC → Gerber Phase 4: Mobile App → UniApp (BLE, i18n, dev mode, SVG icons) Phase 5: Verify + Package → build all → zip release
Each phase is independently re-runnable. Skip phases that already exist.
Key decision points
1. **MCU selection** — ESP32-C3 (BLE+WiFi, RISC-V, cheap) vs ESP32-S3 (AI, USB) vs STM32 (low power) vs nRF (BLE-only) 2. **HV topology** — if product needs high voltage (mosquito swatter, taser), see [references/hv-design.md](references/hv-design.md) 3. **PCB form factor** — match physical product shape, not default rectangle 4. **App framework** — UniApp (WeChat+Android+iOS) vs React Native vs Flutter
Companion skills
- **[operating-kicad-eda](../operating-kicad-eda/SKILL.md)** — Phase 3 detail, KiCad MCP tool routing
- **developing-software** — firmware language patterns (C for ESP-IDF)
- **developing-mobile-apps** — app framework patterns
Usage
/designing-hardware-products "BLE mosquito swatter with kill counting, ESP32-C3, 30x100mm PCB strip"
References
| Topic | File | |-------|------| | Phase execution details | [pipeline-phases.md](references/pipeline-phases.md) | | KiCad 9 gotchas | [kicad9-quirks.md](references/kicad9-quirks.md) | | ESP-IDF patterns | [esp-idf-patterns.md](references/esp-idf-patterns.md) | | HV circuit design | [hv-design.md](references/hv-design.md) | | UniApp patterns | [uniapp-patterns.md](references/uniapp-patterns.md) |
Exit criteria
- [ ] `idf.py build` passes (firmware)
- [ ] KiCad DRC = 0 violations (hardware)
- [ ] `npx uni build` passes (app)
- [ ] Release zip contains: source + binary + Gerber + BOM + docs
Give your AI coding agent a personality. Composable persona + style + skills for Claude Code, Codex, Gemini CLI & OpenClaw. Ships Tech Persona Card v1.0 spec.
Repo: telagod/code-abyss
Other skills on code-abyss.
- /analyzing-changes
Analyzes code changes, detects documentation drift, and evaluates change impact scope. Use when reviewing diffs, checking doc sync, or running pre-commit analysis. Automatically triggered after design-level changes or refactoring.
Open skill - /analyzing-security
Scans code for security vulnerabilities, detects dangerous patterns, and ensures security decisions are documented. Use when running security scans, auditing code, or checking for OWASP issues, injection risks, or sensitive data leaks. Automatically triggered on new modules,
Open skill - /analyzing-spreadsheets
Processes Excel spreadsheet files (.xlsx, .xlsm, .csv). Creates workbooks, builds formulas, preserves formatting, analyzes tabular data, and validates financial models with zero-formula-error delivery. Use when working with spreadsheet files or tabular data analysis. Do NOT use
Open skill - /applying-ui-design-system
Frontend UI design system selector and implementation guide covering Glassmorphism, Liquid Glass (Apple-style), Neubrutalism, and Claymorphism. Use when building UI components, choosing a visual aesthetic, implementing design tokens, or auditing accessibility/contrast on themed
Open skill - /architecting-security
安全架构与治理:威胁建模 (STRIDE/PASTA/LINDDUN)、零信任身份架构、IAM/SSO/MFA/PAM、合规框架 (SOC2/PCI/HIPAA/GDPR)、DLP、隐私工程、安全控制设计。Use when designing security architecture, threat modeling new systems, implementing zero-trust identity, designing IAM/SSO/PAM, building compliance evidence chains, or planning
Open skill - /automating-devops
DevOps knowledge reference covering Git workflows, testing strategies, DevSecOps, release pipeline orchestration (release.yml, multi-arch images, cosign integration), CI/CD pipelines, database management, observability, and performance optimization. Use when working with Git,
Open skill

