Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[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"
}
]
}