/ 目录 / 演练场 / Automotive Skills Suite
● 社区 jherrodthomas ⚡ 即开即用

Automotive Skills Suite

作者 jherrodthomas · jherrodthomas/automotive-skills-suite

100+ 个 skill 覆盖 ISO 26262、AUTOSAR、ASPICE、MISRA——为 Claude 注入汽车工程领域的词汇表和规则集。

面向在代码审查、需求工作和审计中使用 Claude 的汽车工程师。每个 skill 编码了特定标准或领域模式。安装套件后,在 prompt 中提及标准名称,对应 skill 自动激活。

为什么要用

核心特性

实时演示

实际使用效果

就绪

安装

选择你的客户端

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "automotive-skills-suite": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/jherrodthomas/automotive-skills-suite"
      ],
      "_inferred": true
    }
  }
}

打开 Claude Desktop → Settings → Developer → Edit Config。保存后重启应用。

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "automotive-skills-suite": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/jherrodthomas/automotive-skills-suite"
      ],
      "_inferred": true
    }
  }
}

Cursor 使用与 Claude Desktop 相同的 mcpServers 格式。项目级配置优先于全局。

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "automotive-skills-suite": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/jherrodthomas/automotive-skills-suite"
      ],
      "_inferred": true
    }
  }
}

点击 Cline 侧栏中的 MCP Servers 图标,然后选 "Edit Configuration"。

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "automotive-skills-suite": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/jherrodthomas/automotive-skills-suite"
      ],
      "_inferred": true
    }
  }
}

格式与 Claude Desktop 相同。重启 Windsurf 生效。

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "automotive-skills-suite",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/jherrodthomas/automotive-skills-suite"
      ]
    }
  ]
}

Continue 使用服务器对象数组,而非映射。

~/.config/zed/settings.json
{
  "context_servers": {
    "automotive-skills-suite": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/jherrodthomas/automotive-skills-suite"
        ]
      }
    }
  }
}

加入 context_servers。Zed 保存后热重载。

claude mcp add automotive-skills-suite -- git clone https://github.com/jherrodthomas/automotive-skills-suite

一行命令搞定。用 claude mcp list 验证,claude mcp remove 卸载。

使用场景

实战用法: Automotive Skills Suite

执行 MISRA 感知代码审查

👤 Claude Code 用户 ⏱ ~15 min intermediate

何时使用: 你在交付安全关键 C 代码,希望在正式工具运行前先做一遍 MISRA 初步筛查。

步骤
  1. 激活
    Mention MISRA in prompt; skill loads.✓ 已复制
    → Skill 已激活
  2. 审查
    Paste diff; Claude flags rule violations by rule number.✓ 已复制
    → 带规则编号的注解 diff

结果: 正式工具运行前获得 MISRA 感知的审查反馈。

组合

与其他 MCP 搭配,撬动十倍杠杆

automotive-skills-suite + github

在每个 PR diff 上运行 MISRA 感知审查

Combine automotive-skills-suite with github: Run the MISRA-aware review on every PR diff✓ 已复制

工具

此 MCP 暴露的能力

工具输入参数何时调用成本
multi-skill (见文档) 按标准/领域触发 1 次调用

成本与限制

运行它的成本

API 配额
不适用
每次调用 Token 数
skill 中等大小
费用
免费
提示
只启用你需要的 skill——完整套件较大

安全

权限、密钥、影响范围

凭据存储:
数据出站:

故障排查

常见错误与修复

激活了错误的 skill

在 prompt 中明确指定标准名称

替代方案

Automotive Skills Suite 对比其他方案

替代方案何时用它替代权衡
自写 prompt单个项目使用没有标准覆盖

更多

资源

📖 阅读 GitHub 上的官方 README

🐙 查看未解决的 issue

🔍 浏览全部 400+ MCP 服务器和 Skills