mixed-signal-cosim

mixed-signal-cosim is a skill for Claude Code from vibeic/vibe-ic. It costs 59 tokens per session (990 once invoked), scanned A, original, Apache-2.0.

A combined simulation of digital logic and analog circuit models. It checks how gate-level digital Verilog works when connected to behavioral models of analog blocks such as voltage regulators.

In plain words
What is it for?
It helps verify digital connections to analog blocks using a digital netlist, analog behavioral Verilog, a testbench, and expected analog behavior.
Why use it?
Separate digital and analog tests can miss problems at their connection points. Running them together exposes integration errors between the two sides.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 plugins/vibe-ic/_shared/skill_compliance_check.py \.

Part of the vibe-ic plugin — 70 skills, 8 commands, 8 agents, 2 hooks, 1 MCP server shipped together

Good fit It helps verify digital connections to analog blocks using a digital netlist, analog behavioral Verilog, a testbench, and expected analog behavior.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/vibeic/vibe-ic
agentmods
npx agentmods add skills/vibeic/vibe-ic/mixed-signal-cosim

Made for: Claude Code.

Or install vibe-ic, the plugin that ships this one along with the rest of its 70 skills, 8 commands, 8 agents, 2 hooks, 1 MCP server.

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 mixed-signal-cosim

README.md
[![agentmods](https://agentmods.dev/badge/skills/vibeic/vibe-ic/mixed-signal-cosim/github.svg)](https://agentmods.dev/skills/vibeic/vibe-ic/mixed-signal-cosim)
Your own site
<a href="https://agentmods.dev/skills/vibeic/vibe-ic/mixed-signal-cosim"><img src="https://agentmods.dev/badge/skills/vibeic/vibe-ic/mixed-signal-cosim/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 mixed-signal-cosim

Your own site · 80×15
<a href="https://agentmods.dev/skills/vibeic/vibe-ic/mixed-signal-cosim"><img src="https://agentmods.dev/badge/skills/vibeic/vibe-ic/mixed-signal-cosim.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 990 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00059 $0.00990
Opus 5 $0.00030 $0.00495
Sonnet 5 $0.00012 $0.00198
Haiku 4.5 $0.00006 $0.00099

Measured 9d ago against content hash 0a3fa4982098, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

mixed-signal-cosim 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 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (tests/test_compliance.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

vibe-ic-marketplace/plugins/vibe-ic/skills/mixed-signal-cosim/SKILL.md · 112 lines

How it starts

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

Mixed-Signal Co-Sim

Verifies that analog blocks work correctly when connected to the digital logic by running a combined simulation: digital gate-level netlist + analog behavioral Verilog models (derived from SPICE corner results).

When to use

  • Step A9 of the analog track (final integration verification)
  • After analog-hardmacro-gen has produced behavioral Verilog models
  • When the user says "does the digital logic talk correctly to the LDO?"

Inputs

  1. Digital gate-level netlist (synth/netlist.v or pnr/routed.v)
  2. hardmacro/<block>/<block>.v — behavioral Verilog per analog block
  3. Digital testbench (sim/tb_*.v)
  4. analog/<block>/spec.json — expected analog behavior

Approaches (in order of preference)

Approach 1: Behavioral Verilog (default, works with iverilog)

Generate enhanced behavioral models that go beyond assign vout = en ? 1'b1 : 1'bz:

module ldo_1v8 (input vin, input en, input [2:0] trim, output reg vout_ok);
  // Model startup delay from SPICE measurements
  parameter STARTUP_DELAY_NS = 50;  // from corner_results.json
  
  initial vout_ok = 0;
  always @(posedge en) begin
    #STARTUP_DELAY_NS vout_ok = 1;
  end
  always @(negedge en) vout_ok = 0;
endmodule

Run via eda_simulate with the digital netlist + behavioral models.

Approach 2: ngspice mixed-mode (advanced)

Use ngspice's digital simulation capability for true analog-digital co-sim:

  • Digital blocks modeled as d_source / d_state models
  • Analog blocks as full transistor-level SPICE
  • Connected via adc_bridge / dac_bridge XSPICE models

Run via eda_spice with a combined deck.

Workflow

  1. Identify all analog-digital boundaries in the design
  2. For each analog block: a. Load corner_results.json → extract key timing parameters b. Generate enhanced behavioral Verilog with realistic delays
  3. Assemble co-simulation netlist:
    • Digital top module (gate-level or RTL)
    • Analog behavioral models replacing analog subcircuit instances
    • Shared testbench with stimulus
  4. Run simulation via eda_simulate
  5. Check:
    • Enable/disable sequences propagate correctly
    • Analog outputs reach expected levels within timeout
    • Digital controller responds to analog status signals
    • No glitches at analog-digital boundaries

Read the full file on GitHub · 112 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 112 lines · 59 tokens per session scan A 0a3fa4982098

Subscribe to this mod's changes

mixed-signal-cosim is a skill published in the GitHub repository vibeic/vibe-ic (23 stars, last pushed yesterday), licensed Apache-2.0. It adds 59 tokens to every session and 990 once invoked, about $0.0003 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-09-03.

Related

Other skills, from other repositories

analog-verify

Pre-simulation review and Spectre simulation verification for analog circuits. Reviews circuit netlist and testbench, runs simulation, produces margin report. Use after analog-design completes a netlist.

Arcadia-1/analog-agents · 41 tokens

jetson-video-pipeline

Use when executing and verifying Jetson Video Codec SDK or PyNvVideoCodec encode/decode, transcode, segmentation, container decode, AV1, or acceptance workflows with exact artifact handoffs.

NVIDIA/skills · 45 tokens

native-sim

Host-based simulation using the Zephyr nativesim board. Covers building for Linux/macOS/Windows, automated testing, host-side debugging (GDB, Valgrind), and host-target integration. Trigger when developing application logic without hardware or setting up CI/CD tests.

beriberikix/zephyr-agent-skills · 57 tokens

boardrepo

Read and review real PCB projects on BoardRepo. Search published hardware designs, open a board's schematic connectivity, bill of materials and files, run KiCad's DRC and ERC, and check a design against a fabrication house's limits. Use whenever the user names a BoardRepo board or URL, asks to find a published board…

flintt-dev/boardrepo-plugin · 156 tokens

analog-netlist-crawl

Crawl and analyze post-layout parasitic netlists without running SPICE. Answers "what's the effective resistance from node A to node B across this massive R mesh?", "inside the VREFN mesh, which device pins are electrically farthest apart?", "which nets have the worst coupling?", "where does settling bottleneck?" — by…

Arcadia-1/analog-agents · 291 tokens

analog-design

Transistor-level circuit design for one analog sub-block. Produces Spectre netlist with hand-calculation rationale. Use when designing a specific circuit block after architecture is defined.

Arcadia-1/analog-agents · 38 tokens