monol-plugin-scout 2.1.3 → 4.1.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.
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +244 -0
- package/monol-plugin-scout-pkg/CLAUDE.md +125 -8
- package/monol-plugin-scout-pkg/api/mock/categories.json +81 -0
- package/monol-plugin-scout-pkg/api/mock/insights.json +111 -0
- package/monol-plugin-scout-pkg/api/mock/marketplace.json +501 -0
- package/monol-plugin-scout-pkg/api/mock/trending.json +96 -0
- package/monol-plugin-scout-pkg/commands/console.md +79 -0
- package/monol-plugin-scout-pkg/commands/frequency.md +32 -0
- package/monol-plugin-scout-pkg/commands/install.md +32 -0
- package/monol-plugin-scout-pkg/commands/priority.md +30 -0
- package/monol-plugin-scout-pkg/commands/quiet.md +32 -0
- package/monol-plugin-scout-pkg/commands/schedule.md +32 -0
- package/monol-plugin-scout-pkg/commands/scout.md +8 -5
- package/monol-plugin-scout-pkg/commands/skills.md +160 -0
- package/monol-plugin-scout-pkg/commands/team.md +32 -0
- package/monol-plugin-scout-pkg/commands/timing.md +32 -0
- package/monol-plugin-scout-pkg/commands/trust.md +85 -0
- package/monol-plugin-scout-pkg/commands/trusted-install.md +98 -0
- package/monol-plugin-scout-pkg/commands/uninstall.md +31 -0
- package/monol-plugin-scout-pkg/config.yaml +57 -0
- package/monol-plugin-scout-pkg/data/.cache/676d5ab664292155e5f509c69d4edae1 +10 -0
- package/monol-plugin-scout-pkg/data/.session +8 -0
- package/monol-plugin-scout-pkg/data/analytics.json +102 -0
- package/monol-plugin-scout-pkg/data/history.json +67 -11
- package/monol-plugin-scout-pkg/data/logs/scout.log +1 -0
- package/monol-plugin-scout-pkg/data/schedules.json +17 -0
- package/monol-plugin-scout-pkg/data/team.json +53 -0
- package/monol-plugin-scout-pkg/data/usage.json +100 -7
- package/monol-plugin-scout-pkg/docs/ARCHITECTURE.md +201 -0
- package/monol-plugin-scout-pkg/hooks/generate-insights.sh +102 -0
- package/monol-plugin-scout-pkg/hooks/hooks.json +36 -1
- package/monol-plugin-scout-pkg/hooks/on-session-end.sh +136 -0
- package/monol-plugin-scout-pkg/hooks/on-session-start.sh +43 -0
- package/monol-plugin-scout-pkg/hooks/on-stop.md +79 -0
- package/monol-plugin-scout-pkg/hooks/open-console.sh +111 -0
- package/monol-plugin-scout-pkg/hooks/open-dashboard.sh +61 -0
- package/monol-plugin-scout-pkg/hooks/track-usage.sh +59 -0
- package/monol-plugin-scout-pkg/lib/ai-recommender.sh +505 -0
- package/monol-plugin-scout-pkg/lib/cache.sh +194 -0
- package/monol-plugin-scout-pkg/lib/data-validator.sh +360 -0
- package/monol-plugin-scout-pkg/lib/error-handler.sh +296 -0
- package/monol-plugin-scout-pkg/lib/logger.sh +263 -0
- package/monol-plugin-scout-pkg/lib/plugin-manager.sh +239 -0
- package/monol-plugin-scout-pkg/lib/priority-scorer.sh +262 -0
- package/monol-plugin-scout-pkg/lib/profile-learner.sh +339 -0
- package/monol-plugin-scout-pkg/lib/project-analyzer.sh +281 -0
- package/monol-plugin-scout-pkg/lib/recommendation-controller.sh +290 -0
- package/monol-plugin-scout-pkg/lib/rejection-learner.sh +232 -0
- package/monol-plugin-scout-pkg/lib/scheduler.sh +275 -0
- package/monol-plugin-scout-pkg/lib/skill-scout.sh +729 -0
- package/monol-plugin-scout-pkg/lib/sync.sh +221 -0
- package/monol-plugin-scout-pkg/lib/team-learner.sh +450 -0
- package/monol-plugin-scout-pkg/lib/team-manager.sh +369 -0
- package/monol-plugin-scout-pkg/lib/trend-learner.sh +428 -0
- package/monol-plugin-scout-pkg/lib/trust-manager.sh +261 -0
- package/monol-plugin-scout-pkg/lib/trusted-installer.sh +738 -0
- package/monol-plugin-scout-pkg/plugin.json +3 -2
- package/monol-plugin-scout-pkg/skills/audit.md +6 -0
- package/monol-plugin-scout-pkg/skills/cleanup.md +6 -0
- package/monol-plugin-scout-pkg/skills/compare.md +6 -0
- package/monol-plugin-scout-pkg/skills/console.md +315 -0
- package/monol-plugin-scout-pkg/skills/explore.md +6 -0
- package/monol-plugin-scout-pkg/skills/fork.md +6 -0
- package/monol-plugin-scout-pkg/skills/frequency.md +93 -0
- package/monol-plugin-scout-pkg/skills/install.md +127 -0
- package/monol-plugin-scout-pkg/skills/priority.md +77 -0
- package/monol-plugin-scout-pkg/skills/quiet.md +73 -0
- package/monol-plugin-scout-pkg/skills/schedule.md +95 -0
- package/monol-plugin-scout-pkg/skills/scout.md +27 -17
- package/monol-plugin-scout-pkg/skills/skills.md +230 -0
- package/monol-plugin-scout-pkg/skills/team.md +117 -0
- package/monol-plugin-scout-pkg/skills/timing.md +97 -0
- package/monol-plugin-scout-pkg/skills/trust.md +120 -0
- package/monol-plugin-scout-pkg/skills/trusted-install.md +264 -0
- package/monol-plugin-scout-pkg/skills/uninstall.md +100 -0
- package/monol-plugin-scout-pkg/web/components/activity-chart.js +208 -0
- package/monol-plugin-scout-pkg/web/components/index.js +27 -0
- package/monol-plugin-scout-pkg/web/components/insight-card.js +365 -0
- package/monol-plugin-scout-pkg/web/components/overview.js +154 -0
- package/monol-plugin-scout-pkg/web/components/plugin-list.js +242 -0
- package/monol-plugin-scout-pkg/web/components/stats-card.js +126 -0
- package/monol-plugin-scout-pkg/web/components/team-list.js +346 -0
- package/monol-plugin-scout-pkg/web/console.html +2098 -0
- package/monol-plugin-scout-pkg/web/dashboard.html +2106 -0
- package/monol-plugin-scout-pkg/web/manifest.json +29 -0
- package/package.json +1 -1
|
@@ -0,0 +1,501 @@
|
|
|
1
|
+
{
|
|
2
|
+
"plugins": [
|
|
3
|
+
{
|
|
4
|
+
"name": "commit-commands",
|
|
5
|
+
"description": "Git commit message generator and automation",
|
|
6
|
+
"version": "3.2.1",
|
|
7
|
+
"author": "monol",
|
|
8
|
+
"category": "productivity",
|
|
9
|
+
"downloads": 45200,
|
|
10
|
+
"rating": 4.9,
|
|
11
|
+
"trending": true,
|
|
12
|
+
"tags": ["git", "commit", "automation"],
|
|
13
|
+
"createdAt": "2025-06-15T00:00:00Z",
|
|
14
|
+
"updatedAt": "2026-01-10T00:00:00Z"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "code-review",
|
|
18
|
+
"description": "Automated code review with best practices",
|
|
19
|
+
"version": "2.8.0",
|
|
20
|
+
"author": "monol",
|
|
21
|
+
"category": "productivity",
|
|
22
|
+
"downloads": 38900,
|
|
23
|
+
"rating": 4.8,
|
|
24
|
+
"trending": true,
|
|
25
|
+
"tags": ["review", "quality", "best-practices"],
|
|
26
|
+
"createdAt": "2025-07-20T00:00:00Z",
|
|
27
|
+
"updatedAt": "2026-01-08T00:00:00Z"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "prettier-format",
|
|
31
|
+
"description": "Code formatting with Prettier integration",
|
|
32
|
+
"version": "3.0.1",
|
|
33
|
+
"author": "prettier-team",
|
|
34
|
+
"category": "productivity",
|
|
35
|
+
"downloads": 78500,
|
|
36
|
+
"rating": 4.9,
|
|
37
|
+
"trending": true,
|
|
38
|
+
"tags": ["format", "prettier", "style"],
|
|
39
|
+
"createdAt": "2025-04-10T00:00:00Z",
|
|
40
|
+
"updatedAt": "2026-01-15T00:00:00Z"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "eslint-fix",
|
|
44
|
+
"description": "ESLint auto-fix integration for Claude Code",
|
|
45
|
+
"version": "2.5.1",
|
|
46
|
+
"author": "eslint-team",
|
|
47
|
+
"category": "productivity",
|
|
48
|
+
"downloads": 65200,
|
|
49
|
+
"rating": 4.7,
|
|
50
|
+
"trending": false,
|
|
51
|
+
"tags": ["lint", "eslint", "fix"],
|
|
52
|
+
"createdAt": "2025-05-22T00:00:00Z",
|
|
53
|
+
"updatedAt": "2026-01-05T00:00:00Z"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "typescript-lsp",
|
|
57
|
+
"description": "TypeScript language server integration",
|
|
58
|
+
"version": "1.5.2",
|
|
59
|
+
"author": "claude-community",
|
|
60
|
+
"category": "development",
|
|
61
|
+
"downloads": 52100,
|
|
62
|
+
"rating": 4.8,
|
|
63
|
+
"trending": false,
|
|
64
|
+
"tags": ["typescript", "lsp", "intellisense"],
|
|
65
|
+
"createdAt": "2025-08-01T00:00:00Z",
|
|
66
|
+
"updatedAt": "2026-01-12T00:00:00Z"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "test-runner",
|
|
70
|
+
"description": "Run and manage tests from Claude",
|
|
71
|
+
"version": "2.1.0",
|
|
72
|
+
"author": "monol",
|
|
73
|
+
"category": "testing",
|
|
74
|
+
"downloads": 41200,
|
|
75
|
+
"rating": 4.6,
|
|
76
|
+
"trending": false,
|
|
77
|
+
"tags": ["test", "jest", "mocha", "pytest"],
|
|
78
|
+
"createdAt": "2025-09-15T00:00:00Z",
|
|
79
|
+
"updatedAt": "2026-01-03T00:00:00Z"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "docker-helper",
|
|
83
|
+
"description": "Docker container management and compose",
|
|
84
|
+
"version": "1.8.3",
|
|
85
|
+
"author": "devops-team",
|
|
86
|
+
"category": "devops",
|
|
87
|
+
"downloads": 35800,
|
|
88
|
+
"rating": 4.7,
|
|
89
|
+
"trending": false,
|
|
90
|
+
"tags": ["docker", "container", "compose"],
|
|
91
|
+
"createdAt": "2025-06-30T00:00:00Z",
|
|
92
|
+
"updatedAt": "2025-12-20T00:00:00Z"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "git-hooks",
|
|
96
|
+
"description": "Git hooks manager for Claude Code",
|
|
97
|
+
"version": "1.4.0",
|
|
98
|
+
"author": "monol",
|
|
99
|
+
"category": "development",
|
|
100
|
+
"downloads": 28900,
|
|
101
|
+
"rating": 4.6,
|
|
102
|
+
"trending": false,
|
|
103
|
+
"tags": ["git", "hooks", "pre-commit"],
|
|
104
|
+
"createdAt": "2025-10-05T00:00:00Z",
|
|
105
|
+
"updatedAt": "2026-01-02T00:00:00Z"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "graphql-helper",
|
|
109
|
+
"description": "GraphQL schema and query helper",
|
|
110
|
+
"version": "1.3.0",
|
|
111
|
+
"author": "graphql-community",
|
|
112
|
+
"category": "development",
|
|
113
|
+
"downloads": 24500,
|
|
114
|
+
"rating": 4.5,
|
|
115
|
+
"trending": false,
|
|
116
|
+
"tags": ["graphql", "schema", "query"],
|
|
117
|
+
"createdAt": "2025-08-20T00:00:00Z",
|
|
118
|
+
"updatedAt": "2025-12-15T00:00:00Z"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"name": "tailwind-assist",
|
|
122
|
+
"description": "Tailwind CSS class suggestions and completion",
|
|
123
|
+
"version": "2.0.0",
|
|
124
|
+
"author": "tailwind-labs",
|
|
125
|
+
"category": "frontend",
|
|
126
|
+
"downloads": 89200,
|
|
127
|
+
"rating": 4.9,
|
|
128
|
+
"trending": true,
|
|
129
|
+
"tags": ["tailwind", "css", "styling"],
|
|
130
|
+
"createdAt": "2025-05-01T00:00:00Z",
|
|
131
|
+
"updatedAt": "2026-01-18T00:00:00Z"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "react-snippets",
|
|
135
|
+
"description": "React component snippets and hooks",
|
|
136
|
+
"version": "3.1.0",
|
|
137
|
+
"author": "react-community",
|
|
138
|
+
"category": "frontend",
|
|
139
|
+
"downloads": 72300,
|
|
140
|
+
"rating": 4.8,
|
|
141
|
+
"trending": true,
|
|
142
|
+
"tags": ["react", "snippets", "hooks"],
|
|
143
|
+
"createdAt": "2025-04-15T00:00:00Z",
|
|
144
|
+
"updatedAt": "2026-01-10T00:00:00Z"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "vue-helper",
|
|
148
|
+
"description": "Vue.js development utilities",
|
|
149
|
+
"version": "2.2.0",
|
|
150
|
+
"author": "vue-team",
|
|
151
|
+
"category": "frontend",
|
|
152
|
+
"downloads": 45600,
|
|
153
|
+
"rating": 4.6,
|
|
154
|
+
"trending": false,
|
|
155
|
+
"tags": ["vue", "vuex", "composition"],
|
|
156
|
+
"createdAt": "2025-06-10T00:00:00Z",
|
|
157
|
+
"updatedAt": "2025-12-28T00:00:00Z"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "openai-bridge",
|
|
161
|
+
"description": "OpenAI API integration for Claude Code",
|
|
162
|
+
"version": "2.1.0",
|
|
163
|
+
"author": "ai-tools",
|
|
164
|
+
"category": "ai",
|
|
165
|
+
"downloads": 98500,
|
|
166
|
+
"rating": 4.9,
|
|
167
|
+
"trending": true,
|
|
168
|
+
"tags": ["openai", "gpt", "ai"],
|
|
169
|
+
"createdAt": "2025-03-01T00:00:00Z",
|
|
170
|
+
"updatedAt": "2026-01-16T00:00:00Z"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"name": "langchain-helper",
|
|
174
|
+
"description": "LangChain development tools",
|
|
175
|
+
"version": "1.5.0",
|
|
176
|
+
"author": "langchain-community",
|
|
177
|
+
"category": "ai",
|
|
178
|
+
"downloads": 67800,
|
|
179
|
+
"rating": 4.7,
|
|
180
|
+
"trending": true,
|
|
181
|
+
"tags": ["langchain", "llm", "chains"],
|
|
182
|
+
"createdAt": "2025-05-20T00:00:00Z",
|
|
183
|
+
"updatedAt": "2026-01-14T00:00:00Z"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"name": "huggingface-tools",
|
|
187
|
+
"description": "Hugging Face model integration",
|
|
188
|
+
"version": "1.2.0",
|
|
189
|
+
"author": "hf-community",
|
|
190
|
+
"category": "ai",
|
|
191
|
+
"downloads": 45600,
|
|
192
|
+
"rating": 4.6,
|
|
193
|
+
"trending": false,
|
|
194
|
+
"tags": ["huggingface", "transformers", "models"],
|
|
195
|
+
"createdAt": "2025-07-15T00:00:00Z",
|
|
196
|
+
"updatedAt": "2025-12-20T00:00:00Z"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"name": "sentry",
|
|
200
|
+
"description": "Error tracking with Sentry integration",
|
|
201
|
+
"version": "4.0.1",
|
|
202
|
+
"author": "sentry-official",
|
|
203
|
+
"category": "monitoring",
|
|
204
|
+
"downloads": 56700,
|
|
205
|
+
"rating": 4.8,
|
|
206
|
+
"trending": false,
|
|
207
|
+
"tags": ["sentry", "errors", "monitoring"],
|
|
208
|
+
"createdAt": "2025-04-01T00:00:00Z",
|
|
209
|
+
"updatedAt": "2026-01-05T00:00:00Z"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"name": "datadog-monitor",
|
|
213
|
+
"description": "Datadog monitoring integration",
|
|
214
|
+
"version": "1.4.0",
|
|
215
|
+
"author": "datadog-labs",
|
|
216
|
+
"category": "monitoring",
|
|
217
|
+
"downloads": 32100,
|
|
218
|
+
"rating": 4.6,
|
|
219
|
+
"trending": false,
|
|
220
|
+
"tags": ["datadog", "apm", "metrics"],
|
|
221
|
+
"createdAt": "2025-08-10T00:00:00Z",
|
|
222
|
+
"updatedAt": "2025-12-15T00:00:00Z"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"name": "slack",
|
|
226
|
+
"description": "Slack notifications and messaging",
|
|
227
|
+
"version": "2.3.0",
|
|
228
|
+
"author": "slack-labs",
|
|
229
|
+
"category": "integration",
|
|
230
|
+
"downloads": 48900,
|
|
231
|
+
"rating": 4.5,
|
|
232
|
+
"trending": false,
|
|
233
|
+
"tags": ["slack", "notifications", "messaging"],
|
|
234
|
+
"createdAt": "2025-05-15T00:00:00Z",
|
|
235
|
+
"updatedAt": "2025-12-10T00:00:00Z"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"name": "jira-integration",
|
|
239
|
+
"description": "Jira ticket management",
|
|
240
|
+
"version": "1.6.0",
|
|
241
|
+
"author": "atlassian-community",
|
|
242
|
+
"category": "integration",
|
|
243
|
+
"downloads": 34500,
|
|
244
|
+
"rating": 4.5,
|
|
245
|
+
"trending": false,
|
|
246
|
+
"tags": ["jira", "tickets", "project"],
|
|
247
|
+
"createdAt": "2025-06-20T00:00:00Z",
|
|
248
|
+
"updatedAt": "2025-11-30T00:00:00Z"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"name": "notion-sync",
|
|
252
|
+
"description": "Notion documentation sync",
|
|
253
|
+
"version": "1.3.0",
|
|
254
|
+
"author": "notion-labs",
|
|
255
|
+
"category": "integration",
|
|
256
|
+
"downloads": 28900,
|
|
257
|
+
"rating": 4.6,
|
|
258
|
+
"trending": false,
|
|
259
|
+
"tags": ["notion", "docs", "sync"],
|
|
260
|
+
"createdAt": "2025-07-25T00:00:00Z",
|
|
261
|
+
"updatedAt": "2025-12-05T00:00:00Z"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"name": "github-actions",
|
|
265
|
+
"description": "GitHub Actions workflow helper",
|
|
266
|
+
"version": "2.0.0",
|
|
267
|
+
"author": "github-community",
|
|
268
|
+
"category": "devops",
|
|
269
|
+
"downloads": 67800,
|
|
270
|
+
"rating": 4.8,
|
|
271
|
+
"trending": true,
|
|
272
|
+
"tags": ["github", "actions", "ci"],
|
|
273
|
+
"createdAt": "2025-04-20T00:00:00Z",
|
|
274
|
+
"updatedAt": "2026-01-12T00:00:00Z"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"name": "terraform-plan",
|
|
278
|
+
"description": "Terraform plan and apply helper",
|
|
279
|
+
"version": "1.5.0",
|
|
280
|
+
"author": "hashicorp-community",
|
|
281
|
+
"category": "devops",
|
|
282
|
+
"downloads": 38900,
|
|
283
|
+
"rating": 4.7,
|
|
284
|
+
"trending": false,
|
|
285
|
+
"tags": ["terraform", "iac", "infrastructure"],
|
|
286
|
+
"createdAt": "2025-06-01T00:00:00Z",
|
|
287
|
+
"updatedAt": "2025-12-18T00:00:00Z"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"name": "k8s-helper",
|
|
291
|
+
"description": "Kubernetes deployment helper",
|
|
292
|
+
"version": "1.3.0",
|
|
293
|
+
"author": "k8s-team",
|
|
294
|
+
"category": "devops",
|
|
295
|
+
"downloads": 29800,
|
|
296
|
+
"rating": 4.6,
|
|
297
|
+
"trending": false,
|
|
298
|
+
"tags": ["kubernetes", "k8s", "deployment"],
|
|
299
|
+
"createdAt": "2025-07-10T00:00:00Z",
|
|
300
|
+
"updatedAt": "2025-12-22T00:00:00Z"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"name": "aws-toolkit",
|
|
304
|
+
"description": "AWS service integration",
|
|
305
|
+
"version": "2.0.0",
|
|
306
|
+
"author": "aws-community",
|
|
307
|
+
"category": "cloud",
|
|
308
|
+
"downloads": 54200,
|
|
309
|
+
"rating": 4.7,
|
|
310
|
+
"trending": false,
|
|
311
|
+
"tags": ["aws", "s3", "lambda"],
|
|
312
|
+
"createdAt": "2025-05-10T00:00:00Z",
|
|
313
|
+
"updatedAt": "2026-01-08T00:00:00Z"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"name": "gcp-tools",
|
|
317
|
+
"description": "Google Cloud Platform tools",
|
|
318
|
+
"version": "1.4.0",
|
|
319
|
+
"author": "gcp-community",
|
|
320
|
+
"category": "cloud",
|
|
321
|
+
"downloads": 41200,
|
|
322
|
+
"rating": 4.6,
|
|
323
|
+
"trending": false,
|
|
324
|
+
"tags": ["gcp", "gcloud", "firebase"],
|
|
325
|
+
"createdAt": "2025-06-15T00:00:00Z",
|
|
326
|
+
"updatedAt": "2025-12-10T00:00:00Z"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"name": "vercel-deploy",
|
|
330
|
+
"description": "Vercel deployment helper",
|
|
331
|
+
"version": "1.2.0",
|
|
332
|
+
"author": "vercel-labs",
|
|
333
|
+
"category": "cloud",
|
|
334
|
+
"downloads": 58900,
|
|
335
|
+
"rating": 4.8,
|
|
336
|
+
"trending": true,
|
|
337
|
+
"tags": ["vercel", "deploy", "serverless"],
|
|
338
|
+
"createdAt": "2025-04-25T00:00:00Z",
|
|
339
|
+
"updatedAt": "2026-01-15T00:00:00Z"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"name": "db-query",
|
|
343
|
+
"description": "Database query builder and executor",
|
|
344
|
+
"version": "1.2.0",
|
|
345
|
+
"author": "db-tools",
|
|
346
|
+
"category": "database",
|
|
347
|
+
"downloads": 31200,
|
|
348
|
+
"rating": 4.5,
|
|
349
|
+
"trending": false,
|
|
350
|
+
"tags": ["sql", "database", "query"],
|
|
351
|
+
"createdAt": "2025-08-05T00:00:00Z",
|
|
352
|
+
"updatedAt": "2025-12-08T00:00:00Z"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"name": "mongodb-helper",
|
|
356
|
+
"description": "MongoDB query builder",
|
|
357
|
+
"version": "1.1.0",
|
|
358
|
+
"author": "mongo-community",
|
|
359
|
+
"category": "database",
|
|
360
|
+
"downloads": 23400,
|
|
361
|
+
"rating": 4.4,
|
|
362
|
+
"trending": false,
|
|
363
|
+
"tags": ["mongodb", "nosql", "aggregation"],
|
|
364
|
+
"createdAt": "2025-09-01T00:00:00Z",
|
|
365
|
+
"updatedAt": "2025-11-25T00:00:00Z"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"name": "redis-client",
|
|
369
|
+
"description": "Redis commands helper",
|
|
370
|
+
"version": "1.0.5",
|
|
371
|
+
"author": "redis-community",
|
|
372
|
+
"category": "database",
|
|
373
|
+
"downloads": 18700,
|
|
374
|
+
"rating": 4.3,
|
|
375
|
+
"trending": false,
|
|
376
|
+
"tags": ["redis", "cache", "pub-sub"],
|
|
377
|
+
"createdAt": "2025-09-20T00:00:00Z",
|
|
378
|
+
"updatedAt": "2025-11-15T00:00:00Z"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"name": "playwright-helper",
|
|
382
|
+
"description": "Playwright test automation",
|
|
383
|
+
"version": "1.3.0",
|
|
384
|
+
"author": "playwright-team",
|
|
385
|
+
"category": "testing",
|
|
386
|
+
"downloads": 48700,
|
|
387
|
+
"rating": 4.8,
|
|
388
|
+
"trending": true,
|
|
389
|
+
"tags": ["playwright", "e2e", "automation"],
|
|
390
|
+
"createdAt": "2025-05-30T00:00:00Z",
|
|
391
|
+
"updatedAt": "2026-01-10T00:00:00Z"
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"name": "cypress-runner",
|
|
395
|
+
"description": "Cypress E2E test runner",
|
|
396
|
+
"version": "2.0.0",
|
|
397
|
+
"author": "cypress-team",
|
|
398
|
+
"category": "testing",
|
|
399
|
+
"downloads": 51200,
|
|
400
|
+
"rating": 4.7,
|
|
401
|
+
"trending": false,
|
|
402
|
+
"tags": ["cypress", "e2e", "testing"],
|
|
403
|
+
"createdAt": "2025-04-10T00:00:00Z",
|
|
404
|
+
"updatedAt": "2025-12-20T00:00:00Z"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"name": "api-tester",
|
|
408
|
+
"description": "REST API testing and documentation",
|
|
409
|
+
"version": "1.1.0",
|
|
410
|
+
"author": "api-team",
|
|
411
|
+
"category": "testing",
|
|
412
|
+
"downloads": 27800,
|
|
413
|
+
"rating": 4.5,
|
|
414
|
+
"trending": false,
|
|
415
|
+
"tags": ["api", "rest", "postman"],
|
|
416
|
+
"createdAt": "2025-08-15T00:00:00Z",
|
|
417
|
+
"updatedAt": "2025-12-01T00:00:00Z"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"name": "security-scan",
|
|
421
|
+
"description": "Security vulnerability scanner",
|
|
422
|
+
"version": "1.2.0",
|
|
423
|
+
"author": "security-team",
|
|
424
|
+
"category": "security",
|
|
425
|
+
"downloads": 47200,
|
|
426
|
+
"rating": 4.8,
|
|
427
|
+
"trending": true,
|
|
428
|
+
"tags": ["security", "vulnerability", "scan"],
|
|
429
|
+
"createdAt": "2025-06-25T00:00:00Z",
|
|
430
|
+
"updatedAt": "2026-01-18T00:00:00Z"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"name": "secret-manager",
|
|
434
|
+
"description": "Secrets and credentials manager",
|
|
435
|
+
"version": "1.1.0",
|
|
436
|
+
"author": "security-team",
|
|
437
|
+
"category": "security",
|
|
438
|
+
"downloads": 38900,
|
|
439
|
+
"rating": 4.7,
|
|
440
|
+
"trending": false,
|
|
441
|
+
"tags": ["secrets", "credentials", "vault"],
|
|
442
|
+
"createdAt": "2025-07-05T00:00:00Z",
|
|
443
|
+
"updatedAt": "2025-12-12T00:00:00Z"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"name": "python-linter",
|
|
447
|
+
"description": "Python code linting with pylint/flake8",
|
|
448
|
+
"version": "1.4.0",
|
|
449
|
+
"author": "python-community",
|
|
450
|
+
"category": "development",
|
|
451
|
+
"downloads": 51200,
|
|
452
|
+
"rating": 4.6,
|
|
453
|
+
"trending": false,
|
|
454
|
+
"tags": ["python", "lint", "pylint"],
|
|
455
|
+
"createdAt": "2025-05-05T00:00:00Z",
|
|
456
|
+
"updatedAt": "2025-12-15T00:00:00Z"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"name": "rust-analyzer",
|
|
460
|
+
"description": "Rust language support and analysis",
|
|
461
|
+
"version": "1.2.0",
|
|
462
|
+
"author": "rust-community",
|
|
463
|
+
"category": "development",
|
|
464
|
+
"downloads": 28900,
|
|
465
|
+
"rating": 4.8,
|
|
466
|
+
"trending": false,
|
|
467
|
+
"tags": ["rust", "analyzer", "cargo"],
|
|
468
|
+
"createdAt": "2025-08-25T00:00:00Z",
|
|
469
|
+
"updatedAt": "2026-01-05T00:00:00Z"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"name": "go-tools",
|
|
473
|
+
"description": "Go language development tools",
|
|
474
|
+
"version": "1.3.0",
|
|
475
|
+
"author": "go-community",
|
|
476
|
+
"category": "development",
|
|
477
|
+
"downloads": 31500,
|
|
478
|
+
"rating": 4.6,
|
|
479
|
+
"trending": false,
|
|
480
|
+
"tags": ["go", "golang", "gofmt"],
|
|
481
|
+
"createdAt": "2025-07-30T00:00:00Z",
|
|
482
|
+
"updatedAt": "2025-12-18T00:00:00Z"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"name": "scout",
|
|
486
|
+
"description": "Plugin marketplace monitoring and recommendations",
|
|
487
|
+
"version": "2.4.0",
|
|
488
|
+
"author": "monol",
|
|
489
|
+
"category": "productivity",
|
|
490
|
+
"downloads": 12500,
|
|
491
|
+
"rating": 4.7,
|
|
492
|
+
"trending": false,
|
|
493
|
+
"tags": ["plugins", "marketplace", "recommendations"],
|
|
494
|
+
"createdAt": "2025-12-01T00:00:00Z",
|
|
495
|
+
"updatedAt": "2026-01-19T00:00:00Z"
|
|
496
|
+
}
|
|
497
|
+
],
|
|
498
|
+
"total": 38,
|
|
499
|
+
"page": 1,
|
|
500
|
+
"pageSize": 50
|
|
501
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"trending": [
|
|
3
|
+
{
|
|
4
|
+
"name": "openai-bridge",
|
|
5
|
+
"description": "OpenAI API integration for Claude Code",
|
|
6
|
+
"category": "ai",
|
|
7
|
+
"downloads": 98500,
|
|
8
|
+
"rating": 4.9,
|
|
9
|
+
"trendScore": 98,
|
|
10
|
+
"weeklyGrowth": 23.5
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "tailwind-assist",
|
|
14
|
+
"description": "Tailwind CSS class suggestions and completion",
|
|
15
|
+
"category": "frontend",
|
|
16
|
+
"downloads": 89200,
|
|
17
|
+
"rating": 4.9,
|
|
18
|
+
"trendScore": 95,
|
|
19
|
+
"weeklyGrowth": 18.2
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"name": "prettier-format",
|
|
23
|
+
"description": "Code formatting with Prettier integration",
|
|
24
|
+
"category": "productivity",
|
|
25
|
+
"downloads": 78500,
|
|
26
|
+
"rating": 4.9,
|
|
27
|
+
"trendScore": 92,
|
|
28
|
+
"weeklyGrowth": 15.8
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "react-snippets",
|
|
32
|
+
"description": "React component snippets and hooks",
|
|
33
|
+
"category": "frontend",
|
|
34
|
+
"downloads": 72300,
|
|
35
|
+
"rating": 4.8,
|
|
36
|
+
"trendScore": 89,
|
|
37
|
+
"weeklyGrowth": 14.2
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "langchain-helper",
|
|
41
|
+
"description": "LangChain development tools",
|
|
42
|
+
"category": "ai",
|
|
43
|
+
"downloads": 67800,
|
|
44
|
+
"rating": 4.7,
|
|
45
|
+
"trendScore": 87,
|
|
46
|
+
"weeklyGrowth": 21.5
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "github-actions",
|
|
50
|
+
"description": "GitHub Actions workflow helper",
|
|
51
|
+
"category": "devops",
|
|
52
|
+
"downloads": 67800,
|
|
53
|
+
"rating": 4.8,
|
|
54
|
+
"trendScore": 85,
|
|
55
|
+
"weeklyGrowth": 12.3
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "vercel-deploy",
|
|
59
|
+
"description": "Vercel deployment helper",
|
|
60
|
+
"category": "cloud",
|
|
61
|
+
"downloads": 58900,
|
|
62
|
+
"rating": 4.8,
|
|
63
|
+
"trendScore": 84,
|
|
64
|
+
"weeklyGrowth": 16.7
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "playwright-helper",
|
|
68
|
+
"description": "Playwright test automation",
|
|
69
|
+
"category": "testing",
|
|
70
|
+
"downloads": 48700,
|
|
71
|
+
"rating": 4.8,
|
|
72
|
+
"trendScore": 82,
|
|
73
|
+
"weeklyGrowth": 19.8
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "security-scan",
|
|
77
|
+
"description": "Security vulnerability scanner",
|
|
78
|
+
"category": "security",
|
|
79
|
+
"downloads": 47200,
|
|
80
|
+
"rating": 4.8,
|
|
81
|
+
"trendScore": 80,
|
|
82
|
+
"weeklyGrowth": 25.3
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "commit-commands",
|
|
86
|
+
"description": "Git commit message generator and automation",
|
|
87
|
+
"category": "productivity",
|
|
88
|
+
"downloads": 45200,
|
|
89
|
+
"rating": 4.9,
|
|
90
|
+
"trendScore": 78,
|
|
91
|
+
"weeklyGrowth": 11.5
|
|
92
|
+
}
|
|
93
|
+
],
|
|
94
|
+
"period": "week",
|
|
95
|
+
"generatedAt": "2026-01-19T00:00:00Z"
|
|
96
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: 플러그인 대시보드 콘솔 - 전체 현황 및 분석 (한글: 콘솔, 대시보드, 플러그인현황)
|
|
3
|
+
argument-hint: "[--web | --view <dashboard|plugins|analytics|users> | --plugin <name> | --user <name>]"
|
|
4
|
+
allowed-tools: [Read, Glob, Grep, Bash, WebFetch, AskUserQuestion]
|
|
5
|
+
hooks:
|
|
6
|
+
Stop:
|
|
7
|
+
- hooks:
|
|
8
|
+
- type: command
|
|
9
|
+
command: "bash ${CLAUDE_PLUGIN_ROOT}/hooks/track-usage.sh console"
|
|
10
|
+
timeout: 5
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# /scout console - 플러그인 대시보드 콘솔
|
|
14
|
+
|
|
15
|
+
플러그인 현황을 대시보드 형태로 보여주고, 상세 정보 조회, 사용 분석, 인사이트를 제공합니다.
|
|
16
|
+
|
|
17
|
+
## 사용법
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
/scout console # 메인 대시보드 (CLI)
|
|
21
|
+
/scout console --web # 웹 대시보드 (브라우저에서 열림)
|
|
22
|
+
/scout console --view dashboard # 대시보드 뷰
|
|
23
|
+
/scout console --view plugins # 플러그인 목록
|
|
24
|
+
/scout console --view analytics # 사용 분석
|
|
25
|
+
/scout console --view users # 사용자 분석
|
|
26
|
+
/scout console --plugin <name> # 특정 플러그인 상세
|
|
27
|
+
/scout console --user <name> # 특정 사용자 분석
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## 인자: $ARGUMENTS
|
|
31
|
+
|
|
32
|
+
## 동작
|
|
33
|
+
|
|
34
|
+
### --web 옵션 (웹 대시보드)
|
|
35
|
+
|
|
36
|
+
`--web` 인자가 포함된 경우, 브라우저에서 웹 대시보드를 엽니다:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
bash ${CLAUDE_PLUGIN_ROOT}/hooks/open-console.sh
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
웹 대시보드를 연 후 안내 메시지를 표시합니다.
|
|
43
|
+
|
|
44
|
+
### CLI 대시보드 (기본)
|
|
45
|
+
|
|
46
|
+
skills/console.md를 참조하여 동일하게 동작합니다.
|
|
47
|
+
|
|
48
|
+
### 핵심 동작 요약
|
|
49
|
+
|
|
50
|
+
1. **데이터 수집**: 설치된 플러그인, 활성화 상태, 사용량 데이터, 마켓플레이스 정보 수집
|
|
51
|
+
2. **대시보드 렌더링**: ASCII 아트 기반 대시보드 표시
|
|
52
|
+
3. **인터랙티브 메뉴**: AskUserQuestion으로 다음 동작 선택
|
|
53
|
+
4. **뷰별 상세**: 플러그인 목록, 상세, 분석, 사용자 분석 뷰 제공
|
|
54
|
+
|
|
55
|
+
## 데이터 소스
|
|
56
|
+
|
|
57
|
+
| 데이터 | 경로 |
|
|
58
|
+
|--------|------|
|
|
59
|
+
| 설치된 플러그인 | `~/.claude/plugins/installed_plugins.json` |
|
|
60
|
+
| 활성화 상태 | `~/.claude/settings.json` |
|
|
61
|
+
| 마켓플레이스 | `~/.claude/plugins/known_marketplaces.json` |
|
|
62
|
+
| 사용량 | `${CLAUDE_PLUGIN_ROOT}/data/usage.json` |
|
|
63
|
+
| 분석 | `${CLAUDE_PLUGIN_ROOT}/data/analytics.json` |
|
|
64
|
+
|
|
65
|
+
## 예시
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
/scout console
|
|
69
|
+
→ 메인 대시보드 표시
|
|
70
|
+
|
|
71
|
+
/scout console --view analytics
|
|
72
|
+
→ 사용 분석 뷰
|
|
73
|
+
|
|
74
|
+
/scout console --plugin commit-commands
|
|
75
|
+
→ commit-commands 상세 정보
|
|
76
|
+
|
|
77
|
+
/scout console --user kent
|
|
78
|
+
→ kent 사용자 분석
|
|
79
|
+
```
|