circuit-simulation-orchestrator

circuit-simulation-orchestrator is an agent for Claude Code from hdl-tools/analog-chip-design-agents. It costs 82 tokens per session (2,092 once invoked), scanned A, original, MIT.

An agent that coordinates analog circuit simulations, which test how electronic circuits behave under different conditions.

In plain words
What is it for?
Use it to set up testbenches, run DC, AC, transient, noise, corner, and Monte Carlo analyses, sign off specifications, and request circuit fixes when results fail.
Why use it?
It organizes the analyses needed to check whether a circuit meets its electrical requirements across operating conditions and random component variation.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter.

Part of the analog-design-simulation plugin — 1 skill, 1 agent shipped together

Good fit Use it to set up testbenches, run DC, AC, transient, noise, corner, and Monte Carlo analyses, sign off specifications, and request circuit fixes when results fail.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/hdl-tools/analog-chip-design-agents/circuit-simulation-orchestrator
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/hdl-tools/analog-chip-design-agents

Made for: Claude Code.

Or install analog-design-simulation, the plugin that ships this one along with the rest of its 1 skill, 1 agent.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for circuit-simulation-orchestrator

README.md
[![agentmods](https://agentmods.dev/badge/agents/hdl-tools/analog-chip-design-agents/circuit-simulation-orchestrator/github.svg)](https://agentmods.dev/agents/hdl-tools/analog-chip-design-agents/circuit-simulation-orchestrator)
Your own site
<a href="https://agentmods.dev/agents/hdl-tools/analog-chip-design-agents/circuit-simulation-orchestrator"><img src="https://agentmods.dev/badge/agents/hdl-tools/analog-chip-design-agents/circuit-simulation-orchestrator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for circuit-simulation-orchestrator

Your own site · 80×15
<a href="https://agentmods.dev/agents/hdl-tools/analog-chip-design-agents/circuit-simulation-orchestrator"><img src="https://agentmods.dev/badge/agents/hdl-tools/analog-chip-design-agents/circuit-simulation-orchestrator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 82 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,092 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00082 $0.02092
Opus 5 $0.00041 $0.01046
Sonnet 5 $0.00016 $0.00418
Haiku 4.5 $0.00008 $0.00209

Measured 10d ago against content hash 899dd1aac7db, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

circuit-simulation-orchestrator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/simulation/agents/circuit-simulation-orchestrator.md · 175 lines

How it starts

The opening of the file, as written. The whole thing — 175 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are the Circuit Simulation Orchestrator.

Stage Sequence

testbench_setup → dc_op → ac_analysis → transient → noise_analysis → corner_analysis → monte_carlo → sim_signoff

Tool Options

Open-Source

  • ngspice (ngspice), Xyce (Xyce), gnucap (gnucap), Qucs-S (qucs-s), PySpice

Proprietary

  • Cadence Spectre / Spectre X / APS (spectre)
  • Synopsys HSPICE / PrimeSim / FineSim, Siemens AFS / Eldo, Silvaco SmartSpice, Empyrean ALPS

MCP Preference

  1. ngspice-session MCP (Tier-2) — load the netlist once, then run repeated .measure/corner sweeps without reloading; lowest overhead for corner and MC loops.
  2. ngspice / xyce batch MCP (Tier-1) — one-shot single-analysis runs.
  3. Wrapper scriptwrap-ngspice.sh / wrap-xyce.sh if MCP not configured.
  4. Direct execution — last resort (raw .lis/.log consume context). Large Monte-Carlo (thousands of points) runs via Bash + Xyce; read the summary file, not raw logs.

Re-validation / Fix-Request Mode

When invoked with a fix_request.id (after circuit-design serviced it): skip constraint validation, re-run from corner_analysis (or the failing analysis) against the named spec_or_metric + corner. If the spec now passes, do not open a new fix_request and report PASS so the pipeline-orchestrator can advance. If it still fails, update the existing entry.

Loop-Back Rules

  • dc_op FAIL (non-convergence) → testbench_setup (clean options) (max 2×) → escalate (failure_class: convergence)
  • ac_analysis / transient FAIL at nominal → testbench_setup (check stimulus) (max 1×)
  • corner_analysis FAIL (spec miss) → open fix_request → circuit-design (failure_class: spec_violation)
  • monte_carlo FAIL (yield miss) → open fix_request → circuit-design (failure_class: yield)
  • any loop exceeds its cap → escalate to the user with full state + recommendation

Sign-off Criteria (all required)

  • All AC/transient/noise specs pass at every corner in design_state.constraints.corners
  • mc_yield_sigma: >= design_state.constraints.yield.target_sigma (default: 3)
  • Convergence clean across all runs

Read the full file on GitHub · 175 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 175 lines · 82 tokens per session scan A 899dd1aac7db

Subscribe to this mod's changes

circuit-simulation-orchestrator is an agent published in the GitHub repository hdl-tools/analog-chip-design-agents (22 stars, last pushed 3mo ago), licensed MIT. It adds 82 tokens to every session and 2,092 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

Drone/Reality Mapping Specialist

Photogrammetry and reality capture expert who processes drone imagery into orthomosaics, digital terrain models, point clouds, and 3D meshes — bridging field capture and GIS-ready products.

SHAdd0WTAka/Zen-Ai-Pentest · 44 tokens

drone_inspection_specialist

You are an expert in drone-based computer vision for infrastructure inspection, specializing in forest fire detection, roof inspection, residential property assessment, and cutting-edge Gaussian Splatting (3DGS) reconstruction techniques.

curiositech/some_claude_skills · 0 tokens

drone_cv_expert

You are an expert in robotics, drone systems, and computer vision with deep knowledge of autonomous systems, real-time image processing, and aerial robotics.

curiositech/some_claude_skills · 0 tokens

antenna-engineer

Reasons from gain–directivity–efficiency, Chu–Harrington bandwidth limits, and array factor through HFSS/CST/FEKO synthesis, IEEE 149-2021 NF/FF/CATR metrology, CTIA TRP/TIS/ECC OTA, and Friis link budgets while treating ground-plane truncation, active impedance in arrays, range ripple, and S₁₁≠pattern conflation as…

K-Dense-AI/scientific-agents · 97 tokens

brain-computer-interface-engineer

Reasons from modality–paradigm fit (EEG, ECoG, Utah arrays), CSP/Riemannian decoding (pyriemann, MOABB), BCI2000/OpenBCI pipelines, and charge-density stimulation safety; validates within- vs cross-session claims and treats muscle ICA, impedance drift, and IDE/IRB gates as first-class failure modes.

K-Dense-AI/scientific-agents · 82 tokens

coastal-engineer

Reasons from joint-probability surge and waves through CEM/EurOtop runup-overtopping, Van der Meer/Rock Manual armor, CERC–Van Rijn sediment budgets, and CMS/XBeach/ADCIRC–SWAN model selection while treating toe scour, armor breakage, datum mismatch (BFE vs MHHW), and downdrift impacts as first-class failure modes.

K-Dense-AI/scientific-agents · 85 tokens