← All plugins
nextboard-hardware-solution
v0.2.0Hardware solution design skills and workflows for embedded and hardware engineers.
CodexClaude Code1 skill
by NextBoardMIT329updated 3 months ago
Source
git clone https://github.com/LeoKemp223/NextBoardClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
nextboard-hardware-solution/
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json└── skills/hardware-solution/SKILL.md
Skills1
hardware-solutionskills/hardware-solution/SKILL.md
Use when the user needs embedded hardware architecture, MCU/SoC selection, power tree design, interface planning, sensor/actuator selection, RF/connectivity, BOM risk assessment, PCB/layout constraints, schematic-ready proposals, validation plans, or hardware design review.
Manifests2
.codex-plugin/plugin.json
{
"name": "nextboard-hardware-solution",
"version": "0.2.0",
"description": "Hardware solution design skills and workflows for embedded and hardware engineers.",
"author": {
"name": "NextBoard"
},
"license": "MIT",
"keywords": [
"hardware",
"embedded",
"schematic",
"architecture",
"bom",
"pcb",
"workflow",
"design-review",
"component-selection"
],
"skills": "./skills/",
"agents": "./agents/",
"hooks": "./hooks/",
"interface": {
"displayName": "NextBoard Hardware Solution",
"shortDescription": "Embedded hardware design workflows",
"longDescription": "Use this plugin to turn embedded product requirements into hardware architecture options, component selection, power trees, interface plans, PCB constraints, BOM risk notes, and validation plans.",
"developerName": "NextBoard",
"category": "Productivity",
"capabilities": [
"Interactive",
"Read",
"Write"
],
"defaultPrompt": [
"Use $hardware-solution to design a hardware proposal for my embedded product.",
"Use $hardware-solution to review this schematic and BOM risk."
],
"brandColor": "#0F766E",
"screenshots": []
}
}.claude-plugin/plugin.json
{
"name": "nextboard-hardware-solution",
"description": "Hardware solution design skills and workflows for embedded and hardware engineers.",
"version": "0.2.0",
"author": {
"name": "NextBoard"
},
"license": "MIT",
"keywords": [
"hardware",
"embedded",
"schematic",
"architecture",
"bom",
"pcb",
"workflow",
"design-review",
"component-selection"
]
}