惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
Netflix TechBlog - Medium
IT之家
IT之家
博客园_首页
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
小众软件
小众软件
博客园 - 叶小钗
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
罗磊的独立博客
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
博客园 - 【当耐特】
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
GitHub - usetraces/traces: supercharged ee tools
benstirling · 2026-06-25 · via Show HN

Open-source tooling for KiCad: semantic component sourcing and schematic review that runs entirely on your machine against your API keys. No accounts, no hosted backend, no billing.

traces sourcing parts inside KiCad

There are three tools:

  1. mcp — a local sourcing server you install into your agent
  2. kicad extension — a KiCad plugin that talks to the local server
  3. semantic rule check (SRC) — a /src skill for Claude Code / Codex

Setup

One command installs all three tools (server, KiCad plugin, /src skill):

git clone https://github.com/usetraces/traces.git
cd traces
./install.sh           # creates .env, installs deps; pulls a local model if no cloud key

./install.sh creates .env for you. Add keys to it as needed, then re-run if you like — sourcing works against the local model with no keys at all. You can also install just one piece: ./install.sh mcp | kicad | skill.

All three tools read keys from the repo-root .env:

Key Needed for
OPENROUTER_API_KEY cloud LLM for sourcing (optional — blank = fully local)
MOUSER_API_KEY Mouser sourcing
DIGIKEY_CLIENT_ID / DIGIKEY_CLIENT_SECRET Digi-Key sourcing
(none) JLCPCB / LCSC sourcing works with no key

Prerequisites: ./install.sh auto-installs uv and (for local mode) Ollama. You need Node.js 20+ and KiCad already present.


1. mcp

A local server that turns natural language ("low-Rds N-MOSFET in SOT-23", "100nF 0402 X7R") into ranked, in-stock parts across JLCPCB/LCSC, Digi-Key, and Mouser. The OpenRouter-backed Node agents interpret each request like an engineer, query the supplier APIs, and the results are merged and ranked in-stock-first, then by footprint match and price.

cd mcp
./install.sh        # uv sync + npm install

Run it as a local HTTP server (what the KiCad extension connects to):

uv run traces-serve   # serves http://127.0.0.1:8000

Or install the stdio MCP into your agent. For Claude Code:

claude mcp add traces -- uv run --directory /path/to/traces/mcp traces-mcp

Tools exposed to the agent:

  • source_component(query, footprint?, suppliers?, max_price?, min_qty?, count?) — ranked in-stock candidates
  • find_datasheet(lcsc) — datasheet PDF URL for an LCSC C-number
  • netlist_check(xml, check) — run a semantic rule check over netlist XML

Override the model with DEFAULT_MODEL in .env (default google/gemini-3.1-flash-lite).

Running fully local (no OpenRouter key)

If OPENROUTER_API_KEY is blank — or set but broken/unreachable — traces automatically falls back to a local Ollama model. No key, nothing leaves your machine. The model is OLLAMA_MODEL (default gemma4).

./install.sh sets this up for you: when there's no OpenRouter key it installs Ollama and pulls OLLAMA_MODEL. To do it by hand, or to use a different tool-capable model (sourcing uses function-calling):

ollama pull gemma4        # verified; qwen2.5 / llama3.1 also work
# leave OPENROUTER_API_KEY blank in .env (OLLAMA_MODEL=gemma4 is the default)
uv run traces-serve

The SRC checks (JSON only) work with any chat model; sourcing needs tool support. Local runs are slower (tens of seconds per sourcing call) but produce the same ranked, in-stock results.

Eval

Smoke-test the pipeline against whichever provider is active:

uv run traces-eval            # sourcing (all suppliers) + SRC checks
uv run traces-eval --src-only # netlist checks only (no tool-calling needed)

Verified end-to-end against local gemma4 via Ollama — both the SRC checks and JLCPCB/Digi-Key/Mouser sourcing pass with no OpenRouter key.


2. kicad extension

A KiCad 10 PCB-editor plugin that reconciles schematic metadata, sources parts into schematic properties, fetches datasheets, pulls KiCad symbols/footprints from LCSC, and runs SRC — all against the local server above.

cd kicad-extension
./install.sh        # copies the plugin into your KiCad plugins dir

Then:

  1. Start the server: (cd ../mcp && uv run traces-serve)
  2. Restart KiCad so it loads the plugin.
  3. Open a saved PCB → Tools → External Plugins → traces.

The plugin points at http://127.0.0.1:8000; it does not require sign-in.


3. semantic rule check (SRC)

A skill for Claude Code / Codex that reviews a local KiCad project for semantic net problems ERC can't catch — net-label typos, inconsistent bus naming, orphan (single-pin) nets, and near-duplicate net names. The agent does the reasoning directly, so no server or key is needed.

Install the skill (Claude Code example):

mkdir -p ~/.claude/skills/src
cp src/SKILL.md ~/.claude/skills/src/

Then, from a directory containing a KiCad project:

See src/SKILL.md for what each check flags.


Architecture

traces/
├── mcp/              # local sourcing server (FastMCP + FastAPI + Node agents)
│   └── src/traces_mcp/
│       ├── mcp_server.py   # stdio MCP  (traces-mcp)
│       ├── app.py          # local HTTP (traces-serve) for the KiCad extension
│       ├── semantic.py     # cross-supplier ranking
│       ├── suppliers/      # JLCPCB / Digi-Key / Mouser clients + sourcing
│       ├── netlist.py      # SRC checks (OpenRouter or local Ollama)
│       ├── library.py      # LCSC symbol/footprint via easyeda2kicad
│       └── agents/*.mjs    # sourcing agents (Node, OpenAI-compatible)
├── kicad-extension/  # KiCad plugin (traces.py)
└── src/              # the /src SRC skill (SKILL.md)

The KiCad extension speaks the same /jobs/* submit-and-poll contract the old hosted backend used, so the local server is a drop-in: requests are computed inline with an in-memory job store — no Redis, no auth, no billing.

What changed from the hosted version

This repo is the open-source extraction of the original hosted product. Removed: Supabase auth, Stripe billing, the marketing site / dashboard / stats pages, the Redis + ARQ job queue, and all account/sign-in flows. The sourcing engine, the KiCad plugin, and the SRC checks are preserved and rewired to run locally.

License

MIT — see LICENSE.