cyntec — cyntec MPN structure cyntec, lib-electronic-components, community, cyntec MPN structure, ide skills, cyntec component selection, cyntec install, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Electronics Agents needing to decipher cyntec's MPN structure for efficient component selection and management. cyntec is a manufacturer skill that provides a standardized structure for decoding and utilizing cyntec's MPN, enabling efficient component selection and management.

Features

Decodes cyntec MPNs using a structured format: [SERIES][SIZE][TYPE]-[VALUE][TOLERANCE][PACK]
Supports packaging type identification (N=Tape/Reel)
Provides tolerance code identification (M=20%, K=10%)
Enables inductance code extraction
Allows type variant identification (T, S, etc.)

# Core Topics

Cantara Cantara
[0]
[0]
Updated: 3/8/2026

Agent Capability Analysis

The cyntec skill by Cantara is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for cyntec MPN structure, cyntec component selection, cyntec install.

Ideal Agent Persona

Perfect for Electronics Agents needing to decipher cyntec's MPN structure for efficient component selection and management.

Core Value

Empowers agents to decode cyntec MPNs, facilitating the extraction of crucial information such as series, size, type, inductance code, tolerance, and packaging, using the MPN structure to optimize component selection and management.

Capabilities Granted for cyntec

Decoding cyntec MPNs for component identification
Automating cyntec component selection based on specific MPN parameters
Generating reports on cyntec component inventory using MPN structure

! Prerequisites & Limits

  • Requires knowledge of cyntec's MPN structure
  • Limited to cyntec components only
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

cyntec

Install cyntec, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

Cyntec Corporation Manufacturer Skill

MPN Structure

Cyntec MPNs follow this structure:

[SERIES][SIZE][TYPE]-[VALUE][TOLERANCE][PACK]
   |      |     |      |        |        |
   |      |     |      |        |        +-- Packaging (N=Tape/Reel)
   |      |     |      |        +-- M=20%, K=10%
   |      |     |      +-- Inductance code
   |      |     +-- Type variant (T, S, etc.)
   |      +-- 3-4 digit size code
   +-- Series (PCMC, VCMD, MCPA, CMC)

Example Decoding

PCMC063T-1R0MN
|   |  |  |  ||
|   |  |  |  |+-- Packaging (N=Tape/Reel)
|   |  |  |  +-- Tolerance (M=+/-20%)
|   |  |  +-- Inductance (1R0 = 1.0uH)
|   |  +-- Type variant (T)
|   +-- Size (063 = 6.3mm)
+-- PCMC = Power Inductor series

MCPA0504-1R0MN
|   |    |  ||
|   |    |  |+-- Packaging (N=Tape/Reel)
|   |    |  +-- Tolerance (M=+/-20%)
|   |    +-- Inductance (1R0 = 1.0uH)
|   +-- Size (0504 = 5.0mm x 4.0mm)
+-- MCPA = Automotive Power Inductor series

CMC0503-471M
|  |    |  |
|  |    |  +-- Tolerance (M=+/-20%)
|  |    +-- Impedance (471 = 470 ohm)
|  +-- Size (0503 = 5.0mm x 3.0mm)
+-- CMC = Common Mode Choke series

Series Reference

PCMC - Power Inductors

FeatureDescription
TypePower inductor
Pattern^PCMC[0-9]{3,4}.*
Size format3-4 digits
ApplicationGeneral power conversion

VCMD - Molded Power Inductors

FeatureDescription
TypeMolded power inductor
Pattern^VCMD[0-9]{3,4}.*
Size format3-4 digits
ApplicationHigh current, shielded

MCPA - Automotive Power Inductors

FeatureDescription
TypeAutomotive-grade power inductor
Pattern^MCPA[0-9]{4}.*
Size format4 digits
ApplicationAEC-Q200 qualified

CMC - Common Mode Chokes

FeatureDescription
TypeCommon mode choke
Pattern^CMC[0-9]{4}.*
Size format4 digits
ApplicationEMI/EMC filtering

Inductance Encoding

Cyntec uses standard R-notation:

R-Notation (Decimal Point)

CodeValueNotes
R470.47uHR at start = sub-1uH
R680.68uHR at start
1R01.0uHR in middle
2R22.2uHR in middle
4R74.7uHR in middle
6R86.8uHR in middle

3-Digit Multiplier Code

CodeValueCalculation
10010uH10 x 10^0
101100uH10 x 10^1
22022uH22 x 10^0
47047uH47 x 10^0
471470uH47 x 10^1

Decoding Algorithm

java
1// R at start (R47, R68) 2if (code.startsWith("R")) { 3 double value = Double.parseDouble("0." + code.substring(1)); 4 return formatInductance(value); 5} 6 7// R in middle (1R0, 2R2) 8if (code.contains("R")) { 9 String[] parts = code.split("R"); 10 double value = Double.parseDouble(parts[0] + "." + parts[1]); 11 return formatInductance(value); 12} 13 14// 3-digit code 15if (code.matches("\\d{3}")) { 16 int mantissa = Integer.parseInt(code.substring(0, 2)); 17 int exponent = Integer.parseInt(code.substring(2, 3)); 18 double microhenries = mantissa * Math.pow(10, exponent); 19 return formatInductance(microhenries); 20}

Size Code Formats

3-Digit Size (PCMC, VCMD)

CodeDimension
0636.3mm
0505.0mm
0404.0mm

4-Digit Size (MCPA, CMC)

CodeDimensions
05045.0mm x 4.0mm
04034.0mm x 3.0mm
05035.0mm x 3.0mm

Tolerance Codes

CodeTolerance
K+/- 10%
M+/- 20%

Package Type by Series

SeriesPackage Type
PCMCPower Inductor
VCMDMolded Power Inductor
MCPAAutomotive Power Inductor
CMCCommon Mode Choke

Handler Implementation Notes

Series Extraction

java
1// Returns series + size + type as the full identifier 2// PCMC063T-1R0MN -> "PCMC063T" 3// MCPA0504-1R0MN -> "MCPA0504" 4 5Matcher m = PCMC_PATTERN.matcher(upperMpn); 6if (m.matches()) { 7 String type = m.group(3); 8 return m.group(1) + m.group(2) + (type != null ? type : ""); 9} 10 11m = VCMD_PATTERN.matcher(upperMpn); 12if (m.matches()) { 13 String type = m.group(3); 14 return m.group(1) + m.group(2) + (type != null ? type : ""); 15} 16 17// MCPA and CMC don't have type suffix 18m = MCPA_PATTERN.matcher(upperMpn); 19if (m.matches()) { 20 return m.group(1) + m.group(2); 21}

Package Code Extraction

java
1// Returns the package type description based on series 2String series = extractSeriesPrefix(mpn); 3return SERIES_PACKAGE_MAP.get(series); 4// Returns: "Power Inductor", "Molded Power Inductor", etc.

Value Extraction

java
1// Value code position varies by series 2// PCMC/VCMD: group(4) after type 3// MCPA/CMC: group(3) directly after size 4 5Matcher m = PCMC_PATTERN.matcher(mpn); 6if (m.matches()) { 7 String valueCode = m.group(4); 8 return parseInductanceCode(valueCode); 9} 10 11m = MCPA_PATTERN.matcher(mpn); 12if (m.matches()) { 13 String valueCode = m.group(3); 14 return parseInductanceCode(valueCode); 15}

Pattern Details

PCMC Pattern

java
1Pattern.compile( 2 "^(PCMC)(\\d{3,4})([A-Z]?)[-]?([0-9R]+)([A-Z]*)$" 3); 4// Groups: (1)series (2)size (3)type (4)value (5)tolerance+options

VCMD Pattern

java
1Pattern.compile( 2 "^(VCMD)(\\d{3,4})([A-Z]?)[-]?([0-9R]+)([A-Z]*)$" 3); 4// Same structure as PCMC

MCPA Pattern

java
1Pattern.compile( 2 "^(MCPA)(\\d{4})[-]?([0-9R]+)([A-Z]*)$" 3); 4// No type field, 4-digit size only

CMC Pattern

java
1Pattern.compile( 2 "^(CMC)(\\d{4})[-]?([0-9]+)([A-Z]*)$" 3); 4// Numeric-only value (impedance), no R-notation

Component Types

Cyntec products map to:

  • INDUCTOR - All inductor and choke products
  • IC - Also registered for pattern matching compatibility

CMC Impedance Encoding

Common mode chokes use 3-digit impedance code (like ferrite beads):

CodeImpedance
471470 ohm
1021000 ohm
2222200 ohm

Common Part Numbers

MPNDescription
PCMC063T-1R0MN1.0uH power inductor, 6.3mm
VCMD063T-2R2MN2.2uH molded inductor, 6.3mm
MCPA0504-1R0MN1.0uH automotive inductor
CMC0503-471M470 ohm common mode choke

  • Handler: manufacturers/CyntecHandler.java
  • Supported types: INDUCTOR, IC
  • No manufacturer-specific ComponentType enum entries

Learnings & Edge Cases

  • Variable size digit count: PCMC/VCMD can have 3 OR 4 digit size codes (063 vs 0504). MCPA/CMC always have 4.
  • Type field presence: PCMC/VCMD have optional type letter (T, S). MCPA/CMC don't have this field.
  • CMC uses impedance: Common mode chokes encode impedance, not inductance. No R-notation allowed.
  • Series included in package code: Unlike other handlers, Cyntec returns the package TYPE name (e.g., "Power Inductor") not size.
  • Dash is optional: The dash before value code may be present or absent.
  • N suffix = tape and reel: Standard packaging suffix.
<!-- Add new learnings above this line -->

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is cyntec?

Perfect for Electronics Agents needing to decipher cyntec's MPN structure for efficient component selection and management. cyntec is a manufacturer skill that provides a standardized structure for decoding and utilizing cyntec's MPN, enabling efficient component selection and management.

How do I install cyntec?

Run the command: npx killer-skills add Cantara/lib-electronic-components/cyntec. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for cyntec?

Key use cases include: Decoding cyntec MPNs for component identification, Automating cyntec component selection based on specific MPN parameters, Generating reports on cyntec component inventory using MPN structure.

Which IDEs are compatible with cyntec?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for cyntec?

Requires knowledge of cyntec's MPN structure. Limited to cyntec components only.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add Cantara/lib-electronic-components/cyntec. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use cyntec immediately in the current project.

Related Skills

Looking for an alternative to cyntec or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI