Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

chip-specs芯片规格

Agent Skill

chip-specs 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

618

周安装

25

GitHub Stars

公开资料未说明

下载量

194
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:chip-specs(芯片规格)
来源仓库:https://github.com/chipctx/skills
仓库路径:skills/chip-specs
安装命令:
npx skills add https://github.com/chipctx/skills --skill chip-specs
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/chipctx/skills --skill chip-specs

简介

提供嵌入式开发中 MCU 芯片规格的权威查询服务,支持参数、引脚定义与寄存器访问。

  • 需配合 ChipCtx MCP Server 使用,首次调用前必须验证工具可用性或自动安装。
  • 适用于实时获取芯片手册、编程指南和 TRM 资料,提升开发效率与准确性。
  • 使用前请确认网络环境与权限,避免在未配置 MCP 工具时发起无效查询请求。
  • chip-specs 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

ChipCtx MCU Specs

Authoritative MCU chip specification queries for embedded development. Real-time access to chip parameters, pin definitions, TRM registers, and programming guides via the ChipCtx MCP Server.

MCP Server Setup (MUST check before first query)

This Skill requires the ChipCtx MCP Server. Before making any chip query, you MUST verify the MCP tools are available.

Step 1: Check Tool Availability

Check if chip_identify is available as an MCP tool in the current session. If it is, skip to the Standard Query Flow below.

Step 2: Auto-Install (if tools not available)

If chip_identify is NOT available, install the MCP server using one of these methods:

Option A — Claude Code Plugin (recommended, auto-configures MCP): Tell the user to run these commands and restart:

/plugin marketplace add chipctx/skills
/plugin install chipctx@chipctx-marketplace

Option B — Manual MCP setup:

claude mcp add --transport http chipctx --scope user https://mcp.chipctx.com

Step 3: Inform User to Restart

After running the install command, tell the user:

ChipCtx MCP server has been configured. Please restart Claude Code (type /quit then relaunch) for the MCP tools to become available. Then retry your query.

IMPORTANT: Do NOT attempt to call chip_identify or any other ChipCtx MCP tool after installing — they will not be available until the session is restarted. Do NOT fall back to WebFetch or other workarounds. The user MUST restart first.

Other Agents

See the README for MCP configuration on Cursor and other platforms.

When to Apply

Activate this Skill when ANY of the following conditions are detected:

1. Explicit — User mentions chip model

  • Specific model: STM32F407VGT6, ESP32-S3-WROOM-1, nRF52840
  • Series reference: "STM32F4 series", "ESP32", "nRF52"
  • Chip search or comparison: "which chip has BLE and 1MB flash?"

2. Code Context — Chip-specific headers or APIs

  • Headers: stm32f4xx.h, esp_system.h, nrf.h, nrf52840.h
  • HAL/SDK calls: HAL_GPIO_Init(), esp_wifi_init(), nrf_gpio_cfg_output()
  • Chip-specific register or memory address references

3. Project Configuration — Build system files

  • STM32CubeMX .ioc files
  • platformio.ini with board =...
  • Makefile/CMakeLists.txt with MCU definitions (-DSTM32F407xx)
  • ESP-IDF sdkconfig, Zephyr prj.conf

4. Topic-Related — Hardware discussion

  • Pin assignments, peripheral configuration, register operations
  • GPIO, UART, SPI, I2C, ADC, DMA, Timer topics
  • Datasheet, TRM, or hardware design references

MCP Interface Quick Reference

MCP Server Endpoint: https://mcp.chipctx.com (Streamable HTTP)

User IntentMCP ToolInputOutput
Find/identify chip modelchip_identifyquery (string)Chip list with id, model, vendor, series, matchScore
Chip parameters & specschip_specschipId, category?Core params, electrical specs, peripheral list
Pin definitions & packagechip_hardwarechipId, query?Pin table with AF mapping, package info
TRM registers & moduleschip_trmchipId, section?TRM sections, register/field definitions
Programming guide & codechip_programming_guidechipId, topicInit steps, code examples, pitfalls

Key Principle: chipId bridges all queries. Always call chip_identify first to obtain chipId, then use it in all subsequent tool calls.

Intent Routing Matrix

Keywords in User QueryTool to CallPriority
Model, series, find, compare, identifychip_identifyAlways call first
Parameters, specs, frequency, flash, RAM, featureschip_specsBasic info
Pin, GPIO, package, pinout, AFchip_hardwareHardware design
Register, TRM, module, address, bit fieldchip_trmDeep technical
Code, init, configure, program, example, HALchip_programming_guideProgramming

Standard Query Flow

Every chip-related query follows this flow:

Step 0: Verify chip_identify tool is available (see MCP Server Setup above)
        If NOT available -> auto-install and ask user to restart. STOP here.
Step 1: Extract chip model keywords from user input or project context
Step 2: chip_identify(query) -> validate model, get chipId
Step 3: Check matchScore -> confirm unique match or ask user to select
Step 4: Route to appropriate tool based on user intent
Step 5: Format and present results, generate code if requested

Critical: Step 0 is mandatory on the first chip query in a session. If MCP tools are missing, do NOT proceed — install and ask for restart. Never skip Step 2. All other tools require chipId from chip_identify.

Hardware-Aware Identification

The chip identification flow supports automatic detection from project context:

Automatic Detection Sources:

  • C/C++ header includes: #include "stm32f4xx.h" -> STM32F4 series
  • Platform IO config: board = esp32-s3-devkitc-1 -> ESP32-S3
  • CMake definitions: -DNRF52840_XXAA -> nRF52840
  • STM32CubeMX .ioc files: project chip configuration

matchScore Thresholds:

  • = 0.9: High confidence, proceed directly
  • 0.7-0.9: Moderate confidence, confirm with user
  • < 0.7: Low confidence, present candidates for user selection

Multi-Candidate Handling: When multiple chips match, present a numbered list with model, vendor, and description. Ask the user to select. Never silently pick a low-confidence match.

See rules/flow-chip-identify.md for detailed flow and error handling.

Context Injection Strategy

After chip identification, inject specification data progressively:

Layer 1: Always Inject (after identification)

  • Chip model, vendor, series
  • CPU core (e.g., ARM Cortex-M4), max frequency
  • Flash and RAM capacity, operating voltage

Layer 2: On-Demand Inject (when discussing peripherals)

  • Peripheral specs (UART count, SPI features, etc.)
  • Pin definitions and alternate functions for specific peripherals
  • Package info (pin count, dimensions)

Layer 3: Deep Inject (when writing low-level code)

  • TRM register definitions (name, address, bit fields, access type)
  • Programming guide with init sequences and code examples
  • Both HAL-level and register-level implementations

Context Management

  • Avoid overflow: Do NOT load all chip data at once. Load only what the current task needs.
  • Prioritize relevance: When discussing UART, load UART data, not all peripherals.
  • Chip switching: When user switches to a different chip, clear old context completely and load new chip data. Never mix data from different chips.

See rules/flow-context-inject.md for detailed injection flow.

Supported Chip Families

VendorSeriesExample Models
STMicroelectronicsSTM32F0/F1/F2/F3/F4/F7/H7/L0/L1/L4/G0/G4/U5/WB/WLSTM32F407VGT6
EspressifESP32/ESP32-S2/S3/C3/C6/H2ESP32-S3-WROOM-1
Nordic SemiconductornRF52810/832/833/840nRF52840

Rule Categories

Detailed rules are organized in rules/ for progressive loading:

FileImpactDescription
rules/flow-chip-identify.mdHIGHChip identification triggers, 5-step flow, matchScore handling, error recovery
rules/flow-context-inject.mdHIGH3-layer injection strategy, context window management, chip switching protocol
rules/api-chip-identify.mdHIGHchip_identify interface: fuzzy matching, alias recognition, response format
rules/api-chip-trm.mdHIGHchip_trm interface: section filtering, Register/RegisterField data format
rules/api-chip-specs.mdMEDIUMchip_specs interface: 4 category queries, electrical specs with limits
rules/api-chip-hardware.mdHIGHchip_hardware interface: pin/function filtering, AF mapping, package info
rules/api-chip-programming.mdMEDIUMchip_programming_guide: SDK/HAL code, init sequences, dual implementations

Section index: See rules/_sections.md for loading order and strategy.

Full Compiled Document

For platforms that prefer a single file with all rules, see AGENTS.md — a compiled version of all rule files in this Skill.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.61%
按下载量换算69

Claude

29.49%
按下载量换算57

Cursor

18.79%
按下载量换算36

Gemini CLI

8.34%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills