cc-recommender 0.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.
Files changed (184) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/LICENSE +21 -0
  3. package/README.ja.md +201 -0
  4. package/README.md +201 -0
  5. package/data/mcp-servers.json +34777 -0
  6. package/data/plugins.json +1571 -0
  7. package/data/skills.json +3233 -0
  8. package/dist/config/constants.d.ts +18 -0
  9. package/dist/config/constants.d.ts.map +1 -0
  10. package/dist/config/constants.js +34 -0
  11. package/dist/config/constants.js.map +1 -0
  12. package/dist/config/file-mappings.d.ts +13 -0
  13. package/dist/config/file-mappings.d.ts.map +1 -0
  14. package/dist/config/file-mappings.js +70 -0
  15. package/dist/config/file-mappings.js.map +1 -0
  16. package/dist/config/index.d.ts +9 -0
  17. package/dist/config/index.d.ts.map +1 -0
  18. package/dist/config/index.js +9 -0
  19. package/dist/config/index.js.map +1 -0
  20. package/dist/config/scoring-config.d.ts +27 -0
  21. package/dist/config/scoring-config.d.ts.map +1 -0
  22. package/dist/config/scoring-config.js +27 -0
  23. package/dist/config/scoring-config.js.map +1 -0
  24. package/dist/index.d.ts +9 -0
  25. package/dist/index.d.ts.map +1 -0
  26. package/dist/index.js +25 -0
  27. package/dist/index.js.map +1 -0
  28. package/dist/repositories/index.d.ts +7 -0
  29. package/dist/repositories/index.d.ts.map +1 -0
  30. package/dist/repositories/index.js +7 -0
  31. package/dist/repositories/index.js.map +1 -0
  32. package/dist/repositories/recommendation.repository.d.ts +56 -0
  33. package/dist/repositories/recommendation.repository.d.ts.map +1 -0
  34. package/dist/repositories/recommendation.repository.js +142 -0
  35. package/dist/repositories/recommendation.repository.js.map +1 -0
  36. package/dist/repositories/remote-data.repository.d.ts +20 -0
  37. package/dist/repositories/remote-data.repository.d.ts.map +1 -0
  38. package/dist/repositories/remote-data.repository.js +307 -0
  39. package/dist/repositories/remote-data.repository.js.map +1 -0
  40. package/dist/schemas/index.d.ts +7 -0
  41. package/dist/schemas/index.d.ts.map +1 -0
  42. package/dist/schemas/index.js +7 -0
  43. package/dist/schemas/index.js.map +1 -0
  44. package/dist/schemas/tool-schemas.d.ts +55 -0
  45. package/dist/schemas/tool-schemas.d.ts.map +1 -0
  46. package/dist/schemas/tool-schemas.js +36 -0
  47. package/dist/schemas/tool-schemas.js.map +1 -0
  48. package/dist/server/index.d.ts +8 -0
  49. package/dist/server/index.d.ts.map +1 -0
  50. package/dist/server/index.js +8 -0
  51. package/dist/server/index.js.map +1 -0
  52. package/dist/server/mcp-server.d.ts +11 -0
  53. package/dist/server/mcp-server.d.ts.map +1 -0
  54. package/dist/server/mcp-server.js +27 -0
  55. package/dist/server/mcp-server.js.map +1 -0
  56. package/dist/server/tool-registry.d.ts +12 -0
  57. package/dist/server/tool-registry.d.ts.map +1 -0
  58. package/dist/server/tool-registry.js +114 -0
  59. package/dist/server/tool-registry.js.map +1 -0
  60. package/dist/services/analyzer/index.d.ts +7 -0
  61. package/dist/services/analyzer/index.d.ts.map +1 -0
  62. package/dist/services/analyzer/index.js +7 -0
  63. package/dist/services/analyzer/index.js.map +1 -0
  64. package/dist/services/analyzer/parsers/go-mod.parser.d.ts +11 -0
  65. package/dist/services/analyzer/parsers/go-mod.parser.d.ts.map +1 -0
  66. package/dist/services/analyzer/parsers/go-mod.parser.js +34 -0
  67. package/dist/services/analyzer/parsers/go-mod.parser.js.map +1 -0
  68. package/dist/services/analyzer/parsers/index.d.ts +9 -0
  69. package/dist/services/analyzer/parsers/index.d.ts.map +1 -0
  70. package/dist/services/analyzer/parsers/index.js +9 -0
  71. package/dist/services/analyzer/parsers/index.js.map +1 -0
  72. package/dist/services/analyzer/parsers/package-json.parser.d.ts +11 -0
  73. package/dist/services/analyzer/parsers/package-json.parser.d.ts.map +1 -0
  74. package/dist/services/analyzer/parsers/package-json.parser.js +61 -0
  75. package/dist/services/analyzer/parsers/package-json.parser.js.map +1 -0
  76. package/dist/services/analyzer/parsers/requirements-txt.parser.d.ts +11 -0
  77. package/dist/services/analyzer/parsers/requirements-txt.parser.d.ts.map +1 -0
  78. package/dist/services/analyzer/parsers/requirements-txt.parser.js +49 -0
  79. package/dist/services/analyzer/parsers/requirements-txt.parser.js.map +1 -0
  80. package/dist/services/analyzer/project-analyzer.service.d.ts +11 -0
  81. package/dist/services/analyzer/project-analyzer.service.d.ts.map +1 -0
  82. package/dist/services/analyzer/project-analyzer.service.js +101 -0
  83. package/dist/services/analyzer/project-analyzer.service.js.map +1 -0
  84. package/dist/services/analyzer.d.ts +8 -0
  85. package/dist/services/analyzer.d.ts.map +1 -0
  86. package/dist/services/analyzer.js +8 -0
  87. package/dist/services/analyzer.js.map +1 -0
  88. package/dist/services/mcp-fetcher.d.ts +12 -0
  89. package/dist/services/mcp-fetcher.d.ts.map +1 -0
  90. package/dist/services/mcp-fetcher.js +262 -0
  91. package/dist/services/mcp-fetcher.js.map +1 -0
  92. package/dist/services/plugin-fetcher.d.ts +12 -0
  93. package/dist/services/plugin-fetcher.d.ts.map +1 -0
  94. package/dist/services/plugin-fetcher.js +149 -0
  95. package/dist/services/plugin-fetcher.js.map +1 -0
  96. package/dist/services/recommender/formatters.d.ts +22 -0
  97. package/dist/services/recommender/formatters.d.ts.map +1 -0
  98. package/dist/services/recommender/formatters.js +90 -0
  99. package/dist/services/recommender/formatters.js.map +1 -0
  100. package/dist/services/recommender/index.d.ts +10 -0
  101. package/dist/services/recommender/index.d.ts.map +1 -0
  102. package/dist/services/recommender/index.js +10 -0
  103. package/dist/services/recommender/index.js.map +1 -0
  104. package/dist/services/recommender/recommendation.service.d.ts +27 -0
  105. package/dist/services/recommender/recommendation.service.d.ts.map +1 -0
  106. package/dist/services/recommender/recommendation.service.js +34 -0
  107. package/dist/services/recommender/recommendation.service.js.map +1 -0
  108. package/dist/services/recommender/scoring/index.d.ts +7 -0
  109. package/dist/services/recommender/scoring/index.d.ts.map +1 -0
  110. package/dist/services/recommender/scoring/index.js +7 -0
  111. package/dist/services/recommender/scoring/index.js.map +1 -0
  112. package/dist/services/recommender/scoring/scorer.d.ts +27 -0
  113. package/dist/services/recommender/scoring/scorer.d.ts.map +1 -0
  114. package/dist/services/recommender/scoring/scorer.js +100 -0
  115. package/dist/services/recommender/scoring/scorer.js.map +1 -0
  116. package/dist/services/recommender/search.service.d.ts +24 -0
  117. package/dist/services/recommender/search.service.d.ts.map +1 -0
  118. package/dist/services/recommender/search.service.js +57 -0
  119. package/dist/services/recommender/search.service.js.map +1 -0
  120. package/dist/services/recommender.d.ts +11 -0
  121. package/dist/services/recommender.d.ts.map +1 -0
  122. package/dist/services/recommender.js +11 -0
  123. package/dist/services/recommender.js.map +1 -0
  124. package/dist/services/security-scanner.service.d.ts +48 -0
  125. package/dist/services/security-scanner.service.d.ts.map +1 -0
  126. package/dist/services/security-scanner.service.js +98 -0
  127. package/dist/services/security-scanner.service.js.map +1 -0
  128. package/dist/services/skill-fetcher.d.ts +12 -0
  129. package/dist/services/skill-fetcher.d.ts.map +1 -0
  130. package/dist/services/skill-fetcher.js +307 -0
  131. package/dist/services/skill-fetcher.js.map +1 -0
  132. package/dist/tools/handlers/get-skill-details.tool.d.ts +25 -0
  133. package/dist/tools/handlers/get-skill-details.tool.d.ts.map +1 -0
  134. package/dist/tools/handlers/get-skill-details.tool.js +29 -0
  135. package/dist/tools/handlers/get-skill-details.tool.js.map +1 -0
  136. package/dist/tools/handlers/get-stats.tool.d.ts +19 -0
  137. package/dist/tools/handlers/get-stats.tool.d.ts.map +1 -0
  138. package/dist/tools/handlers/get-stats.tool.js +32 -0
  139. package/dist/tools/handlers/get-stats.tool.js.map +1 -0
  140. package/dist/tools/handlers/index.d.ts +11 -0
  141. package/dist/tools/handlers/index.d.ts.map +1 -0
  142. package/dist/tools/handlers/index.js +11 -0
  143. package/dist/tools/handlers/index.js.map +1 -0
  144. package/dist/tools/handlers/list-categories.tool.d.ts +19 -0
  145. package/dist/tools/handlers/list-categories.tool.d.ts.map +1 -0
  146. package/dist/tools/handlers/list-categories.tool.js +33 -0
  147. package/dist/tools/handlers/list-categories.tool.js.map +1 -0
  148. package/dist/tools/handlers/recommend-skills.tool.d.ts +32 -0
  149. package/dist/tools/handlers/recommend-skills.tool.d.ts.map +1 -0
  150. package/dist/tools/handlers/recommend-skills.tool.js +43 -0
  151. package/dist/tools/handlers/recommend-skills.tool.js.map +1 -0
  152. package/dist/tools/handlers/search-skills.tool.d.ts +27 -0
  153. package/dist/tools/handlers/search-skills.tool.d.ts.map +1 -0
  154. package/dist/tools/handlers/search-skills.tool.js +31 -0
  155. package/dist/tools/handlers/search-skills.tool.js.map +1 -0
  156. package/dist/tools/index.d.ts +9 -0
  157. package/dist/tools/index.d.ts.map +1 -0
  158. package/dist/tools/index.js +11 -0
  159. package/dist/tools/index.js.map +1 -0
  160. package/dist/types/domain-types.d.ts +102 -0
  161. package/dist/types/domain-types.d.ts.map +1 -0
  162. package/dist/types/domain-types.js +7 -0
  163. package/dist/types/domain-types.js.map +1 -0
  164. package/dist/types/index.d.ts +9 -0
  165. package/dist/types/index.d.ts.map +1 -0
  166. package/dist/types/index.js +7 -0
  167. package/dist/types/index.js.map +1 -0
  168. package/dist/types/raw-types.d.ts +46 -0
  169. package/dist/types/raw-types.d.ts.map +1 -0
  170. package/dist/types/raw-types.js +7 -0
  171. package/dist/types/raw-types.js.map +1 -0
  172. package/dist/types/service-types.d.ts +28 -0
  173. package/dist/types/service-types.d.ts.map +1 -0
  174. package/dist/types/service-types.js +7 -0
  175. package/dist/types/service-types.js.map +1 -0
  176. package/dist/utils/glob-matcher.d.ts +24 -0
  177. package/dist/utils/glob-matcher.d.ts.map +1 -0
  178. package/dist/utils/glob-matcher.js +34 -0
  179. package/dist/utils/glob-matcher.js.map +1 -0
  180. package/dist/utils/index.d.ts +7 -0
  181. package/dist/utils/index.d.ts.map +1 -0
  182. package/dist/utils/index.js +7 -0
  183. package/dist/utils/index.js.map +1 -0
  184. package/package.json +82 -0
@@ -0,0 +1,1571 @@
1
+ {
2
+ "version": "0.1.0",
3
+ "lastUpdated": "2026-01-30T12:20:06.930Z",
4
+ "items": [
5
+ {
6
+ "id": "plugin-typescript-lsp",
7
+ "name": "typescript-lsp",
8
+ "type": "plugin",
9
+ "url": "https://github.com/anthropics/claude-plugins-official/tree/main/./plugins/typescript-lsp",
10
+ "description": "TypeScript/JavaScript language server for enhanced code intelligence",
11
+ "author": {
12
+ "name": "Anthropic",
13
+ "email": "support@anthropic.com"
14
+ },
15
+ "category": "development",
16
+ "tags": ["development"],
17
+ "detection": {
18
+ "keywords": ["development", "development", "coding", "ide"],
19
+ "languages": ["typescript", "typescriptreact", "javascript", "javascriptreact"],
20
+ "files": ["*..ts", "*..tsx", "*..js", "*..jsx", "*..mts", "*..cts", "*..mjs", "*..cjs"]
21
+ },
22
+ "metrics": {
23
+ "source": "official",
24
+ "isOfficial": true,
25
+ "securityScore": 100
26
+ },
27
+ "install": {
28
+ "method": "plugin",
29
+ "command": "/plugin install typescript-lsp",
30
+ "marketplace": "claude-plugins-official"
31
+ }
32
+ },
33
+ {
34
+ "id": "plugin-agent-sdk-dev",
35
+ "name": "agent-sdk-dev",
36
+ "type": "plugin",
37
+ "url": "https://github.com/anthropics/claude-plugins-public/tree/main/plugins/agent-sdk-dev",
38
+ "description": "Development kit for working with the Claude Agent SDK",
39
+ "author": {
40
+ "name": "Anthropic",
41
+ "email": "support@anthropic.com"
42
+ },
43
+ "category": "development",
44
+ "tags": ["development"],
45
+ "detection": {
46
+ "keywords": ["development", "development", "coding", "ide"]
47
+ },
48
+ "metrics": {
49
+ "source": "official",
50
+ "isOfficial": true,
51
+ "securityScore": 100
52
+ },
53
+ "install": {
54
+ "method": "plugin",
55
+ "command": "/plugin install agent-sdk-dev",
56
+ "marketplace": "claude-plugins-official"
57
+ }
58
+ },
59
+ {
60
+ "id": "plugin-atlassian",
61
+ "name": "atlassian",
62
+ "type": "plugin",
63
+ "url": "https://github.com/atlassian/atlassian-mcp-server",
64
+ "description": "Connect to Atlassian products including Jira and Confluence. Search and create issues, access documentation, manage sprints, and integrate your development workflow with Atlassian's collaboration tools.",
65
+ "author": {
66
+ "name": "Anthropic",
67
+ "email": "support@anthropic.com"
68
+ },
69
+ "category": "productivity",
70
+ "tags": ["productivity"],
71
+ "detection": {
72
+ "keywords": ["productivity", "productivity", "workflow", "automation"]
73
+ },
74
+ "metrics": {
75
+ "source": "official",
76
+ "isOfficial": true,
77
+ "securityScore": 100
78
+ },
79
+ "install": {
80
+ "method": "plugin",
81
+ "command": "/plugin install atlassian",
82
+ "marketplace": "claude-plugins-official"
83
+ }
84
+ },
85
+ {
86
+ "id": "plugin-figma",
87
+ "name": "figma",
88
+ "type": "plugin",
89
+ "url": "https://github.com/figma/mcp-server-guide",
90
+ "description": "Figma design platform integration. Access design files, extract component information, read design tokens, and translate designs into code. Bridge the gap between design and development workflows.",
91
+ "author": {
92
+ "name": "Anthropic",
93
+ "email": "support@anthropic.com"
94
+ },
95
+ "category": "design",
96
+ "tags": ["design"],
97
+ "detection": {
98
+ "keywords": ["design"]
99
+ },
100
+ "metrics": {
101
+ "source": "official",
102
+ "isOfficial": true,
103
+ "securityScore": 100
104
+ },
105
+ "install": {
106
+ "method": "plugin",
107
+ "command": "/plugin install figma",
108
+ "marketplace": "claude-plugins-official"
109
+ }
110
+ },
111
+ {
112
+ "id": "plugin-Notion",
113
+ "name": "Notion",
114
+ "type": "plugin",
115
+ "url": "https://github.com/makenotion/claude-code-notion-plugin",
116
+ "description": "Notion workspace integration. Search pages, create and update documents, manage databases, and access your team's knowledge base directly from Claude Code for seamless documentation workflows.",
117
+ "author": {
118
+ "name": "Anthropic",
119
+ "email": "support@anthropic.com"
120
+ },
121
+ "category": "productivity",
122
+ "tags": ["productivity"],
123
+ "detection": {
124
+ "keywords": ["productivity", "productivity", "workflow", "automation"]
125
+ },
126
+ "metrics": {
127
+ "source": "official",
128
+ "isOfficial": true,
129
+ "securityScore": 100
130
+ },
131
+ "install": {
132
+ "method": "plugin",
133
+ "command": "/plugin install Notion",
134
+ "marketplace": "claude-plugins-official"
135
+ }
136
+ },
137
+ {
138
+ "id": "plugin-sentry",
139
+ "name": "sentry",
140
+ "type": "plugin",
141
+ "url": "https://github.com/getsentry/sentry-for-claude/tree/main",
142
+ "description": "Sentry error monitoring integration. Access error reports, analyze stack traces, search issues by fingerprint, and debug production errors directly from your development environment.",
143
+ "author": {
144
+ "name": "Anthropic",
145
+ "email": "support@anthropic.com"
146
+ },
147
+ "category": "monitoring",
148
+ "tags": ["monitoring"],
149
+ "detection": {
150
+ "keywords": ["monitoring"]
151
+ },
152
+ "metrics": {
153
+ "source": "official",
154
+ "isOfficial": true,
155
+ "securityScore": 100
156
+ },
157
+ "install": {
158
+ "method": "plugin",
159
+ "command": "/plugin install sentry",
160
+ "marketplace": "claude-plugins-official"
161
+ }
162
+ },
163
+ {
164
+ "id": "plugin-vercel",
165
+ "name": "vercel",
166
+ "type": "plugin",
167
+ "url": "https://github.com/vercel/vercel-deploy-claude-code-plugin",
168
+ "description": "Vercel deployment platform integration. Manage deployments, check build status, access logs, configure domains, and control your frontend infrastructure directly from Claude Code.",
169
+ "author": {
170
+ "name": "Anthropic",
171
+ "email": "support@anthropic.com"
172
+ },
173
+ "category": "deployment",
174
+ "tags": ["deployment"],
175
+ "detection": {
176
+ "keywords": ["deployment", "deploy", "ci", "cd"]
177
+ },
178
+ "metrics": {
179
+ "source": "official",
180
+ "isOfficial": true,
181
+ "securityScore": 100
182
+ },
183
+ "install": {
184
+ "method": "plugin",
185
+ "command": "/plugin install vercel",
186
+ "marketplace": "claude-plugins-official"
187
+ }
188
+ },
189
+ {
190
+ "id": "plugin-stripe",
191
+ "name": "stripe",
192
+ "type": "plugin",
193
+ "url": "https://github.com/stripe/ai/tree/main/providers/claude/plugin",
194
+ "description": "Stripe development plugin for Claude",
195
+ "author": {
196
+ "name": "Anthropic",
197
+ "email": "support@anthropic.com"
198
+ },
199
+ "category": "development",
200
+ "tags": ["development"],
201
+ "detection": {
202
+ "keywords": ["development", "development", "coding", "ide"]
203
+ },
204
+ "metrics": {
205
+ "source": "official",
206
+ "isOfficial": true,
207
+ "securityScore": 100
208
+ },
209
+ "install": {
210
+ "method": "plugin",
211
+ "command": "/plugin install stripe",
212
+ "marketplace": "claude-plugins-official"
213
+ }
214
+ },
215
+ {
216
+ "id": "plugin-pinecone",
217
+ "name": "pinecone",
218
+ "type": "plugin",
219
+ "url": "https://github.com/pinecone-io/pinecone-claude-code-plugin",
220
+ "description": "Pinecone vector database integration. Streamline your Pinecone development with powerful tools for managing vector indexes, querying data, and rapid prototyping. Use slash commands like /quickstart to generate AGENTS.md files and initialize Python projects and /query to quickly explore indexes. Access the Pinecone MCP server for creating, describing, upserting and querying indexes with Claude. Perfect for developers building semantic search, RAG applications, recommendation systems, and other vector-based applications with Pinecone.",
221
+ "author": {
222
+ "name": "Anthropic",
223
+ "email": "support@anthropic.com"
224
+ },
225
+ "category": "database",
226
+ "tags": ["database"],
227
+ "detection": {
228
+ "keywords": ["database", "database", "sql", "nosql"],
229
+ "dependencies": ["prisma", "@prisma/client", "mongoose", "typeorm"]
230
+ },
231
+ "metrics": {
232
+ "source": "official",
233
+ "isOfficial": true,
234
+ "securityScore": 100
235
+ },
236
+ "install": {
237
+ "method": "plugin",
238
+ "command": "/plugin install pinecone",
239
+ "marketplace": "claude-plugins-official"
240
+ }
241
+ },
242
+ {
243
+ "id": "plugin-huggingface-skills",
244
+ "name": "huggingface-skills",
245
+ "type": "plugin",
246
+ "url": "https://github.com/huggingface/skills.git",
247
+ "description": "Build, train, evaluate, and use open source AI models, datasets, and spaces.",
248
+ "author": {
249
+ "name": "Anthropic",
250
+ "email": "support@anthropic.com"
251
+ },
252
+ "category": "development",
253
+ "tags": ["development"],
254
+ "detection": {
255
+ "keywords": ["development", "development", "coding", "ide"]
256
+ },
257
+ "metrics": {
258
+ "source": "official",
259
+ "isOfficial": true,
260
+ "securityScore": 100
261
+ },
262
+ "install": {
263
+ "method": "plugin",
264
+ "command": "/plugin install huggingface-skills",
265
+ "marketplace": "claude-plugins-official"
266
+ }
267
+ },
268
+ {
269
+ "id": "plugin-circleback",
270
+ "name": "circleback",
271
+ "type": "plugin",
272
+ "url": "https://github.com/circlebackai/claude-code-plugin.git",
273
+ "description": "Circleback conversational context integration. Search and access meetings, emails, calendar events, and more.",
274
+ "author": {
275
+ "name": "Anthropic",
276
+ "email": "support@anthropic.com"
277
+ },
278
+ "category": "productivity",
279
+ "tags": ["productivity"],
280
+ "detection": {
281
+ "keywords": ["productivity", "productivity", "workflow", "automation"]
282
+ },
283
+ "metrics": {
284
+ "source": "official",
285
+ "isOfficial": true,
286
+ "securityScore": 100
287
+ },
288
+ "install": {
289
+ "method": "plugin",
290
+ "command": "/plugin install circleback",
291
+ "marketplace": "claude-plugins-official"
292
+ }
293
+ },
294
+ {
295
+ "id": "plugin-superpowers",
296
+ "name": "superpowers",
297
+ "type": "plugin",
298
+ "url": "https://github.com/obra/superpowers.git",
299
+ "description": "Superpowers teaches Claude brainstorming, subagent driven development with built in code review, systematic debugging, and red/green TDD. Additionally, it teaches Claude how to author and test new skills.",
300
+ "author": {
301
+ "name": "Anthropic",
302
+ "email": "support@anthropic.com"
303
+ },
304
+ "category": "development",
305
+ "tags": ["development"],
306
+ "detection": {
307
+ "keywords": ["development", "development", "coding", "ide"]
308
+ },
309
+ "metrics": {
310
+ "source": "official",
311
+ "isOfficial": true,
312
+ "securityScore": 100
313
+ },
314
+ "install": {
315
+ "method": "plugin",
316
+ "command": "/plugin install superpowers",
317
+ "marketplace": "claude-plugins-official"
318
+ }
319
+ },
320
+ {
321
+ "id": "plugin-posthog",
322
+ "name": "posthog",
323
+ "type": "plugin",
324
+ "url": "https://github.com/PostHog/posthog-for-claude.git",
325
+ "description": "Connect Claude Code to your PostHog analytics platform. Query insights, manage feature flags, run A/B experiments, track errors, and analyze LLM costs all through natural language. The plugin provides 10 slash commands for common workflows and full access to PostHog's MCP tools. Ask questions like \"What are my top errors?\" or \"Create a feature flag for 50% of users\" and Claude handles the API calls. Supports OAuth authentication, EU and US cloud regions, and self-hosted instances.",
326
+ "author": {
327
+ "name": "Anthropic",
328
+ "email": "support@anthropic.com"
329
+ },
330
+ "category": "monitoring",
331
+ "tags": ["monitoring"],
332
+ "detection": {
333
+ "keywords": ["monitoring"]
334
+ },
335
+ "metrics": {
336
+ "source": "official",
337
+ "isOfficial": true,
338
+ "securityScore": 100
339
+ },
340
+ "install": {
341
+ "method": "plugin",
342
+ "command": "/plugin install posthog",
343
+ "marketplace": "claude-plugins-official"
344
+ }
345
+ },
346
+ {
347
+ "id": "plugin-coderabbit",
348
+ "name": "coderabbit",
349
+ "type": "plugin",
350
+ "url": "https://github.com/coderabbitai/claude-plugin.git",
351
+ "description": "Your code review partner. CodeRabbit provides external validation using a specialized AI architecture and 40+ integrated static analyzers—offering a different perspective that catches bugs, security vulnerabilities, logic errors, and edge cases. Context-aware analysis via AST parsing and codegraph relationships. Automatically incorporates CLAUDE.md and project coding guidelines into reviews. Useful after writing or modifying code, before commits, when implementing complex or security-sensitive logic, or when a second opinion would increase confidence in the changes. Returns specific findings with suggested fixes that can be applied immediately. Free to use.",
352
+ "author": {
353
+ "name": "Anthropic",
354
+ "email": "support@anthropic.com"
355
+ },
356
+ "category": "productivity",
357
+ "tags": ["productivity"],
358
+ "detection": {
359
+ "keywords": ["productivity", "productivity", "workflow", "automation"]
360
+ },
361
+ "metrics": {
362
+ "source": "official",
363
+ "isOfficial": true,
364
+ "securityScore": 100
365
+ },
366
+ "install": {
367
+ "method": "plugin",
368
+ "command": "/plugin install coderabbit",
369
+ "marketplace": "claude-plugins-official"
370
+ }
371
+ },
372
+ {
373
+ "id": "skill-cc-sessions",
374
+ "name": "cc-sessions",
375
+ "type": "plugin",
376
+ "url": "https://github.com/GWUDCAP/cc-sessions",
377
+ "description": "An opinionated approach to productive development with Claude Code",
378
+ "author": {
379
+ "name": "toastdev",
380
+ "url": "https://github.com/satoastshi"
381
+ },
382
+ "category": "Tooling",
383
+ "tags": ["tooling", "plugin", "mit"],
384
+ "detection": {
385
+ "keywords": ["tool", "utility", "helper"]
386
+ },
387
+ "metrics": {
388
+ "source": "awesome-list",
389
+ "isOfficial": false,
390
+ "securityScore": 100
391
+ },
392
+ "install": {
393
+ "method": "manual",
394
+ "command": "git clone https://github.com/GWUDCAP/cc-sessions"
395
+ }
396
+ },
397
+ {
398
+ "id": "skill-cc-tools",
399
+ "name": "cc-tools",
400
+ "type": "plugin",
401
+ "url": "https://github.com/Veraticus/cc-tools",
402
+ "description": "High-performance Go implementation of Claude Code hooks and utilities. Provides smart linting, testing, and statusline generation with minimal overhead.",
403
+ "author": {
404
+ "name": "Josh Symonds",
405
+ "url": "https://github.com/Veraticus"
406
+ },
407
+ "category": "Tooling",
408
+ "tags": ["tooling", "plugin", "not_found"],
409
+ "detection": {
410
+ "keywords": ["go", "test", "testing", "tool", "utility", "helper"]
411
+ },
412
+ "metrics": {
413
+ "source": "awesome-list",
414
+ "isOfficial": false,
415
+ "securityScore": 100
416
+ },
417
+ "install": {
418
+ "method": "manual",
419
+ "command": "git clone https://github.com/Veraticus/cc-tools"
420
+ }
421
+ },
422
+ {
423
+ "id": "skill-ccexp",
424
+ "name": "ccexp",
425
+ "type": "plugin",
426
+ "url": "https://github.com/nyatinte/ccexp",
427
+ "description": "Interactive CLI tool for discovering and managing Claude Code configuration files and slash commands with a beautiful terminal UI.",
428
+ "author": {
429
+ "name": "nyatinte",
430
+ "url": "https://github.com/nyatinte"
431
+ },
432
+ "category": "Tooling",
433
+ "tags": ["tooling", "plugin", "mit"],
434
+ "detection": {
435
+ "keywords": ["tool", "utility", "helper"]
436
+ },
437
+ "metrics": {
438
+ "source": "awesome-list",
439
+ "isOfficial": false,
440
+ "securityScore": 100
441
+ },
442
+ "install": {
443
+ "method": "manual",
444
+ "command": "git clone https://github.com/nyatinte/ccexp"
445
+ }
446
+ },
447
+ {
448
+ "id": "skill-cchistory",
449
+ "name": "cchistory",
450
+ "type": "plugin",
451
+ "url": "https://github.com/eckardt/cchistory",
452
+ "description": "Like the shell history command but for your Claude Code sessions. Easily list all Bash or \"Bash-mode\" (`!`) commands Claude Code ran in a session for reference.",
453
+ "author": {
454
+ "name": "eckardt",
455
+ "url": "https://github.com/eckardt"
456
+ },
457
+ "category": "Tooling",
458
+ "tags": ["tooling", "plugin", "mit"],
459
+ "detection": {
460
+ "keywords": ["tool", "utility", "helper"]
461
+ },
462
+ "metrics": {
463
+ "source": "awesome-list",
464
+ "isOfficial": false,
465
+ "securityScore": 100
466
+ },
467
+ "install": {
468
+ "method": "manual",
469
+ "command": "git clone https://github.com/eckardt/cchistory"
470
+ }
471
+ },
472
+ {
473
+ "id": "skill-cclogviewer",
474
+ "name": "cclogviewer",
475
+ "type": "plugin",
476
+ "url": "https://github.com/Brads3290/cclogviewer",
477
+ "description": "A humble but handy utility for viewing Claude Code `.jsonl` conversation files in a pretty HTML UI.",
478
+ "author": {
479
+ "name": "Brad S.",
480
+ "url": "https://github.com/Brads3290"
481
+ },
482
+ "category": "Tooling",
483
+ "tags": ["tooling", "plugin", "mit"],
484
+ "detection": {
485
+ "keywords": ["ml", "tool", "utility", "helper"]
486
+ },
487
+ "metrics": {
488
+ "source": "awesome-list",
489
+ "isOfficial": false,
490
+ "securityScore": 100
491
+ },
492
+ "install": {
493
+ "method": "manual",
494
+ "command": "git clone https://github.com/Brads3290/cclogviewer"
495
+ }
496
+ },
497
+ {
498
+ "id": "skill-claude-code-templates",
499
+ "name": "Claude Code Templates",
500
+ "type": "plugin",
501
+ "url": "https://github.com/davila7/claude-code-templates",
502
+ "description": "Incredibly awesome collection of resources from every category in this list, presented with a neatly polished UI, great features like usage dashboard, analytics, and everything from slash commands to hooks to agents. An awesome companion for this awesome list.",
503
+ "author": {
504
+ "name": "Daniel Avila",
505
+ "url": "https://github.com/davila7"
506
+ },
507
+ "category": "Tooling",
508
+ "tags": ["tooling", "plugin", "mit"],
509
+ "detection": {
510
+ "keywords": ["go", "tool", "utility", "helper"]
511
+ },
512
+ "metrics": {
513
+ "source": "awesome-list",
514
+ "isOfficial": false,
515
+ "securityScore": 100
516
+ },
517
+ "install": {
518
+ "method": "manual",
519
+ "command": "git clone https://github.com/davila7/claude-code-templates"
520
+ }
521
+ },
522
+ {
523
+ "id": "skill-claude-composer",
524
+ "name": "Claude Composer",
525
+ "type": "plugin",
526
+ "url": "https://github.com/possibilities/claude-composer",
527
+ "description": "A tool that adds small enhancements to Claude Code.",
528
+ "author": {
529
+ "name": "Mike Bannister",
530
+ "url": "https://github.com/possibilities"
531
+ },
532
+ "category": "Tooling",
533
+ "tags": ["tooling", "plugin", "unlicense"],
534
+ "detection": {
535
+ "keywords": ["tool", "utility", "helper"]
536
+ },
537
+ "metrics": {
538
+ "source": "awesome-list",
539
+ "isOfficial": false,
540
+ "securityScore": 100
541
+ },
542
+ "install": {
543
+ "method": "manual",
544
+ "command": "git clone https://github.com/possibilities/claude-composer"
545
+ }
546
+ },
547
+ {
548
+ "id": "skill-claude-hub",
549
+ "name": "Claude Hub",
550
+ "type": "plugin",
551
+ "url": "https://github.com/claude-did-this/claude-hub",
552
+ "description": "A webhook service that connects Claude Code to GitHub repositories, enabling AI-powered code assistance directly through pull requests and issues. This integration allows Claude to analyze repositories, answer technical questions, and help developers understand and improve their codebase through simple @mentions.",
553
+ "author": {
554
+ "name": "Claude Did This",
555
+ "url": "https://github.com/claude-did-this"
556
+ },
557
+ "category": "Tooling",
558
+ "tags": ["tooling", "plugin", "not_found"],
559
+ "detection": {
560
+ "keywords": ["git", "github", "ai", "tool", "utility", "helper"]
561
+ },
562
+ "metrics": {
563
+ "source": "awesome-list",
564
+ "isOfficial": false,
565
+ "securityScore": 100
566
+ },
567
+ "install": {
568
+ "method": "manual",
569
+ "command": "git clone https://github.com/claude-did-this/claude-hub"
570
+ }
571
+ },
572
+ {
573
+ "id": "skill-claude-session-restore",
574
+ "name": "Claude Session Restore",
575
+ "type": "plugin",
576
+ "url": "https://github.com/ZENG3LD/claude-session-restore",
577
+ "description": "Efficiently restore context from previous Claude Code sessions by analyzing session files and git history. Features multi-factor data collection across numerous Claude Code capacities with time-based filtering. Uses tail-based parsing for efficient handling of large session files up to 2GB. Includes both a CLI tool for manual analysis and a Claude Code skill for automatic session restoration.",
578
+ "author": {
579
+ "name": "ZENG3LD",
580
+ "url": "https://github.com/ZENG3LD"
581
+ },
582
+ "category": "Tooling",
583
+ "tags": ["tooling", "plugin", "mit or apache-2.0"],
584
+ "detection": {
585
+ "keywords": ["git", "rest", "ci", "ai", "tool", "utility", "helper"]
586
+ },
587
+ "metrics": {
588
+ "source": "awesome-list",
589
+ "isOfficial": false,
590
+ "securityScore": 100
591
+ },
592
+ "install": {
593
+ "method": "manual",
594
+ "command": "git clone https://github.com/ZENG3LD/claude-session-restore"
595
+ }
596
+ },
597
+ {
598
+ "id": "skill-claude-code-tools",
599
+ "name": "claude-code-tools",
600
+ "type": "plugin",
601
+ "url": "https://github.com/pchalasani/claude-code-tools",
602
+ "description": "Well-crafted toolset for session continuity, featuring skills/commands to avoid compaction and recover context across sessions with cross-agent handoff between Claude Code and Codex CLI. Includes a fast Rust/Tantivy-powered full-text session search (TUI for humans, skill/CLI for agents), tmux-cli skill + command for interacting with scripts and CLI agents, and safety hooks to block dangerous commands.",
603
+ "author": {
604
+ "name": "Prasad Chalasani",
605
+ "url": "https://github.com/pchalasani"
606
+ },
607
+ "category": "Tooling",
608
+ "tags": ["tooling", "plugin", "mit"],
609
+ "detection": {
610
+ "keywords": ["rust", "tool", "utility", "helper"]
611
+ },
612
+ "metrics": {
613
+ "source": "awesome-list",
614
+ "isOfficial": false,
615
+ "securityScore": 100
616
+ },
617
+ "install": {
618
+ "method": "manual",
619
+ "command": "git clone https://github.com/pchalasani/claude-code-tools"
620
+ }
621
+ },
622
+ {
623
+ "id": "skill-claude-starter-kit",
624
+ "name": "claude-starter-kit",
625
+ "type": "plugin",
626
+ "url": "https://github.com/serpro69/claude-starter-kit",
627
+ "description": "This is a starter template repository designed to provide a complete development environment for Claude-Code with pre-configured MCP servers and tools for AI-powered development workflows. The repository is intentionally minimal, containing only configuration templates for three primary systems: Claude Code, Serena, and Task Master.",
628
+ "author": {
629
+ "name": "serpro69",
630
+ "url": "https://github.com/serpro69"
631
+ },
632
+ "category": "Tooling",
633
+ "tags": ["tooling", "plugin", "mit"],
634
+ "detection": {
635
+ "keywords": ["ai", "tool", "utility", "helper"]
636
+ },
637
+ "metrics": {
638
+ "source": "awesome-list",
639
+ "isOfficial": false,
640
+ "securityScore": 100
641
+ },
642
+ "install": {
643
+ "method": "manual",
644
+ "command": "git clone https://github.com/serpro69/claude-starter-kit"
645
+ }
646
+ },
647
+ {
648
+ "id": "skill-claudekit",
649
+ "name": "claudekit",
650
+ "type": "plugin",
651
+ "url": "https://github.com/carlrannaberg/claudekit",
652
+ "description": "Impressive CLI toolkit providing auto-save checkpointing, code quality hooks, specification generation and execution, and 20+ specialized subagents including oracle (gpt-5), code-reviewer (6-aspect deep analysis), ai-sdk-expert (Vercel AI SDK), typescript-expert and many more for Claude Code workflows.",
653
+ "author": {
654
+ "name": "Carl Rannaberg",
655
+ "url": "https://github.com/carlrannaberg"
656
+ },
657
+ "category": "Tooling",
658
+ "tags": ["tooling", "plugin", "mit"],
659
+ "detection": {
660
+ "keywords": ["typescript", "ci", "ai", "tool", "utility", "helper"]
661
+ },
662
+ "metrics": {
663
+ "source": "awesome-list",
664
+ "isOfficial": false,
665
+ "securityScore": 100
666
+ },
667
+ "install": {
668
+ "method": "manual",
669
+ "command": "git clone https://github.com/carlrannaberg/claudekit"
670
+ }
671
+ },
672
+ {
673
+ "id": "skill-contextkit",
674
+ "name": "ContextKit",
675
+ "type": "plugin",
676
+ "url": "https://github.com/FlineDev/ContextKit",
677
+ "description": "A systematic development framework that transforms Claude Code into a proactive development partner. Features 4-phase planning methodology, specialized quality agents, and structured workflows that help AI produce production-ready code on first try.",
678
+ "author": {
679
+ "name": "Cihat Gündüz",
680
+ "url": "https://github.com/Jeehut"
681
+ },
682
+ "category": "Tooling",
683
+ "tags": ["tooling", "plugin", "mit"],
684
+ "detection": {
685
+ "keywords": ["ci", "ai", "tool", "utility", "helper"]
686
+ },
687
+ "metrics": {
688
+ "source": "awesome-list",
689
+ "isOfficial": false,
690
+ "securityScore": 100
691
+ },
692
+ "install": {
693
+ "method": "manual",
694
+ "command": "git clone https://github.com/FlineDev/ContextKit"
695
+ }
696
+ },
697
+ {
698
+ "id": "skill-recall",
699
+ "name": "recall",
700
+ "type": "plugin",
701
+ "url": "https://github.com/zippoxer/recall",
702
+ "description": "Full-text search your Claude Code sessions. Run `recall` in terminal, type to search, Enter to resume. Alternative to `claude --resume`.",
703
+ "author": {
704
+ "name": "zippoxer",
705
+ "url": "https://github.com/zippoxer"
706
+ },
707
+ "category": "Tooling",
708
+ "tags": ["tooling", "plugin", "mit"],
709
+ "detection": {
710
+ "keywords": ["tool", "utility", "helper"]
711
+ },
712
+ "metrics": {
713
+ "source": "awesome-list",
714
+ "isOfficial": false,
715
+ "securityScore": 100
716
+ },
717
+ "install": {
718
+ "method": "manual",
719
+ "command": "git clone https://github.com/zippoxer/recall"
720
+ }
721
+ },
722
+ {
723
+ "id": "skill-rulesync",
724
+ "name": "Rulesync",
725
+ "type": "plugin",
726
+ "url": "https://github.com/dyoshikawa/rulesync",
727
+ "description": "A Node.js CLI tool that automatically generates configs (rules, ignore files, MCP servers, commands, and subagents) for various AI coding agents. Rulesync can convert configs between Claude Code and other AI agents in both directions.",
728
+ "author": {
729
+ "name": "dyoshikawa",
730
+ "url": "https://github.com/dyoshikawa"
731
+ },
732
+ "category": "Tooling",
733
+ "tags": ["tooling", "plugin", "mit"],
734
+ "detection": {
735
+ "keywords": ["node", "ai", "tool", "utility", "helper"]
736
+ },
737
+ "metrics": {
738
+ "source": "awesome-list",
739
+ "isOfficial": false,
740
+ "securityScore": 100
741
+ },
742
+ "install": {
743
+ "method": "manual",
744
+ "command": "git clone https://github.com/dyoshikawa/rulesync"
745
+ }
746
+ },
747
+ {
748
+ "id": "skill-run-claude-docker",
749
+ "name": "run-claude-docker",
750
+ "type": "plugin",
751
+ "url": "https://github.com/icanhasjonas/run-claude-docker",
752
+ "description": "A self-contained Docker runner that forwards your current workspace into a safe(r) isolated docker container, where you still have access to your Claude Code settings, authentication, ssh agent, pgp, optionally aws keys etc.",
753
+ "author": {
754
+ "name": "Jonas",
755
+ "url": "https://github.com/icanhasjonas/"
756
+ },
757
+ "category": "Tooling",
758
+ "tags": ["tooling", "plugin", "mit"],
759
+ "detection": {
760
+ "keywords": ["docker", "aws", "auth", "ai", "tool", "utility", "helper"]
761
+ },
762
+ "metrics": {
763
+ "source": "awesome-list",
764
+ "isOfficial": false,
765
+ "securityScore": 100
766
+ },
767
+ "install": {
768
+ "method": "manual",
769
+ "command": "git clone https://github.com/icanhasjonas/run-claude-docker"
770
+ }
771
+ },
772
+ {
773
+ "id": "skill-stt-mcp-server-linux",
774
+ "name": "stt-mcp-server-linux",
775
+ "type": "plugin",
776
+ "url": "https://github.com/marcindulak/stt-mcp-server-linux",
777
+ "description": "A push-to-talk speech transcription setup for Linux using a Python MCP server. Runs locally in Docker with no external API calls. Your speech is recorded, transcribed into text, and then sent to Claude running in a Tmux session.",
778
+ "author": {
779
+ "name": "marcindulak",
780
+ "url": "https://github.com/marcindulak"
781
+ },
782
+ "category": "Tooling",
783
+ "tags": ["tooling", "plugin", "apache-2.0"],
784
+ "detection": {
785
+ "keywords": ["python", "docker", "api", "tool", "utility", "helper"]
786
+ },
787
+ "metrics": {
788
+ "source": "awesome-list",
789
+ "isOfficial": false,
790
+ "securityScore": 100
791
+ },
792
+ "install": {
793
+ "method": "manual",
794
+ "command": "git clone https://github.com/marcindulak/stt-mcp-server-linux"
795
+ }
796
+ },
797
+ {
798
+ "id": "skill-superclaude",
799
+ "name": "SuperClaude",
800
+ "type": "plugin",
801
+ "url": "https://github.com/SuperClaude-Org/SuperClaude_Framework",
802
+ "description": "A versatile configuration framework that enhances Claude Code with specialized commands, cognitive personas, and development methodologies, such as \"Introspection\" and \"Orchestration\".",
803
+ "author": {
804
+ "name": "SuperClaude-Org",
805
+ "url": "https://github.com/SuperClaude-Org"
806
+ },
807
+ "category": "Tooling",
808
+ "tags": ["tooling", "plugin", "mit"],
809
+ "detection": {
810
+ "keywords": ["ci", "tool", "utility", "helper"]
811
+ },
812
+ "metrics": {
813
+ "source": "awesome-list",
814
+ "isOfficial": false,
815
+ "securityScore": 100
816
+ },
817
+ "install": {
818
+ "method": "manual",
819
+ "command": "git clone https://github.com/SuperClaude-Org/SuperClaude_Framework"
820
+ }
821
+ },
822
+ {
823
+ "id": "skill-tweakcc",
824
+ "name": "tweakcc",
825
+ "type": "plugin",
826
+ "url": "https://github.com/Piebald-AI/tweakcc",
827
+ "description": "Command-line tool to customize your Claude Code styling.",
828
+ "author": {
829
+ "name": "Piebald-AI",
830
+ "url": "https://github.com/Piebald-AI"
831
+ },
832
+ "category": "Tooling",
833
+ "tags": ["tooling", "plugin", "mit"],
834
+ "detection": {
835
+ "keywords": ["tool", "utility", "helper"]
836
+ },
837
+ "metrics": {
838
+ "source": "awesome-list",
839
+ "isOfficial": false,
840
+ "securityScore": 100
841
+ },
842
+ "install": {
843
+ "method": "manual",
844
+ "command": "git clone https://github.com/Piebald-AI/tweakcc"
845
+ }
846
+ },
847
+ {
848
+ "id": "skill-vibe-log",
849
+ "name": "Vibe-Log",
850
+ "type": "plugin",
851
+ "url": "https://github.com/vibe-log/vibe-log-cli",
852
+ "description": "Analyzes your Claude Code prompts locally (using CC), provides intelligent session analysis and actionable strategic guidance - works in the statusline and produces very pretty HTML reports as well. Easy to install and remove.",
853
+ "author": {
854
+ "name": "Vibe-Log",
855
+ "url": "https://github.com/vibe-log"
856
+ },
857
+ "category": "Tooling",
858
+ "tags": ["tooling", "plugin", "mit"],
859
+ "detection": {
860
+ "keywords": ["ml", "tool", "utility", "helper"]
861
+ },
862
+ "metrics": {
863
+ "source": "awesome-list",
864
+ "isOfficial": false,
865
+ "securityScore": 100
866
+ },
867
+ "install": {
868
+ "method": "manual",
869
+ "command": "git clone https://github.com/vibe-log/vibe-log-cli"
870
+ }
871
+ },
872
+ {
873
+ "id": "skill-viwo-cli",
874
+ "name": "viwo-cli",
875
+ "type": "plugin",
876
+ "url": "https://github.com/OverseedAI/viwo",
877
+ "description": "Run Claude Code in a Docker container with git worktrees as volume mounts to enable safer usage of `--dangerously-skip-permissions` for frictionless one-shotting prompts. Allows users to spin up multiple instances of Claude Code in the background easily with reduced permission fatigue.",
878
+ "author": {
879
+ "name": "Hal Shin",
880
+ "url": "https://github.com/hal-shin"
881
+ },
882
+ "category": "Tooling",
883
+ "tags": ["tooling", "plugin", "mit"],
884
+ "detection": {
885
+ "keywords": ["docker", "git", "ai", "tool", "utility", "helper"]
886
+ },
887
+ "metrics": {
888
+ "source": "awesome-list",
889
+ "isOfficial": false,
890
+ "securityScore": 100
891
+ },
892
+ "install": {
893
+ "method": "manual",
894
+ "command": "git clone https://github.com/OverseedAI/viwo"
895
+ }
896
+ },
897
+ {
898
+ "id": "skill-voicemode-mcp",
899
+ "name": "VoiceMode MCP",
900
+ "type": "plugin",
901
+ "url": "https://github.com/mbailey/voicemode",
902
+ "description": "VoiceMode MCP brings natural conversations to Claude Code. It supports any OpenAI API compatible voice services and installs free and open source voice services (Whisper.cpp and Kokoro-FastAPI).",
903
+ "author": {
904
+ "name": "Mike Bailey",
905
+ "url": "https://github.com/mbailey"
906
+ },
907
+ "category": "Tooling",
908
+ "tags": ["tooling", "plugin", "mit"],
909
+ "detection": {
910
+ "keywords": ["api", "ai", "tool", "utility", "helper"]
911
+ },
912
+ "metrics": {
913
+ "source": "awesome-list",
914
+ "isOfficial": false,
915
+ "securityScore": 100
916
+ },
917
+ "install": {
918
+ "method": "manual",
919
+ "command": "git clone https://github.com/mbailey/voicemode"
920
+ }
921
+ },
922
+ {
923
+ "id": "skill-claude-code-chat",
924
+ "name": "Claude Code Chat",
925
+ "type": "plugin",
926
+ "url": "https://marketplace.visualstudio.com/items?itemName=AndrePimenta.claude-code-chat",
927
+ "description": "An elegant and user-friendly Claude Code chat interface for VS Code.",
928
+ "author": {
929
+ "name": "andrepimenta",
930
+ "url": "https://github.com/andrepimenta"
931
+ },
932
+ "category": "Tooling",
933
+ "tags": ["tooling", "plugin", "©"],
934
+ "detection": {
935
+ "keywords": ["tool", "utility", "helper"]
936
+ },
937
+ "metrics": {
938
+ "source": "awesome-list",
939
+ "isOfficial": false
940
+ },
941
+ "install": {
942
+ "method": "manual"
943
+ }
944
+ },
945
+ {
946
+ "id": "skill-claude-code-ide-el",
947
+ "name": "claude-code-ide.el",
948
+ "type": "plugin",
949
+ "url": "https://github.com/manzaltu/claude-code-ide.el",
950
+ "description": "claude-code-ide.el integrates Claude Code with Emacs, like Anthropic’s VS Code/IntelliJ extensions. It shows ediff-based code suggestions, pulls LSP/flymake/flycheck diagnostics, and tracks buffer context. It adds an extensible MCP tool support for symbol refs/defs, project metadata, and tree-sitter AST queries.",
951
+ "author": {
952
+ "name": "manzaltu",
953
+ "url": "https://github.com/manzaltu"
954
+ },
955
+ "category": "Tooling",
956
+ "tags": ["tooling", "plugin", "gpl-3.0"],
957
+ "detection": {
958
+ "keywords": ["tool", "utility", "helper"]
959
+ },
960
+ "metrics": {
961
+ "source": "awesome-list",
962
+ "isOfficial": false,
963
+ "securityScore": 100
964
+ },
965
+ "install": {
966
+ "method": "manual",
967
+ "command": "git clone https://github.com/manzaltu/claude-code-ide.el"
968
+ }
969
+ },
970
+ {
971
+ "id": "skill-claude-code-el",
972
+ "name": "claude-code.el",
973
+ "type": "plugin",
974
+ "url": "https://github.com/stevemolitor/claude-code.el",
975
+ "description": "An Emacs interface for Claude Code CLI.",
976
+ "author": {
977
+ "name": "stevemolitor",
978
+ "url": "https://github.com/stevemolitor"
979
+ },
980
+ "category": "Tooling",
981
+ "tags": ["tooling", "plugin", "apache-2.0"],
982
+ "detection": {
983
+ "keywords": ["tool", "utility", "helper"]
984
+ },
985
+ "metrics": {
986
+ "source": "awesome-list",
987
+ "isOfficial": false,
988
+ "securityScore": 100
989
+ },
990
+ "install": {
991
+ "method": "manual",
992
+ "command": "git clone https://github.com/stevemolitor/claude-code.el"
993
+ }
994
+ },
995
+ {
996
+ "id": "skill-claude-code-nvim",
997
+ "name": "claude-code.nvim",
998
+ "type": "plugin",
999
+ "url": "https://github.com/greggh/claude-code.nvim",
1000
+ "description": "A seamless integration between Claude Code AI assistant and Neovim.",
1001
+ "author": {
1002
+ "name": "greggh",
1003
+ "url": "https://github.com/greggh"
1004
+ },
1005
+ "category": "Tooling",
1006
+ "tags": ["tooling", "plugin", "mit"],
1007
+ "detection": {
1008
+ "keywords": ["ai", "ml", "tool", "utility", "helper"]
1009
+ },
1010
+ "metrics": {
1011
+ "source": "awesome-list",
1012
+ "isOfficial": false,
1013
+ "securityScore": 100
1014
+ },
1015
+ "install": {
1016
+ "method": "manual",
1017
+ "command": "git clone https://github.com/greggh/claude-code.nvim"
1018
+ }
1019
+ },
1020
+ {
1021
+ "id": "skill-claudix-claude-code-for-vscode",
1022
+ "name": "Claudix - Claude Code for VSCode",
1023
+ "type": "plugin",
1024
+ "url": "https://github.com/Haleclipse/Claudix",
1025
+ "description": "A VSCode extension that brings Claude Code directly into your editor with interactive chat interface, session management, intelligent file operations, terminal execution, and real-time streaming responses. Built with Vue 3, TypeScript.",
1026
+ "author": {
1027
+ "name": "Haleclipse",
1028
+ "url": "https://github.com/Haleclipse"
1029
+ },
1030
+ "category": "Tooling",
1031
+ "tags": ["tooling", "plugin", "agpl-3.0"],
1032
+ "detection": {
1033
+ "keywords": ["vue", "typescript", "tool", "utility", "helper"]
1034
+ },
1035
+ "metrics": {
1036
+ "source": "awesome-list",
1037
+ "isOfficial": false,
1038
+ "securityScore": 100
1039
+ },
1040
+ "install": {
1041
+ "method": "manual",
1042
+ "command": "git clone https://github.com/Haleclipse/Claudix"
1043
+ }
1044
+ },
1045
+ {
1046
+ "id": "skill-crystal",
1047
+ "name": "crystal",
1048
+ "type": "plugin",
1049
+ "url": "https://github.com/stravu/crystal",
1050
+ "description": "A full-fledged desktop application for orchestrating, monitoring, and interacting with Claude Code agents.",
1051
+ "author": {
1052
+ "name": "stravu",
1053
+ "url": "https://github.com/stravu"
1054
+ },
1055
+ "category": "Tooling",
1056
+ "tags": ["tooling", "plugin", "mit"],
1057
+ "detection": {
1058
+ "keywords": ["tool", "utility", "helper"]
1059
+ },
1060
+ "metrics": {
1061
+ "source": "awesome-list",
1062
+ "isOfficial": false,
1063
+ "securityScore": 100
1064
+ },
1065
+ "install": {
1066
+ "method": "manual",
1067
+ "command": "git clone https://github.com/stravu/crystal"
1068
+ }
1069
+ },
1070
+ {
1071
+ "id": "skill-cc-usage",
1072
+ "name": "CC Usage",
1073
+ "type": "plugin",
1074
+ "url": "https://github.com/ryoppippi/ccusage",
1075
+ "description": "Handy CLI tool for managing and analyzing Claude Code usage, based on analyzing local Claude Code logs. Presents a nice dashboard regarding cost information, token consumption, etc.",
1076
+ "author": {
1077
+ "name": "ryoppippi",
1078
+ "url": "https://github.com/ryoppippi"
1079
+ },
1080
+ "category": "Tooling",
1081
+ "tags": ["tooling", "plugin", "noassertion"],
1082
+ "detection": {
1083
+ "keywords": ["tool", "utility", "helper"]
1084
+ },
1085
+ "metrics": {
1086
+ "source": "awesome-list",
1087
+ "isOfficial": false,
1088
+ "securityScore": 100
1089
+ },
1090
+ "install": {
1091
+ "method": "manual",
1092
+ "command": "git clone https://github.com/ryoppippi/ccusage"
1093
+ }
1094
+ },
1095
+ {
1096
+ "id": "skill-ccflare",
1097
+ "name": "ccflare",
1098
+ "type": "plugin",
1099
+ "url": "https://github.com/snipeship/ccflare",
1100
+ "description": "Claude Code usage dashboard with a web-UI that would put Tableau to shame. Thoroughly comprehensive metrics, frictionless setup, detailed logging, really really nice UI.",
1101
+ "author": {
1102
+ "name": "snipeship",
1103
+ "url": "https://github.com/snipeship"
1104
+ },
1105
+ "category": "Tooling",
1106
+ "tags": ["tooling", "plugin", "mit"],
1107
+ "detection": {
1108
+ "keywords": ["ai", "tool", "utility", "helper"]
1109
+ },
1110
+ "metrics": {
1111
+ "source": "awesome-list",
1112
+ "isOfficial": false,
1113
+ "securityScore": 100
1114
+ },
1115
+ "install": {
1116
+ "method": "manual",
1117
+ "command": "git clone https://github.com/snipeship/ccflare"
1118
+ }
1119
+ },
1120
+ {
1121
+ "id": "skill-ccflare-better-ccflare",
1122
+ "name": "ccflare -> **better-ccflare**",
1123
+ "type": "plugin",
1124
+ "url": "https://github.com/tombii/better-ccflare/",
1125
+ "description": "A well-maintained and feature-enhanced fork of the glorious `ccflare` usage dashboard by @snipeship (which at the time of writing has not had an update in a few months). `better-ccflare` builds on this foundation with some performance enhancements, extended provider support, bug fixes, Docker deployment, and more.",
1126
+ "author": {
1127
+ "name": "tombii",
1128
+ "url": "https://github.com/tombii"
1129
+ },
1130
+ "category": "Tooling",
1131
+ "tags": ["tooling", "plugin", "mit"],
1132
+ "detection": {
1133
+ "keywords": ["docker", "ai", "tool", "utility", "helper"]
1134
+ },
1135
+ "metrics": {
1136
+ "source": "awesome-list",
1137
+ "isOfficial": false,
1138
+ "securityScore": 100
1139
+ },
1140
+ "install": {
1141
+ "method": "manual",
1142
+ "command": "git clone https://github.com/tombii/better-ccflare/"
1143
+ }
1144
+ },
1145
+ {
1146
+ "id": "skill-claude-code-usage-monitor",
1147
+ "name": "Claude Code Usage Monitor",
1148
+ "type": "plugin",
1149
+ "url": "https://github.com/Maciek-roboblog/Claude-Code-Usage-Monitor",
1150
+ "description": "A real-time terminal-based tool for monitoring Claude Code token usage. It shows live token consumption, burn rate, and predictions for token depletion. Features include visual progress bars, session-aware analytics, and support for multiple subscription plans.",
1151
+ "author": {
1152
+ "name": "Maciek-roboblog",
1153
+ "url": "https://github.com/Maciek-roboblog"
1154
+ },
1155
+ "category": "Tooling",
1156
+ "tags": ["tooling", "plugin", "mit"],
1157
+ "detection": {
1158
+ "keywords": ["tool", "utility", "helper"]
1159
+ },
1160
+ "metrics": {
1161
+ "source": "awesome-list",
1162
+ "isOfficial": false,
1163
+ "securityScore": 100
1164
+ },
1165
+ "install": {
1166
+ "method": "manual",
1167
+ "command": "git clone https://github.com/Maciek-roboblog/Claude-Code-Usage-Monitor"
1168
+ }
1169
+ },
1170
+ {
1171
+ "id": "skill-claudex",
1172
+ "name": "Claudex",
1173
+ "type": "plugin",
1174
+ "url": "https://github.com/kunwar-shah/claudex",
1175
+ "description": "Claudex - A web-based browser for exploring your Claude Code conversation history across projects. Indexes your codebase for full-text search. Nice, easy-to-navigate UI. Simple dashboard interface for high-level analytics, and multiple export options as well. (And completely local w/ no telemetry!)",
1176
+ "author": {
1177
+ "name": "Kunwar Shah",
1178
+ "url": "https://github.com/kunwar-shah"
1179
+ },
1180
+ "category": "Tooling",
1181
+ "tags": ["tooling", "plugin", "mit"],
1182
+ "detection": {
1183
+ "keywords": ["tool", "utility", "helper"]
1184
+ },
1185
+ "metrics": {
1186
+ "source": "awesome-list",
1187
+ "isOfficial": false,
1188
+ "securityScore": 100
1189
+ },
1190
+ "install": {
1191
+ "method": "manual",
1192
+ "command": "git clone https://github.com/kunwar-shah/claudex"
1193
+ }
1194
+ },
1195
+ {
1196
+ "id": "skill-viberank",
1197
+ "name": "viberank",
1198
+ "type": "plugin",
1199
+ "url": "https://github.com/sculptdotfun/viberank",
1200
+ "description": "A community-driven leaderboard tool that enables developers to visualize, track, and compete based on their Claude Code usage statistics. It features robust data analytics, GitHub OAuth, data validation, and user-friendly CLI/web submission methods.",
1201
+ "author": {
1202
+ "name": "nikshepsvn",
1203
+ "url": "https://github.com/nikshepsvn"
1204
+ },
1205
+ "category": "Tooling",
1206
+ "tags": ["tooling", "plugin", "mit"],
1207
+ "detection": {
1208
+ "keywords": ["git", "github", "auth", "tool", "utility", "helper"]
1209
+ },
1210
+ "metrics": {
1211
+ "source": "awesome-list",
1212
+ "isOfficial": false,
1213
+ "securityScore": 100
1214
+ },
1215
+ "install": {
1216
+ "method": "manual",
1217
+ "command": "git clone https://github.com/sculptdotfun/viberank"
1218
+ }
1219
+ },
1220
+ {
1221
+ "id": "skill-claude-code-flow",
1222
+ "name": "Claude Code Flow",
1223
+ "type": "plugin",
1224
+ "url": "https://github.com/ruvnet/claude-code-flow",
1225
+ "description": "This mode serves as a code-first orchestration layer, enabling Claude to write, edit, test, and optimize code autonomously across recursive agent cycles.",
1226
+ "author": {
1227
+ "name": "ruvnet",
1228
+ "url": "https://github.com/ruvnet"
1229
+ },
1230
+ "category": "Tooling",
1231
+ "tags": ["tooling", "plugin", "mit"],
1232
+ "detection": {
1233
+ "keywords": ["test", "tool", "utility", "helper"]
1234
+ },
1235
+ "metrics": {
1236
+ "source": "awesome-list",
1237
+ "isOfficial": false,
1238
+ "securityScore": 100
1239
+ },
1240
+ "install": {
1241
+ "method": "manual",
1242
+ "command": "git clone https://github.com/ruvnet/claude-code-flow"
1243
+ }
1244
+ },
1245
+ {
1246
+ "id": "skill-claude-squad",
1247
+ "name": "Claude Squad",
1248
+ "type": "plugin",
1249
+ "url": "https://github.com/smtg-ai/claude-squad",
1250
+ "description": "Claude Squad is a terminal app that manages multiple Claude Code, Codex (and other local agents including Aider) in separate workspaces, allowing you to work on multiple tasks simultaneously.",
1251
+ "author": {
1252
+ "name": "smtg-ai",
1253
+ "url": "https://github.com/smtg-ai"
1254
+ },
1255
+ "category": "Tooling",
1256
+ "tags": ["tooling", "plugin", "agpl-3.0"],
1257
+ "detection": {
1258
+ "keywords": ["ai", "tool", "utility", "helper"]
1259
+ },
1260
+ "metrics": {
1261
+ "source": "awesome-list",
1262
+ "isOfficial": false,
1263
+ "securityScore": 100
1264
+ },
1265
+ "install": {
1266
+ "method": "manual",
1267
+ "command": "git clone https://github.com/smtg-ai/claude-squad"
1268
+ }
1269
+ },
1270
+ {
1271
+ "id": "skill-claude-swarm",
1272
+ "name": "Claude Swarm",
1273
+ "type": "plugin",
1274
+ "url": "https://github.com/parruda/claude-swarm",
1275
+ "description": "Launch Claude Code session that is connected to a swarm of Claude Code Agents.",
1276
+ "author": {
1277
+ "name": "parruda",
1278
+ "url": "https://github.com/parruda"
1279
+ },
1280
+ "category": "Tooling",
1281
+ "tags": ["tooling", "plugin", "mit"],
1282
+ "detection": {
1283
+ "keywords": ["tool", "utility", "helper"]
1284
+ },
1285
+ "metrics": {
1286
+ "source": "awesome-list",
1287
+ "isOfficial": false,
1288
+ "securityScore": 100
1289
+ },
1290
+ "install": {
1291
+ "method": "manual",
1292
+ "command": "git clone https://github.com/parruda/claude-swarm"
1293
+ }
1294
+ },
1295
+ {
1296
+ "id": "skill-claude-task-runner",
1297
+ "name": "Claude Task Runner",
1298
+ "type": "plugin",
1299
+ "url": "https://github.com/grahama1970/claude-task-runner",
1300
+ "description": "A specialized tool to manage context isolation and focused task execution with Claude Code, solving the critical challenge of context length limitations and task focus when working with Claude on complex, multi-step projects.",
1301
+ "author": {
1302
+ "name": "grahama1970",
1303
+ "url": "https://github.com/grahama1970"
1304
+ },
1305
+ "category": "Tooling",
1306
+ "tags": ["tooling", "plugin", "not_found"],
1307
+ "detection": {
1308
+ "keywords": ["ci", "tool", "utility", "helper"]
1309
+ },
1310
+ "metrics": {
1311
+ "source": "awesome-list",
1312
+ "isOfficial": false,
1313
+ "securityScore": 100
1314
+ },
1315
+ "install": {
1316
+ "method": "manual",
1317
+ "command": "git clone https://github.com/grahama1970/claude-task-runner"
1318
+ }
1319
+ },
1320
+ {
1321
+ "id": "skill-happy-coder",
1322
+ "name": "Happy Coder",
1323
+ "type": "plugin",
1324
+ "url": "https://github.com/slopus/happy",
1325
+ "description": "Spawn and control multiple Claude Codes in parallel from your phone or desktop. Happy Coder runs Claude Code on your hardware, sends push notifications when Claude needs more input or permission, and costs nothing.",
1326
+ "author": {
1327
+ "name": "GrocerPublishAgent",
1328
+ "url": "https://peoplesgrocers.com/en/projects"
1329
+ },
1330
+ "category": "Tooling",
1331
+ "tags": ["tooling", "plugin", "mit"],
1332
+ "detection": {
1333
+ "keywords": ["tool", "utility", "helper"]
1334
+ },
1335
+ "metrics": {
1336
+ "source": "awesome-list",
1337
+ "isOfficial": false,
1338
+ "securityScore": 100
1339
+ },
1340
+ "install": {
1341
+ "method": "manual",
1342
+ "command": "git clone https://github.com/slopus/happy"
1343
+ }
1344
+ },
1345
+ {
1346
+ "id": "skill-the-agentic-startup",
1347
+ "name": "The Agentic Startup",
1348
+ "type": "plugin",
1349
+ "url": "https://github.com/rsmdt/the-startup",
1350
+ "description": "Yet Another Claude Orchestrator - a collection of agents, commands, etc., for shipping production code - but I like this because it's comprehensive, well-written, and one of the few resources that actually uses Output Styles! +10 points!",
1351
+ "author": {
1352
+ "name": "Rudolf Schmidt",
1353
+ "url": "https://github.com/rsmdt"
1354
+ },
1355
+ "category": "Tooling",
1356
+ "tags": ["tooling", "plugin", "mit"],
1357
+ "detection": {
1358
+ "keywords": ["tool", "utility", "helper"]
1359
+ },
1360
+ "metrics": {
1361
+ "source": "awesome-list",
1362
+ "isOfficial": false,
1363
+ "securityScore": 100
1364
+ },
1365
+ "install": {
1366
+ "method": "manual",
1367
+ "command": "git clone https://github.com/rsmdt/the-startup"
1368
+ }
1369
+ },
1370
+ {
1371
+ "id": "skill-tsk-ai-agent-task-manager-and-sandbox",
1372
+ "name": "TSK - AI Agent Task Manager and Sandbox",
1373
+ "type": "plugin",
1374
+ "url": "https://github.com/dtormoen/tsk",
1375
+ "description": "A Rust CLI tool that lets you delegate development tasks to AI agents running in sandboxed Docker environments. Multiple agents work in parallel, returning git branches for human review.",
1376
+ "author": {
1377
+ "name": "dtormoen",
1378
+ "url": "https://github.com/dtormoen"
1379
+ },
1380
+ "category": "Tooling",
1381
+ "tags": ["tooling", "plugin", "mit"],
1382
+ "detection": {
1383
+ "keywords": ["rust", "docker", "git", "ai", "tool", "utility", "helper"]
1384
+ },
1385
+ "metrics": {
1386
+ "source": "awesome-list",
1387
+ "isOfficial": false,
1388
+ "securityScore": 100
1389
+ },
1390
+ "install": {
1391
+ "method": "manual",
1392
+ "command": "git clone https://github.com/dtormoen/tsk"
1393
+ }
1394
+ },
1395
+ {
1396
+ "id": "skill-ccometixline-claude-code-statusline",
1397
+ "name": "CCometixLine - Claude Code Statusline",
1398
+ "type": "plugin",
1399
+ "url": "https://github.com/Haleclipse/CCometixLine",
1400
+ "description": "A high-performance Claude Code statusline tool written in Rust with Git integration, usage tracking, interactive TUI configuration, and Claude Code enhancement utilities.",
1401
+ "author": {
1402
+ "name": "Haleclipse",
1403
+ "url": "https://github.com/Haleclipse"
1404
+ },
1405
+ "category": "Status Lines",
1406
+ "tags": ["status lines", "plugin", "not_found"],
1407
+ "detection": {
1408
+ "keywords": ["rust", "git"]
1409
+ },
1410
+ "metrics": {
1411
+ "source": "awesome-list",
1412
+ "isOfficial": false,
1413
+ "securityScore": 100
1414
+ },
1415
+ "install": {
1416
+ "method": "manual",
1417
+ "command": "git clone https://github.com/Haleclipse/CCometixLine"
1418
+ }
1419
+ },
1420
+ {
1421
+ "id": "skill-ccstatusline",
1422
+ "name": "ccstatusline",
1423
+ "type": "plugin",
1424
+ "url": "https://github.com/sirmalloc/ccstatusline",
1425
+ "description": "A highly customizable status line formatter for Claude Code CLI that displays model info, git branch, token usage, and other metrics in your terminal.",
1426
+ "author": {
1427
+ "name": "sirmalloc",
1428
+ "url": "https://github.com/sirmalloc"
1429
+ },
1430
+ "category": "Status Lines",
1431
+ "tags": ["status lines", "plugin", "mit"],
1432
+ "detection": {
1433
+ "keywords": ["git"]
1434
+ },
1435
+ "metrics": {
1436
+ "source": "awesome-list",
1437
+ "isOfficial": false,
1438
+ "securityScore": 100
1439
+ },
1440
+ "install": {
1441
+ "method": "manual",
1442
+ "command": "git clone https://github.com/sirmalloc/ccstatusline"
1443
+ }
1444
+ },
1445
+ {
1446
+ "id": "skill-claude-code-statusline",
1447
+ "name": "claude-code-statusline",
1448
+ "type": "plugin",
1449
+ "url": "https://github.com/rz1989s/claude-code-statusline",
1450
+ "description": "Enhanced 4-line statusline for Claude Code with themes, cost tracking, and MCP server monitoring",
1451
+ "author": {
1452
+ "name": "rz1989s",
1453
+ "url": "https://github.com/rz1989s"
1454
+ },
1455
+ "category": "Status Lines",
1456
+ "tags": ["status lines", "plugin", "mit"],
1457
+ "detection": {
1458
+ "keywords": []
1459
+ },
1460
+ "metrics": {
1461
+ "source": "awesome-list",
1462
+ "isOfficial": false,
1463
+ "securityScore": 100
1464
+ },
1465
+ "install": {
1466
+ "method": "manual",
1467
+ "command": "git clone https://github.com/rz1989s/claude-code-statusline"
1468
+ }
1469
+ },
1470
+ {
1471
+ "id": "skill-claude-powerline",
1472
+ "name": "claude-powerline",
1473
+ "type": "plugin",
1474
+ "url": "https://github.com/Owloops/claude-powerline",
1475
+ "description": "A vim-style powerline statusline for Claude Code with real-time usage tracking, git integration, custom themes, and more",
1476
+ "author": {
1477
+ "name": "Owloops",
1478
+ "url": "https://github.com/Owloops"
1479
+ },
1480
+ "category": "Status Lines",
1481
+ "tags": ["status lines", "plugin", "mit"],
1482
+ "detection": {
1483
+ "keywords": ["git"]
1484
+ },
1485
+ "metrics": {
1486
+ "source": "awesome-list",
1487
+ "isOfficial": false,
1488
+ "securityScore": 100
1489
+ },
1490
+ "install": {
1491
+ "method": "manual",
1492
+ "command": "git clone https://github.com/Owloops/claude-powerline"
1493
+ }
1494
+ },
1495
+ {
1496
+ "id": "skill-claudia-statusline",
1497
+ "name": "claudia-statusline",
1498
+ "type": "plugin",
1499
+ "url": "https://github.com/hagan/claudia-statusline",
1500
+ "description": "High-performance Rust-based statusline for Claude Code with persistent stats tracking, progress bars, and optional cloud sync. Features SQLite-first persistence, git integration, context progress bars, burn rate calculation, XDG-compliant with theme support (dark/light, NO_COLOR).",
1501
+ "author": {
1502
+ "name": "Hagan Franks",
1503
+ "url": "https://github.com/hagan"
1504
+ },
1505
+ "category": "Status Lines",
1506
+ "tags": ["status lines", "plugin", "mit"],
1507
+ "detection": {
1508
+ "keywords": ["rust", "git"]
1509
+ },
1510
+ "metrics": {
1511
+ "source": "awesome-list",
1512
+ "isOfficial": false,
1513
+ "securityScore": 100
1514
+ },
1515
+ "install": {
1516
+ "method": "manual",
1517
+ "command": "git clone https://github.com/hagan/claudia-statusline"
1518
+ }
1519
+ },
1520
+ {
1521
+ "id": "skill-claudable",
1522
+ "name": "Claudable",
1523
+ "type": "plugin",
1524
+ "url": "https://github.com/opactorai/Claudable",
1525
+ "description": "Claudable is an open-source web builder that leverages local CLI agents, such as Claude Code and Cursor Agent, to build and deploy products effortlessly.",
1526
+ "author": {
1527
+ "name": "Ethan Park",
1528
+ "url": "https://www.linkedin.com/in/seongil-park/"
1529
+ },
1530
+ "category": "Alternative Clients",
1531
+ "tags": ["alternative clients", "plugin", "mit"],
1532
+ "detection": {
1533
+ "keywords": []
1534
+ },
1535
+ "metrics": {
1536
+ "source": "awesome-list",
1537
+ "isOfficial": false,
1538
+ "securityScore": 100
1539
+ },
1540
+ "install": {
1541
+ "method": "manual",
1542
+ "command": "git clone https://github.com/opactorai/Claudable"
1543
+ }
1544
+ },
1545
+ {
1546
+ "id": "skill-omnara",
1547
+ "name": "Omnara",
1548
+ "type": "plugin",
1549
+ "url": "https://github.com/omnara-ai/omnara",
1550
+ "description": "A command center for AI agents that syncs Claude Code sessions across terminal, web, and mobile. Allows for remote monitoring, human-in-the-loop interaction, and team collaboration.",
1551
+ "author": {
1552
+ "name": "Ishaan Sehgal",
1553
+ "url": "https://github.com/ishaansehgal99"
1554
+ },
1555
+ "category": "Alternative Clients",
1556
+ "tags": ["alternative clients", "plugin", "apache-2.0"],
1557
+ "detection": {
1558
+ "keywords": ["ai"]
1559
+ },
1560
+ "metrics": {
1561
+ "source": "awesome-list",
1562
+ "isOfficial": false,
1563
+ "securityScore": 100
1564
+ },
1565
+ "install": {
1566
+ "method": "manual",
1567
+ "command": "git clone https://github.com/omnara-ai/omnara"
1568
+ }
1569
+ }
1570
+ ]
1571
+ }