Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion .claude/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,21 @@
"claude-md-management@claude-plugins-official": true,
"gatekeeper@pleaseai": true,
"mcp-dev@pleaseai": true,
"vitest@pleaseai": true
"testing@passionfactory": true,
"standards@passionfactory": true,
"tidy-first@passionfactory": true,
"vitest@pleaseai": true,
"research@passionfactory": true,
"frontend@passionfactory": true,
"modern-web-guidance@pleaseai": true,
"plannotator@passionfactory": true
},
"extraKnownMarketplaces": {
"code-intelligence": {
"source": {
"source": "directory",
"path": "./"
}
}
}
Comment on lines +39 to 46

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

[HIGH] extraKnownMarketplaces에 지정된 로컬 마켓플레이스 경로에 marketplace.json 파일이 누락되었거나 경로가 올바르지 않습니다.

Problem: .claude/settings.json에서 "code-intelligence" 마켓플레이스의 소스 경로를 "path": "./"로 지정했으나, 저장소 루트 디렉터리(./)에 Claude Code가 마켓플레이스를 인식하는 데 필요한 .claude-plugin/marketplace.json 또는 marketplace.json 파일이 존재하지 않습니다. 이로 인해 Claude Code가 마켓플레이스를 로드하지 못하고 오류가 발생하거나 플러그인을 인식하지 못할 수 있습니다.

Rationale: Claude Code 공식 문서에 따르면, 로컬 디렉터리를 마켓플레이스로 등록하려면 해당 디렉터리에 반드시 .claude-plugin/marketplace.json 파일이 포함되어 있어야 하며, 이를 통해 플러그인 목록과 소스 경로를 정의해야 합니다.

Suggestion: 저장소 루트 디렉터리에 .claude-plugin/marketplace.json 파일을 추가하여 플러그인을 정의하거나, 로컬 플러그인 경로를 올바르게 설정해 주세요. 예를 들어, 다음과 같이 .claude-plugin/marketplace.json 파일을 생성할 수 있습니다.

{
"name": "code-intelligence",
"owner": {
"name": "pleaseai"
},
"plugins": [
{
"name": "code-intelligence-lsp",
"source": "./plugins/code-intelligence-lsp",
"description": "Code Intelligence LSP Plugin"
}
]
}

}
Loading