Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

bom博姆

Agent Skill

bom 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,572

周安装

63

GitHub Stars

247

下载量

509
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:bom(博姆)
来源仓库:https://github.com/aklofas/kicad-happy
仓库路径:skills/bom
安装命令:
npx skills add https://github.com/aklofas/kicad-happy --skill bom
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/aklofas/kicad-happy --skill bom

简介

bom 管理 KiCad 原理图中的物料清单生命周期,从属性提取到供应商比价。

  • 它联动 digikey、mouser、lcsc 等渠道搜索元件,验证兼容性并导出订单文件。
  • 适用于 PCB 原型制作与量产备料的全流程自动化。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • bom 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

BOM Management

BOM data lives in KiCad schematic symbol properties as the single source of truth. This skill orchestrates the full lifecycle: analyze the schematic, search distributors, validate parts, write properties back, export tracking CSVs, and generate order files.

Related Skills

SkillPurpose
kicadRead/analyze schematics, PCB, footprints
digikeySearch DigiKey, download datasheets (primary prototype source)
mouserSearch Mouser (secondary prototype source)
lcscSearch LCSC (production/JLCPCB parts)
element14Search Newark/Farnell/element14 (international)
jlcpcbPCB fabrication & assembly ordering
pcbwayAlternative PCB fab & assembly

Scripts

Use <skill-path> to reference the BOM skill directory.

# Analyze schematic (JSON output, recursive sub-sheets)
python3 <skill-path>/scripts/bom_manager.py analyze path/to/schematic.kicad_sch --json --recursive

# Export BOM tracking CSV (creates new or merges with existing)
python3 <skill-path>/scripts/bom_manager.py export path/to/schematic.kicad_sch -o bom/bom.csv --recursive

# Generate per-distributor order files (5 boards + 2 spares/line)
python3 <skill-path>/scripts/bom_manager.py order bom/bom.csv --boards 5 --spares 2

# Quick single-distributor order (bypasses Chosen_Distributor column)
python3 <skill-path>/scripts/bom_manager.py order bom/bom.csv --distributor digikey

# Write properties to schematic (dry-run first, then apply)
echo '{"R1": {"MPN": "RC0805FR-0710KL", "Manufacturer": "Yageo"}}' \
  | python3 <skill-path>/scripts/edit_properties.py path/to/schematic.kicad_sch --dry-run

# Sync datasheet URLs from manifest.json back into schematic Datasheet properties
python3 <skill-path>/scripts/sync_datasheet_urls.py path/to/schematic.kicad_sch --recursive --dry-run

Workflow

Skip steps that don't apply. Common shortcuts:

  • "Add Mouser PNs" — search Mouser by MPN for each part → validate → write to schematic → update CSV
  • "Fill in the gaps" — run analyzer with --gaps-only, address each missing field
  • "Update datasheet URLs" — run sync_datasheet_urls.py to backfill empty Datasheet fields from the datasheets manifest
  • "Prepare for production" — ensure every part has an LCSC number, check stock, set Chosen_Distributor to LCSC

Step 1: Understand the Project

python3 <skill-path>/scripts/bom_manager.py analyze path/to/schematic.kicad_sch --json --recursive

The output tells you the project's field naming convention, which distributors are populated, what's missing, and the preferred distributor. Also look for an existing BOM tracking CSV in the project directory or bom/ folder.

The script covers common patterns, but some projects use internal key systems or parametric fields. See references/part-number-conventions.md for the full catalog. Read the schematic if something seems off.

Step 2: Sync Datasheets

Do this immediately. Datasheets are essential context for validation and part selection. Run the preferred distributor's sync first; if some fail, try others — they share the same datasheets/ directory and skip already-downloaded parts.

python3 <digikey-skill-path>/scripts/sync_datasheets_digikey.py path/to/schematic.kicad_sch --recursive
python3 <lcsc-skill-path>/scripts/sync_datasheets_lcsc.py path/to/schematic.kicad_sch --recursive
python3 <element14-skill-path>/scripts/sync_datasheets_element14.py path/to/schematic.kicad_sch --recursive

DigiKey is best (direct PDF URLs). element14 is reliable (no bot protection). LCSC works for LCSC-only parts. Mouser is a last resort (often blocks downloads).

Tell the user where datasheets are (e.g., hardware/<project>/datasheets/). They'll reference them often.

Cross-revision projects: Use a single shared datasheets directory at the project level rather than per-revision. The same MPN's datasheet doesn't change between revisions.

Re-sync after writing new MPNs (Step 5) — the scripts are idempotent. Then backfill Datasheet URLs into the schematic:

python3 <skill-path>/scripts/sync_datasheet_urls.py path/to/schematic.kicad_sch --recursive

This reads datasheets/manifest.json (legacy name index.json still supported) and writes discovered datasheet URLs into empty schematic Datasheet properties. Opportunistic — only fills blanks. If a schematic already has a different URL, it warns about the mismatch without overwriting (use --overwrite to replace). Run with --dry-run first to preview.

Step 3: Gather Part Information

Watch for comma-separated MPNs. Some symbols track multiple physical parts (e.g., battery holder + clip). Split on commas and search each MPN independently — searching the combined string matches the wrong product.

Search strategy based on what's available:

  • Has MPN → search distributors by MPN to get their PNs and stock
  • Has distributor PN but no MPN → search that distributor, get MPN, then search others
  • Has only Value + Footprint → search by description (e.g., "100nF 0402 X7R 16V")

Use the project's preferred distributor first, then alternates. Prototype: DigiKey primary, Mouser secondary. Production: LCSC.

Step 4: Validate Matches

Don't assume existing PNs are correct — distributor PNs go stale (discontinued, renumbered). Verify existing PNs resolve against the API. If a PN returns 404, flag it for replacement.

For every match, verify:

  1. Package matches the schematic footprint (see cross-reference table below)
  2. Specs match (capacitance, resistance, voltage, tolerance)
  3. Description makes sense (a resistor ref should get a resistor)
  4. Lifecycle — not obsolete or EOL
  5. Datasheet URL is a direct PDF link (not a product page)

If ambiguous, ask the user. A wrong part is worse than a missing part.

Step 5: Update the Schematic

KiCad coexistence. The script detects KiCad's lock file and warns but proceeds. KiCad doesn't auto-detect external changes — it keeps its in-memory copy. If KiCad is open, tell the user: *"Close and reopen the schematic (File → Open Recent) to see the changes. Don't save from KiCad first."*

If unsaved KiCad work exists, ask them to save first (Ctrl+S), then run the script, then reopen.

echo '{"R1": {"MPN": "RC0805FR-0710KL", "Manufacturer": "Yageo", "DigiKey": "311-10.0KCRCT-ND"}}' \
  | python3 <skill-path>/scripts/edit_properties.py path/to/schematic.kicad_sch

Backups: By default, no .bak file is created (git tracks changes). Pass --backup if the schematic is not in a git repo or has uncommitted changes the user wants to preserve.

Respect the project's convention. Write to "Digi-Key_PN" if that's what exists, not "DigiKey". Use canonical names only for new projects.

Always write Manufacturer alongside MPN — every API returns it, it's free data.

Step 6: Update the BOM Tracking CSV

python3 <skill-path>/scripts/bom_manager.py export path/to/schematic.kicad_sch -o bom/bom.csv --recursive

CSV columns are dynamic — only distributors the project uses get columns. Base columns: Reference, Qty, Value, Footprint, MPN, Manufacturer. Each active distributor gets a PN column + stock column. Tail columns: Chosen_Distributor, Datasheet, Validated, DNP, Notes.

The Notes column is seeded from schematic BOM Comments properties (or aliases like Notes, Remarks, Ordering Notes, etc.) on first export. On re-export, user edits in the CSV take priority — existing Notes values are preserved and schematic-sourced comments won't overwrite them.

Merge behavior: Re-exporting preserves user-managed columns (stock, Chosen_Distributor, Validated, Notes) while updating schematic-derived columns.

Step 7: Check Stock

For each part with a distributor PN, query current stock via the corresponding distributor skill. Update stock columns in the CSV. Stock data goes stale — note the date and re-check before ordering.

If the chosen distributor is out of stock, flag it and suggest the alternate.

Step 8: Set Chosen Distributor

Factors: stock availability, price at order qty, minimum order/multiples, lead time, shipping consolidation (fewer distributors = fewer shipments).

For prototypes, consolidate to 1-2 distributors (DigiKey + Mouser). For production, LCSC/JLCPCB is cheapest.

Step 9: Re-Sync Datasheets & URLs

Re-run Step 2 (download + URL backfill) to pick up parts added in Steps 3-5. Fast — already-downloaded files are skipped.

Step 10: Validate Datasheets Against Design

Read downloaded datasheets and verify parts are functionally correct for the circuit. This catches wrong-part-number errors that Step 4 might miss.

What to check by type:

  • Passives — voltage rating vs rail voltage, temperature coefficient, power dissipation
  • Regulators — Vin range, Vout, max current, quiescent current
  • MCUs/ICs — supply voltage, I/O levels, peripherals, pinout
  • Connectors — pin count, pitch, current/voltage rating
  • MOSFETs — Vds, Rds(on), gate threshold, thermal dissipation
  • Diodes — Vf, Vr, current rating, recovery time

For large BOMs (50+ parts), focus on power components, critical signal paths, and anything the user flagged. Commodity passives usually don't need deep review.

Step 11: Generate Order Files

Ask how many boards if not already known — this sets the --boards multiplier.

Pre-flight: verify no gaps, CSV is current, Chosen_Distributor is set (or use --distributor flag), stock is fresh.

# Using Chosen_Distributor column, 5 boards + 2 spares
python3 <skill-path>/scripts/bom_manager.py order bom/bom.csv -o bom/orders/ --boards 5 --spares 2

# Or quick single-distributor order
python3 <skill-path>/scripts/bom_manager.py order bom/bom.csv --distributor digikey

--boards multiplies all quantities. --spares adds a flat extra per line after multiplication. --distributor bypasses Chosen_Distributor — generates an order for all parts with that distributor's PN.

Comma-separated PNs (accessories) are auto-split into separate order lines. DNP parts excluded. The script produces one file per distributor in the correct upload format (see references/ordering-and-fabrication.md for format details).

Present the order summary and let the user review/edit before ordering.

Cost estimate: After generating order files, query pricing from distributor APIs at the order quantity and present a total per distributor. See references/ordering-and-fabrication.md for the cost summary template.

BOM Corner Cases & Per-Component Notes

Real projects have BOM quirks that don't fit neatly into standard fields. These are the things that get lost between design and ordering — a connector that's only for prototyping, a cable shared between two boards, a part that needs to be ordered from a specific vendor lot. Actively look for these during BOM analysis; don't wait for the user to mention them.

BOM Comments Field

The BOM Comments symbol property (canonical name) captures per-component freeform notes. It flows into the Notes column in the exported CSV. The script recognizes many aliases: BOM Notes, Ordering Notes, Assembly Notes, Notes, Remarks, Comment, and underscore/space variants.

When to suggest adding BOM Comments:

  • Component is prototype-only (DNP in production, or vice versa)
  • Component has ordering constraints (minimum order qty, long lead time, specific vendor lot)
  • Component is shared with another board (ribbon cables, mating connectors, shared harnesses)
  • Component has assembly notes (orientation matters, hand-solder only, apply after reflow)
  • Component has substitution rules (acceptable alternates, pin-compatible swaps)
  • Component has conditional population (different value for different product variants/SKUs)

Example values:

"Proto only — DNP in production"
"Shares ribbon cable with power board — don't double-order"
"Must be Murata GRM series, no substitution (validated for EMI)"
"Hand-solder after reflow — temperature sensitive"
"Order 10% extra — fragile QFN rework difficult"
"Use 10K for rev A, 4.7K for rev B"
"Mating connector: Molex 39-01-2040 on cable side"

Where Else to Look for BOM Quirks

The schematic symbol property is the best place for per-component notes, but projects scatter this information everywhere. Check all of these:

  1. Schematic text annotations — free text placed on the schematic sheet. The kicad skill's analyzer extracts these as text_annotations. Look for notes near components about ordering, assembly, or variants.
  2. Title block comments — the title block has numbered comment fields. Sometimes used for board-level BOM notes ("All passives 0402 unless marked", "Order from DigiKey for proto").
  3. Project README / docs — look for README.md, docs/, bom/README.md, or any text file mentioning parts, ordering, or assembly. These often contain the highest-level BOM decisions.
  4. Existing BOM CSV Notes column — if a bom.csv already exists, read the Notes column. The user may have added notes there that aren't in the schematic.
  5. Project-level config (.kicad-happy.json) — preferred_suppliers sets sourcing priority, bom section sets field naming and grouping conventions. See skills/kicad/references/config-reference.md for the full schema.
  6. Schematic symbol Description field — sometimes used for assembly notes rather than part description (e.g., "100nF bypass - place close to U3 pin 4").
  7. KiCad custom fields with non-standard names — fields like Assembly, Order, Variant, Config, SKU may contain BOM-relevant info. The analyzer flags these as unrecognized_fields.
  8. DNP with context — a DNP component may need a note about *why* it's DNP and *when* to populate it. KiCad's DNP flag is boolean — the reason belongs in BOM Comments.

Multi-Board / System-Level BOM Concerns

When a project has multiple boards (e.g., main board + daughter board, or sender + receiver):

  • Shared cables/connectors — document on both boards which connector mates with which, and note "don't double-order" on cables shared between boards
  • Shared power supplies — if boards share a PSU, document which board's BOM includes it
  • Common parts across boards — when ordering, consolidate quantities across boards. Note in each board's BOM which parts are shared
  • Board-specific variants — if the same PCB is used with different stuffing options (e.g., different resistor values for different output voltages), use BOM Comments to document the variant rules

Non-BOM Items

Some project-specific items aren't on the schematic but need ordering alongside the BOM. Commonly forgotten:

  • Mating connectors & cables — if the schematic has a connector, the other half needs ordering too (board-to-board, ribbon cables, wire harnesses)
  • Stencil — order a framed stencil with the PCBs (~$7 from JLCPCB/PCBWay)
  • Programming/debug adapter — Tag-Connect cable, SWD ribbon, specific USB cable for the board's debug connector
  • Antenna cables — U.FL to SMA pigtails if the board has an RF connector
  • Mounting hardware — standoffs, screws, nuts specific to the enclosure
  • Thermal management — heat sinks, thermal pads for specific components

Track these as rows in the BOM CSV with Reference = -- and a Note, or in a separate bom/non-bom-items.csv. Mention them separately in cost estimates.

Presenting BOM Comments

When generating reports or order summaries, always surface BOM comments prominently — they're the designer's voice about exceptions and gotchas. Don't bury them. In the order summary, list any component with a BOM comment separately after the main table so the user sees them before clicking "order."

Package/Footprint Cross-Reference

ImperialMetricKiCad Footprint
02010603R_0201_0603Metric
04021005R_0402_1005Metric
06031608R_0603_1608Metric
08052012R_0805_2012Metric
12063216R_1206_3216Metric

Replace R_ with C_ or L_ as appropriate. Prefix with Resistor_SMD:, Capacitor_SMD:, etc.

BOM Diffing

When the schematic changes between revisions, compare the old and new BOM to identify added, removed, and changed parts. Highlight which new parts need sourcing.

Interactive BOM (ibom)

Generates an HTML page showing component locations on the PCB — essential for hand-assembly.

pip install InteractiveHtmlBom
generate_interactive_bom board.kicad_pcb \
  --dest-dir bom/ --name-format "%f_ibom_%r" \
  --extra-fields "MPN,Manufacturer,DigiKey,Mouser,LCSC" \
  --group-fields "Value,Footprint,MPN" \
  --checkboxes "Sourced,Placed" --dnp-field "DNP" --no-browser

Reference Files

Read these when you need detailed lookup data:

  • references/kicad-fields.md — field definitions, aliases, S-expression format, part number patterns
  • references/ordering-and-fabrication.md — distributor paste formats, gerber export, CPL, cost templates
  • references/part-number-conventions.md — detailed analysis of naming patterns across 56+ real projects

Production Readiness Checklist

  • All parts have MPN and LCSC numbers (for JLCPCB) or MPN (for PCBWay)
  • No obsolete or EOL parts
  • Stock verified, basic vs extended parts identified
  • BOM and CPL exported in correct format
  • Gerbers exported and verified
  • Design rules meet manufacturer minimums (see jlcpcb or pcbway skill)
  • Prototype fully tested

Generated Files & Cleanup

The BOM and distributor skills create files in the project tree. Know what they are so you can clean up or .gitignore them.

Files created in the project directory

File/DirCreated ByPurposeKeep in git?
datasheets/DigiKey, LCSC, element14, Mouser sync scriptsDownloaded PDF datasheetsNo — large binaries, re-downloadable
datasheets/manifest.jsonDatasheet sync scriptsTracks download status per MPN (legacy name: index.json)No — regenerated by sync
bom/bom.csvbom_manager.py exportBOM tracking spreadsheetYes — user-curated data
bom/orders/*.csvbom_manager.py orderPer-distributor order upload filesNo — regenerated before each order
*.YYYYMMDD_HHMMSS.bakedit_properties.py --backupSchematic backup before editsNo — use git instead

The kicad skill also creates analyzer JSON and design review markdown reports with user-chosen filenames — see its "Generated Files" section for tracking and cleanup guidance.

Temporary files (outside project)

FileLocationPurpose
digikey_token_cache.jsonSystem temp dirOAuth token cache (9-min TTL, mode 0600)
manifest.tmpdatasheets/Atomic write staging — renamed to manifest.json, never persists

Cleanup commands

# Remove downloaded datasheets (re-downloadable)
rm -rf datasheets/

# Remove order files (regenerate before ordering)
rm -rf bom/orders/

# Remove schematic backups
rm -f *.bak

# Remove KiCad analyzer/report files (filenames vary — check project instructions file)

Suggested.gitignore additions

# BOM skill working files
datasheets/
bom/orders/
*.bak

Keep bom/bom.csv tracked — it contains user-curated data (Chosen_Distributor, Validated, Notes) that can't be regenerated from the schematic alone.

Tips

  • MPN is the universal key — populate it first, enables cross-referencing everything
  • Schematic is source of truth — all BOM data in symbol properties, exported as needed
  • DigiKey first, Mouser second for prototyping; LCSC for production
  • CSV round-trip — Edit Symbol Fields > Export/Import CSV for bulk updates
  • Field Name Templates (KiCad 9+) — pre-define MPN, Manufacturer, LCSC, DigiKey, Mouser
  • DigiKey token reuse — cached to temp file with 9-minute TTL; no need to re-auth per call
  • Second source — use AltMPN field for critical parts
  • Price at target qty — prototype pricing!= production pricing
  • BOM Comments — use the BOM Comments symbol property for ordering/assembly quirks that don't fit in standard fields. Flows into CSV Notes column. Check schematic text annotations, README, and existing CSV notes for scattered BOM info too.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.07%
按下载量换算184

Claude

26.41%
按下载量换算134

Cursor

20.18%
按下载量换算103

Gemini CLI

9.89%
按下载量换算50

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills