monol-plugin-scout 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/.claude/plugins/marketplace.json +12 -0
  2. package/.claude/plugins/monol-plugin-scout/CLAUDE.md +135 -0
  3. package/.claude/plugins/monol-plugin-scout/combos/full-review.yaml +33 -0
  4. package/.claude/plugins/monol-plugin-scout/combos/quick-commit.yaml +15 -0
  5. package/.claude/plugins/monol-plugin-scout/commands/audit.md +99 -0
  6. package/.claude/plugins/monol-plugin-scout/commands/cleanup.md +123 -0
  7. package/.claude/plugins/monol-plugin-scout/commands/compare.md +92 -0
  8. package/.claude/plugins/monol-plugin-scout/commands/explore.md +118 -0
  9. package/.claude/plugins/monol-plugin-scout/commands/fork.md +111 -0
  10. package/.claude/plugins/monol-plugin-scout/commands/scout.md +209 -0
  11. package/.claude/plugins/monol-plugin-scout/config.yaml +76 -0
  12. package/.claude/plugins/monol-plugin-scout/data/history.json +36 -0
  13. package/.claude/plugins/monol-plugin-scout/data/usage.json +49 -0
  14. package/.claude/plugins/monol-plugin-scout/overrides/code-review/override.md +21 -0
  15. package/.claude/plugins/monol-plugin-scout/plugin.json +8 -0
  16. package/.claude/plugins/monol-plugin-scout/skills/plugin-evaluation.md +227 -0
  17. package/CHANGELOG.md +41 -0
  18. package/README.md +115 -0
  19. package/docs/DEV_LOG.md +115 -0
  20. package/docs/FEATURE_SPEC.md +284 -0
  21. package/docs/SKILL.md +227 -0
  22. package/docs/TEST_RESULTS.md +155 -0
  23. package/docs/USER_GUIDE.md +364 -0
  24. package/docs/references/license-compatibility.md +58 -0
  25. package/docs/references/scoring-methodology.md +73 -0
  26. package/docs/references/security-checklist.md +91 -0
  27. package/docs/scripts/fetch-plugin-metadata.sh +61 -0
  28. package/examples/basic-usage.md +124 -0
  29. package/package.json +31 -0
@@ -0,0 +1,227 @@
1
+ ---
2
+ name: plugin-evaluation
3
+ description: |
4
+ 플러그인 평가 방법론. 플러그인 점수 계산, 보안 검토, 호환성 분석 시 사용합니다.
5
+
6
+ Use when: "플러그인 평가", "플러그인 점수", "플러그인 보안 검토", "compare plugins",
7
+ "evaluate plugin", "check plugin safety", "plugin compatibility"
8
+ ---
9
+
10
+ # Plugin Evaluation Skill
11
+
12
+ 플러그인을 체계적으로 평가하기 위한 방법론입니다.
13
+
14
+ ## Composite Score Formula
15
+
16
+ ```
17
+ Composite = (Project Match × 0.40) + (Popularity × 0.30) + (Security × 0.30)
18
+ ```
19
+
20
+ **Rating Scale**:
21
+ | Score | Rating | Recommendation |
22
+ |-------|--------|----------------|
23
+ | 90-100 | Excellent | 적극 추천 |
24
+ | 75-89 | Good | 추천 |
25
+ | 60-74 | Fair | 대안 검토 필요 |
26
+ | 40-59 | Poor | 주의 필요 |
27
+ | 0-39 | Not Recommended | 비추천 |
28
+
29
+ ---
30
+
31
+ ## 1. Project Match Scoring (40%)
32
+
33
+ ### Language Detection
34
+
35
+ | Config File | Language | Confidence |
36
+ |-------------|----------|------------|
37
+ | package.json | JavaScript/TypeScript | High |
38
+ | tsconfig.json | TypeScript | High |
39
+ | requirements.txt | Python | High |
40
+ | pyproject.toml | Python | High |
41
+ | Cargo.toml | Rust | High |
42
+ | go.mod | Go | High |
43
+ | pom.xml | Java | High |
44
+ | build.gradle | Java/Kotlin | High |
45
+ | composer.json | PHP | High |
46
+ | Gemfile | Ruby | High |
47
+
48
+ ### Scoring Criteria
49
+
50
+ ```yaml
51
+ language_match:
52
+ exact: 30 # TypeScript plugin for TypeScript project
53
+ related: 15 # TypeScript plugin for JavaScript project
54
+ none: 0
55
+
56
+ framework_match:
57
+ exact: 25 # React plugin for React project
58
+ compatible: 15 # Frontend plugin for React project
59
+ none: 0
60
+
61
+ category_relevance:
62
+ high: 20 # Testing plugin for test-heavy project
63
+ medium: 10
64
+ low: 5
65
+
66
+ dependency_compatibility:
67
+ no_conflicts: 15
68
+ minor_conflicts: 5
69
+ major_conflicts: 0
70
+
71
+ architecture_fit:
72
+ excellent: 10
73
+ good: 5
74
+ poor: 0
75
+ ```
76
+
77
+ ---
78
+
79
+ ## 2. Popularity Scoring (30%)
80
+
81
+ ### GitHub Metrics
82
+
83
+ ```yaml
84
+ stars:
85
+ 10000+: 30
86
+ 1000-9999: 25
87
+ 100-999: 15
88
+ 10-99: 10
89
+ 0-9: 5
90
+
91
+ recent_commits_90d:
92
+ 20+: 20
93
+ 5-19: 15
94
+ 1-4: 10
95
+ 0: 5
96
+
97
+ last_update:
98
+ <30_days: 20
99
+ 30-90_days: 15
100
+ 90-180_days: 10
101
+ 180-365_days: 5
102
+ >365_days: 0
103
+
104
+ issue_health:
105
+ excellent: 15 # >80% closed, fast response
106
+ good: 10
107
+ moderate: 5
108
+ poor: 0
109
+
110
+ fork_activity:
111
+ active: 15
112
+ moderate: 10
113
+ low: 5
114
+ ```
115
+
116
+ ### Normalization Formula
117
+
118
+ For highly variable metrics:
119
+ ```
120
+ normalized_stars = min(log10(stars + 1) / log10(100000) × 100, 100)
121
+ ```
122
+
123
+ ---
124
+
125
+ ## 3. Security Scoring (30%)
126
+
127
+ ### License Analysis
128
+
129
+ ```yaml
130
+ permissive: # 30 points
131
+ - MIT
132
+ - Apache-2.0
133
+ - BSD-2-Clause
134
+ - BSD-3-Clause
135
+ - ISC
136
+
137
+ copyleft: # 20 points
138
+ - GPL-3.0
139
+ - GPL-2.0
140
+ - LGPL-3.0
141
+ - MPL-2.0
142
+
143
+ restrictive: # 0-10 points
144
+ - proprietary: 10
145
+ - unknown: 0
146
+ - custom: 5
147
+ ```
148
+
149
+ ### Vulnerability Assessment
150
+
151
+ ```yaml
152
+ vulnerability_scoring:
153
+ none_known: 40
154
+ minor_fixed: 35 # had issues, all patched
155
+ minor_open: 20 # low-severity unpatched
156
+ moderate_open: 10
157
+ critical_open: 0
158
+ no_data: 20 # cannot assess
159
+ ```
160
+
161
+ ### Author Reputation
162
+
163
+ ```yaml
164
+ author_scoring:
165
+ official_anthropic: 30
166
+ verified_org:
167
+ major_company: 25 # Microsoft, Google, etc.
168
+ known_org: 20
169
+ individual:
170
+ established: 15 # many popular repos
171
+ known: 10
172
+ new: 5
173
+ unknown: 0
174
+ ```
175
+
176
+ ---
177
+
178
+ ## Evaluation Output Template
179
+
180
+ ```yaml
181
+ plugin_evaluation:
182
+ name: [plugin-name]
183
+ marketplace: [marketplace-id]
184
+ version: [version]
185
+
186
+ scores:
187
+ project_match: [0-100]
188
+ popularity: [0-100]
189
+ security: [0-100]
190
+ composite: [0-100]
191
+ rating: [Excellent/Good/Fair/Poor/Not Recommended]
192
+
193
+ project_analysis:
194
+ language_match: [language] ([status])
195
+ framework_match: [framework] ([status])
196
+ category_relevance: [high/medium/low]
197
+
198
+ activity_analysis:
199
+ github_stars: [count]
200
+ recent_commits: [count]
201
+ last_update: [date]
202
+
203
+ security_analysis:
204
+ license: [type]
205
+ license_compatible: [true/false]
206
+ known_vulnerabilities: [none/minor/critical]
207
+ author: [name] ([type])
208
+
209
+ warnings:
210
+ - level: [critical/moderate/informational]
211
+ message: [warning text]
212
+
213
+ recommendation:
214
+ install: [true/false]
215
+ confidence: [high/medium/low]
216
+ command: "/plugin install [name]@[marketplace]"
217
+ ```
218
+
219
+ ---
220
+
221
+ ## Reference Files
222
+
223
+ For detailed information, see:
224
+
225
+ - `docs/references/scoring-methodology.md` - 상세 점수 계산 공식
226
+ - `docs/references/security-checklist.md` - 설치 전 보안 체크리스트
227
+ - `docs/references/license-compatibility.md` - 라이선스 호환성 매트릭스
package/CHANGELOG.md ADDED
@@ -0,0 +1,41 @@
1
+ # Changelog
2
+
3
+ ## [2.0.0] - 2026-01-07
4
+
5
+ ### Added
6
+ - `/scout compare` - 플러그인 비교 기능
7
+ - `/scout cleanup` - 오래된 미사용 플러그인 정리
8
+ - `/scout fork` - 플러그인 포크 기능
9
+ - `/scout explore` - 마켓플레이스 탐색
10
+ - `/scout audit` - 보안/업데이트 점검
11
+ - Override 시스템 - 플러그인 커스터마이징
12
+ - Combos 시스템 - 워크플로우 조합
13
+ - 학습/히스토리 시스템 - 거절/선호도 학습
14
+ - 사용량 추적 시스템
15
+
16
+ ### Changed
17
+ - Post-task 추천을 인터뷰식으로 변경 (간략화)
18
+ - cleanup 기준을 "오래된 미사용"으로 변경 (30일+)
19
+ - 설치 질문에 multiSelect 적용
20
+
21
+ ### Documentation
22
+ - FEATURE_SPEC.md - 기능 명세서 작성
23
+ - TEST_RESULTS.md - 테스트 케이스 및 결과
24
+ - USER_GUIDE.md - 사용자 가이드 및 활용 예시
25
+
26
+ ---
27
+
28
+ ## [1.0.0] - 2026-01-07
29
+
30
+ ### Added
31
+ - 기본 프로젝트 스캔 및 추천
32
+ - 종합 점수 계산 (프로젝트 매칭 40% + 인기도 30% + 보안 30%)
33
+ - 인터뷰식 설치 플로우
34
+ - Post-task 추천 (작업 완료 후)
35
+ - 평가 스킬 (SKILL.md)
36
+ - 참조 문서 (scoring-methodology, security-checklist, license-compatibility)
37
+
38
+ ### Technical
39
+ - plugin-scout.md 에이전트 생성
40
+ - plugin-evaluation 스킬 생성
41
+ - AskUserQuestion 기반 인터뷰 플로우
package/README.md ADDED
@@ -0,0 +1,115 @@
1
+ # monol-plugin-scout
2
+
3
+ Claude Code 플러그인 마켓플레이스 모니터링 및 추천 에이전트
4
+
5
+ ## 기능
6
+
7
+ - **프로젝트 분석**: package.json, pyproject.toml 등으로 언어/프레임워크 자동 감지
8
+ - **마켓플레이스 스캔**: GitHub, NPM, 로컬 마켓플레이스 지원
9
+ - **플러그인 평가**: 프로젝트 매칭(40%) + 인기도(30%) + 보안(30%) 점수
10
+ - **인터뷰식 설치**: 대화형으로 복수 선택 가능한 설치
11
+ - **정리 제안**: 미사용 플러그인 자동 감지 및 정리
12
+
13
+ ## 설치
14
+
15
+ ```bash
16
+ # 1. 레포 클론
17
+ git clone https://github.com/your/monol-plugin-scout.git ~/monol-plugin-scout
18
+
19
+ # 2. Claude Code 설정에 마켓플레이스 등록
20
+ ```
21
+
22
+ `~/.claude/settings.json`:
23
+ ```json
24
+ {
25
+ "extraKnownMarketplaces": {
26
+ "monol-plugin-scout": {
27
+ "source": {
28
+ "source": "directory",
29
+ "path": "~/monol-plugin-scout/.claude/plugins"
30
+ }
31
+ }
32
+ },
33
+ "enabledPlugins": {
34
+ "monol-plugin-scout@monol-plugin-scout": true
35
+ }
36
+ }
37
+ ```
38
+
39
+ ## 사용법
40
+
41
+ ### 기본 추천
42
+ ```
43
+ /scout # 프로젝트 분석 후 맞춤 추천
44
+ /scout --quick # 점수 80+ 만 빠르게
45
+ ```
46
+
47
+ ### 플러그인 비교
48
+ ```
49
+ /scout compare typescript-lsp pyright-lsp
50
+ ```
51
+
52
+ ### 미사용 정리
53
+ ```
54
+ /scout cleanup
55
+ ```
56
+
57
+ ### 마켓플레이스 탐색
58
+ ```
59
+ /scout explore development
60
+ ```
61
+
62
+ ### 보안 점검
63
+ ```
64
+ /scout audit
65
+ ```
66
+
67
+ ### 플러그인 포크
68
+ ```
69
+ /scout fork code-review my-code-review
70
+ ```
71
+
72
+ ## 점수 시스템
73
+
74
+ | 점수 | 등급 | 권장 |
75
+ |------|------|------|
76
+ | 90-100 | Excellent | 적극 추천 |
77
+ | 75-89 | Good | 추천 |
78
+ | 60-74 | Fair | 대안 검토 |
79
+ | 40-59 | Poor | 주의 |
80
+ | 0-39 | Not Recommended | 비추천 |
81
+
82
+ ## 디렉토리 구조
83
+
84
+ ```
85
+ monol-plugin-scout/
86
+ ├── .claude/
87
+ │ └── plugins/
88
+ │ ├── marketplace.json
89
+ │ └── monol-plugin-scout/
90
+ │ ├── plugin.json
91
+ │ ├── config.yaml
92
+ │ ├── CLAUDE.md
93
+ │ ├── commands/
94
+ │ ├── skills/
95
+ │ ├── combos/
96
+ │ ├── overrides/
97
+ │ └── data/
98
+ ├── docs/
99
+ ├── examples/
100
+ ├── tests/
101
+ ├── README.md
102
+ ├── CHANGELOG.md
103
+ └── ROADMAP.md
104
+ ```
105
+
106
+ ## 문서
107
+
108
+ - [사용자 가이드](docs/USER_GUIDE.md)
109
+ - [기능 명세](docs/FEATURE_SPEC.md)
110
+ - [테스트 결과](docs/TEST_RESULTS.md)
111
+ - [개발 일지](docs/DEV_LOG.md)
112
+
113
+ ## 라이선스
114
+
115
+ MIT
@@ -0,0 +1,115 @@
1
+ # Plugin Scout 개발 로그
2
+
3
+ ## 2026-01-07 - 초기 개발 세션
4
+
5
+ ### 배경
6
+
7
+ 사용자가 Claude Code 플러그인 마켓플레이스를 모니터링하고 유용한 플러그인을 추천해주는 에이전트를 만들고 싶다고 요청.
8
+
9
+ ### 논의 내용
10
+
11
+ 1. **기본 구조 논의**
12
+ - 에이전트 vs 스킬 선택 → 에이전트로 결정 (능동적 작업 필요)
13
+ - 마켓플레이스 접근 방법 연구
14
+ - 점수 계산 방법론 설계
15
+
16
+ 2. **요구사항 확정**
17
+ - 모니터링 방식: 수동 호출 + 자동 추천
18
+ - 마켓플레이스: 모든 소스 지원 (GitHub, Git, NPM, 로컬)
19
+ - 추천 기준: 종합 점수 (프로젝트 40% + 인기도 30% + 보안 30%)
20
+
21
+ 3. **v1.0 구현**
22
+ - plugin-scout.md 에이전트 생성
23
+ - plugin-evaluation 스킬 생성
24
+ - 인터뷰식 설치 플로우
25
+
26
+ 4. **테스트 및 피드백**
27
+ - 현재 프로젝트(Nextedition) 대상 테스트
28
+ - sentry, firebase, slack 등 기존 통합 감지 확인
29
+ - 플러그인 5개 설치 테스트 완료
30
+
31
+ 5. **v2.0 확장 논의**
32
+ - Post-task 추천 기능 추가
33
+ - 인터뷰식 형태로 간략화 요청
34
+ - 설치된 플러그인 활용 팁 추가
35
+
36
+ 6. **확장 기능 논의**
37
+ - 업데이트 알림
38
+ - 사용량 추적 / 정리
39
+ - 플러그인 비교
40
+ - 플러그인 익스텐션 (커스터마이징, 조합, 포크)
41
+ - 학습 기능
42
+ - 팀 협업
43
+
44
+ 7. **v2.0 구현**
45
+ - `/scout compare` 구현
46
+ - `/scout cleanup` 구현 (오래된 미사용만)
47
+ - Override 시스템 구현
48
+ - Combos 시스템 구현
49
+ - 학습/히스토리 시스템 구현
50
+
51
+ 8. **문서화**
52
+ - FEATURE_SPEC.md 작성
53
+ - TEST_RESULTS.md 작성
54
+ - USER_GUIDE.md 작성
55
+
56
+ 9. **프로젝트 구조화**
57
+ - plugin-scout/ 프로젝트 폴더 생성
58
+ - README, CHANGELOG, ROADMAP 작성
59
+
60
+ ### 주요 결정사항
61
+
62
+ | 결정 | 이유 |
63
+ |-----|------|
64
+ | 에이전트로 구현 | 능동적 추천 필요 |
65
+ | 종합 점수 40/30/30 | 프로젝트 적합성 가장 중요 |
66
+ | 인터뷰식 UI | 작업 중 방해 최소화 |
67
+ | 30일+ 미사용만 정리 | 최근 설치는 아직 활용 가능성 |
68
+ | multiSelect 적용 | 복수 플러그인 한번에 선택 |
69
+
70
+ ### 생성된 파일
71
+
72
+ ```
73
+ .claude/
74
+ ├── agents/plugin-scout.md
75
+ ├── skills/plugin-evaluation/SKILL.md
76
+ └── plugin-scout/
77
+ ├── combos/
78
+ ├── plugin-overrides/
79
+ ├── scout-history.json
80
+ └── scout-usage.json
81
+
82
+ plugin-scout/
83
+ ├── README.md
84
+ ├── CHANGELOG.md
85
+ ├── ROADMAP.md
86
+ ├── src/
87
+ ├── docs/
88
+ ├── tests/
89
+ └── examples/
90
+ ```
91
+
92
+ ### 설치된 플러그인 (테스트)
93
+
94
+ 1. sentry
95
+ 2. slack
96
+ 3. typescript-lsp
97
+ 4. code-review
98
+ 5. commit-commands
99
+ 6. plugin-dev
100
+ 7. hookify
101
+
102
+ ### 다음 단계
103
+
104
+ 1. UX 개선 (무음 모드, 빈도 조절)
105
+ 2. 학습 기능 강화
106
+ 3. 팀 협업 기능
107
+ 4. 실제 사용 피드백 수집
108
+
109
+ ---
110
+
111
+ ## 개발 환경
112
+
113
+ - Claude Code (Opus 4.5)
114
+ - 작업 디렉토리: /Users/Kent/Work/Nextedition
115
+ - 테스트 프로젝트: camfit_backend (Strapi + MongoDB + Firebase + Sentry)