skill
chip-sourcing-skillpack
Public Unreviewedby John Lauer
Native-browser-first parts sourcing for the whole electronics industry — drive the user's signed-in Chrome/Edge (adom-browser-extension) for real logins + no bot-walls. Root strategy skill + one sub-skill per website. chip-fetcher's default.
name: chip-sourcing-mouser description: Source parts from Mouser via the native signed-in browser. Keyword + manufacturer-filtered search, MPN + stock + price extraction.
Mouser (mouser.com)
Native browser preferred (intermittent pup blocking + your account pricing).
Keyword search
https://www.mouser.com/c/?q=<QUERY>
https://www.mouser.com/ProductDetail/<mfr>/<mpn>
Results render in a table (#productTable / rows with data-... and a part-number anchor). Extract:
[...document.querySelectorAll("a[href*='/ProductDetail/']")].map(a=>a.textContent.trim()).filter(Boolean)
Stock + price live in the row; signed-in shows your negotiated pricing. Manufacturer facet on the left narrows to e.g. STMicroelectronics for a clean family list.
---
name: chip-sourcing-mouser
description: Source parts from Mouser via the native signed-in browser. Keyword + manufacturer-filtered search, MPN + stock + price extraction.
---
# Mouser (mouser.com)
Native browser preferred (intermittent pup blocking + your account pricing).
## Keyword search
```
https://www.mouser.com/c/?q=<QUERY>
https://www.mouser.com/ProductDetail/<mfr>/<mpn>
```
Results render in a table (`#productTable` / rows with `data-...` and a part-number anchor). Extract:
```js
[...document.querySelectorAll("a[href*='/ProductDetail/']")].map(a=>a.textContent.trim()).filter(Boolean)
```
Stock + price live in the row; signed-in shows your negotiated pricing. Manufacturer facet on the
left narrows to e.g. STMicroelectronics for a clean family list.