MISRA 인식 코드 리뷰 실행
언제 쓸까: 안전 핵심 C 코드를 배포하고 MISRA에 대한 첫 번째 검사가 필요할 때.
흐름
-
활성화프롬프트에서 MISRA 언급; 스킬 로드.✓ 복사됨→ 스킬 활성화
-
리뷰diff 붙여넣기; Claude가 규칙 번호로 위반 사항을 표시합니다.✓ 복사됨→ 주석 달린 diff
결과: 공식 도구 실행 전 MISRA 인식 리뷰 피드백.
제작: jherrodthomas · jherrodthomas/automotive-skills-suite
ISO 26262, AUTOSAR, ASPICE, MISRA를 다루는 100개 이상의 스킬 — Claude에게 자동차 공학에서 사용하는 어휘와 규칙 세트를 부여합니다.
코드 리뷰, 요구사항 작업, 감사에 Claude를 사용하는 자동차 엔지니어를 위한 스킬입니다. 각 스킬은 특정 표준 또는 도메인 패턴을 인코딩합니다. 스위트를 설치하고, 프롬프트에서 표준을 언급하면 올바른 스킬이 활성화됩니다.
%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 열기. 저장 후 앱 재시작.
{
"mcpServers": {
"automotive-skills-suite": {
"command": "git",
"args": [
"clone",
"https://github.com/jherrodthomas/automotive-skills-suite"
],
"_inferred": true
}
}
}
Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.
{
"mcpServers": {
"automotive-skills-suite": {
"command": "git",
"args": [
"clone",
"https://github.com/jherrodthomas/automotive-skills-suite"
],
"_inferred": true
}
}
}
Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.
{
"mcpServers": {
"automotive-skills-suite": {
"command": "git",
"args": [
"clone",
"https://github.com/jherrodthomas/automotive-skills-suite"
],
"_inferred": true
}
}
}
Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.
{
"mcpServers": [
{
"name": "automotive-skills-suite",
"command": "git",
"args": [
"clone",
"https://github.com/jherrodthomas/automotive-skills-suite"
]
}
]
}
Continue는 맵이 아닌 서버 오브젝트 배열 사용.
{
"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로 제거.
언제 쓸까: 안전 핵심 C 코드를 배포하고 MISRA에 대한 첫 번째 검사가 필요할 때.
결과: 공식 도구 실행 전 MISRA 인식 리뷰 피드백.
모든 PR diff에 MISRA 인식 리뷰 실행
| 도구 | 입력 | 언제 호출 | 비용 |
|---|---|---|---|
| multi-skill | (문서 참조) | 표준/도메인별 트리거 | 호출 1회 |
잘못된 스킬이 활성화됨프롬프트에서 표준 이름을 더 구체적으로 지정
| 대안 | 언제 쓰나 | 단점/장점 |
|---|---|---|
| 직접 작성한 프롬프트 | 단일 프로젝트일 때 | 표준 커버리지 없음 |