AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Erc Rules

skill-nickkraakman-skidl-skills-erc-rules · by nickkraakman

>-

No reviews yet
0 installs
7 views
0.0% view→install

Install

$ agentstack add skill-nickkraakman-skidl-skills-erc-rules

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-nickkraakman-skidl-skills-erc-rules)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Erc Rules? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

SKiDL ERC Rules

When to use

  • Before exporting any netlist
  • After any circuit code change
  • During design review (errors must be 0 before proceeding)

Procedure

Drive strength order (PWR > OUT > BIDIR > TRI > OC > IN > NC)

Must-fix errors — treat as blockers:

  • Output-to-output conflict (two OUT pins on same net)
  • Floating input on active IC
  • Power pin conflict
  • Unconnected pin on IC (unless NC)

Warnings — investigate, suppress only with justification:

  • Open-drain needs external pull-up → add resistor or erc_assert()
  • Multi-driver bus (I2C, SPI) → expected; suppress with erc_assert()

Mandatory decoupling: Every IC VCC pin → 100 nF minimum, named C_DECOUP_*

Intentional NC:

U1['NC1', 'NC2'] += NC

Warning suppression:

erc_assert("expected open-drain", net)

ERC run pattern:

if __name__ == "__main__":
    # ... circuit ...
    ERC()

Output

Produce this summary line after every ERC run:

"X errors, Y warnings, Z notes. Circuit is [PASS/FAIL]."

Validation

  • Never declare a circuit ready until errors == 0
  • Suppressed warnings must have a comment explaining why

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.