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,3233 @@
1
+ {
2
+ "version": "0.1.0",
3
+ "lastUpdated": "2026-01-30T12:20:06.930Z",
4
+ "items": [
5
+ {
6
+ "id": "skill-ai-agent-ai-spy",
7
+ "name": "AI Agent, AI Spy",
8
+ "type": "skill",
9
+ "url": "https://youtu.be/0ANECpNdt-4",
10
+ "description": "Members from the Signal Foundation with some really great tips and tricks on how to turn your operating system into an instrument of total surveillance, and why some companies are doing this really awesome thing. [warning: YouTube link]",
11
+ "author": {
12
+ "name": "Whittaker & Tiwari",
13
+ "url": "https://signalfoundation.org/"
14
+ },
15
+ "category": "Agent Skills",
16
+ "tags": ["agent skills", "skill", "no license / not specified"],
17
+ "detection": {
18
+ "keywords": ["ai"]
19
+ },
20
+ "metrics": {
21
+ "source": "awesome-list",
22
+ "isOfficial": false
23
+ },
24
+ "install": {
25
+ "method": "manual"
26
+ }
27
+ },
28
+ {
29
+ "id": "skill-claude-codex-settings",
30
+ "name": "Claude Codex Settings",
31
+ "type": "skill",
32
+ "url": "https://github.com/fcakyon/claude-codex-settings",
33
+ "description": "A well-organized, well-written set of plugins covering core developer activities, such as working with common cloud platforms like GitHub, Azure, MongoDB, and popular services such as Tavily, Playwright, and more. Clear, not overly-opinionated, and compatible with a few other providers.",
34
+ "author": {
35
+ "name": "fatih akyon",
36
+ "url": "https://github.com/fcakyon"
37
+ },
38
+ "category": "Agent Skills",
39
+ "tags": ["agent skills", "skill", "apache-2.0"],
40
+ "detection": {
41
+ "keywords": ["go", "azure", "mongodb", "git", "github"]
42
+ },
43
+ "metrics": {
44
+ "source": "awesome-list",
45
+ "isOfficial": false,
46
+ "securityScore": 100
47
+ },
48
+ "install": {
49
+ "method": "manual",
50
+ "command": "git clone https://github.com/fcakyon/claude-codex-settings"
51
+ }
52
+ },
53
+ {
54
+ "id": "skill-claude-mountaineering-skills",
55
+ "name": "Claude Mountaineering Skills",
56
+ "type": "skill",
57
+ "url": "https://github.com/dreamiurg/claude-mountaineering-skills",
58
+ "description": "Claude Code skill that automates mountain route research for North American peaks. Aggregates data from 10+ mountaineering sources like Mountaineers.org, PeakBagger.com and SummitPost.com to generate detailed route beta reports with weather, avalanche conditions, and trip reports.",
59
+ "author": {
60
+ "name": "Dmytro Gaivoronsky",
61
+ "url": "https://github.com/dreamiurg"
62
+ },
63
+ "category": "Agent Skills",
64
+ "tags": ["agent skills", "skill", "mit"],
65
+ "detection": {
66
+ "keywords": ["ai"]
67
+ },
68
+ "metrics": {
69
+ "source": "awesome-list",
70
+ "isOfficial": false,
71
+ "securityScore": 100
72
+ },
73
+ "install": {
74
+ "method": "manual",
75
+ "command": "git clone https://github.com/dreamiurg/claude-mountaineering-skills"
76
+ }
77
+ },
78
+ {
79
+ "id": "skill-codex-skill",
80
+ "name": "Codex Skill",
81
+ "type": "skill",
82
+ "url": "https://github.com/skills-directory/skill-codex",
83
+ "description": "Enables users to prompt codex from claude code. Unlike the raw codex mcp server, this skill infers parameters such as model, reasoning effort, sandboxing from your prompt or asks you to specify them. It also simplifies continuing prior codex sessions so that codex can continue with the prior context.",
84
+ "author": {
85
+ "name": "klaudworks",
86
+ "url": "https://github.com/klaudworks"
87
+ },
88
+ "category": "Agent Skills",
89
+ "tags": ["agent skills", "skill", "not_found"],
90
+ "detection": {
91
+ "keywords": ["ci"]
92
+ },
93
+ "metrics": {
94
+ "source": "awesome-list",
95
+ "isOfficial": false,
96
+ "securityScore": 100
97
+ },
98
+ "install": {
99
+ "method": "manual",
100
+ "command": "git clone https://github.com/skills-directory/skill-codex"
101
+ }
102
+ },
103
+ {
104
+ "id": "skill-compound-engineering-plugin",
105
+ "name": "Compound Engineering Plugin",
106
+ "type": "skill",
107
+ "url": "https://github.com/EveryInc/compound-engineering-plugin",
108
+ "description": "A very pragmatic set of well-designed agents, skills, and commands, built around a discipline of turning past mistakes and errors into lessons and opportunities for future growth and improvement. Good documentation.",
109
+ "author": {
110
+ "name": "EveryInc",
111
+ "url": "https://github.com/EveryInc"
112
+ },
113
+ "category": "Agent Skills",
114
+ "tags": ["agent skills", "skill", "mit"],
115
+ "detection": {
116
+ "keywords": ["go", "ci"]
117
+ },
118
+ "metrics": {
119
+ "source": "awesome-list",
120
+ "isOfficial": false,
121
+ "securityScore": 100
122
+ },
123
+ "install": {
124
+ "method": "manual",
125
+ "command": "git clone https://github.com/EveryInc/compound-engineering-plugin"
126
+ }
127
+ },
128
+ {
129
+ "id": "skill-context-engineering-kit",
130
+ "name": "Context Engineering Kit",
131
+ "type": "skill",
132
+ "url": "https://github.com/NeoLabHQ/context-engineering-kit",
133
+ "description": "Hand-crafted collection of advanced context engineering techniques and patterns with minimal token footprint focused on improving agent result quality.",
134
+ "author": {
135
+ "name": "Vlad Goncharov",
136
+ "url": "https://github.com/LeoVS09"
137
+ },
138
+ "category": "Agent Skills",
139
+ "tags": ["agent skills", "skill", "gpl-3.0"],
140
+ "detection": {
141
+ "keywords": []
142
+ },
143
+ "metrics": {
144
+ "source": "awesome-list",
145
+ "isOfficial": false,
146
+ "securityScore": 100
147
+ },
148
+ "install": {
149
+ "method": "manual",
150
+ "command": "git clone https://github.com/NeoLabHQ/context-engineering-kit"
151
+ }
152
+ },
153
+ {
154
+ "id": "skill-everything-claude-code",
155
+ "name": "Everything Claude Code",
156
+ "type": "skill",
157
+ "url": "https://github.com/affaan-m/everything-claude-code",
158
+ "description": "Top-notch, well-written resources covering \"just about everything\" from core engineering domains. What's nice about this \"everything-\" store is most of the resources have significant standalone value and unlike some all-encompassing frameworks, although you can opt in to the author's own specific workflow patterns if you choose, the individual resources offer exemplary patterns in (just about) every Claude Code feature you can find (apologies to the Output Styles devotees).",
159
+ "author": {
160
+ "name": "Affaan Mustafa",
161
+ "url": "https://github.com/affaan-m/"
162
+ },
163
+ "category": "Agent Skills",
164
+ "tags": ["agent skills", "skill", "mit"],
165
+ "detection": {
166
+ "keywords": ["ci", "auth", "ai"]
167
+ },
168
+ "metrics": {
169
+ "source": "awesome-list",
170
+ "isOfficial": false,
171
+ "securityScore": 100
172
+ },
173
+ "install": {
174
+ "method": "manual",
175
+ "command": "git clone https://github.com/affaan-m/everything-claude-code"
176
+ }
177
+ },
178
+ {
179
+ "id": "skill-trail-of-bits-security-skills",
180
+ "name": "Trail of Bits Security Skills",
181
+ "type": "skill",
182
+ "url": "https://github.com/trailofbits/skills",
183
+ "description": "A very professional collection of over a dozen security-focused skills for code auditing and vulnerability detection. Includes skills for static analysis with CodeQL and Semgrep, variant analysis across codebases, fix verification, and differential code review.",
184
+ "author": {
185
+ "name": "Trail of Bits",
186
+ "url": "https://github.com/trailofbits"
187
+ },
188
+ "category": "Agent Skills",
189
+ "tags": ["agent skills", "skill", "cc-by-sa-4.0"],
190
+ "detection": {
191
+ "keywords": ["security", "ai"]
192
+ },
193
+ "metrics": {
194
+ "source": "awesome-list",
195
+ "isOfficial": false,
196
+ "securityScore": 100
197
+ },
198
+ "install": {
199
+ "method": "manual",
200
+ "command": "git clone https://github.com/trailofbits/skills"
201
+ }
202
+ },
203
+ {
204
+ "id": "skill-t-ches-claude-code-resources",
205
+ "name": "TÂCHES Claude Code Resources",
206
+ "type": "skill",
207
+ "url": "https://github.com/glittercowboy/taches-cc-resources",
208
+ "description": "A well-balanced, \"down-to-Earth\" set of sub agents, skills, and commands, that are well-organized, easy to read, and a healthy focus on \"meta\"-skills/agents, like \"skill-auditor\", hook creation, etc. - the kind of things you can adapt to your workflow, and not the other way around.",
209
+ "author": {
210
+ "name": "TÂCHES",
211
+ "url": "https://github.com/glittercowboy"
212
+ },
213
+ "category": "Agent Skills",
214
+ "tags": ["agent skills", "skill", "mit"],
215
+ "detection": {
216
+ "keywords": []
217
+ },
218
+ "metrics": {
219
+ "source": "awesome-list",
220
+ "isOfficial": false,
221
+ "securityScore": 100
222
+ },
223
+ "install": {
224
+ "method": "manual",
225
+ "command": "git clone https://github.com/glittercowboy/taches-cc-resources"
226
+ }
227
+ },
228
+ {
229
+ "id": "skill-web-assets-generator-skill",
230
+ "name": "Web Assets Generator Skill",
231
+ "type": "skill",
232
+ "url": "https://github.com/alonw0/web-asset-generator",
233
+ "description": "Easily generate web assets from Claude Code including favicons, app icons (PWA), and social media meta images (Open Graph) for Facebook, Twitter, WhatsApp, and LinkedIn. Handles image resizing, text-to-image generation, emojis, and provides proper HTML meta tags.",
234
+ "author": {
235
+ "name": "Alon Wolenitz",
236
+ "url": "https://github.com/alonw0"
237
+ },
238
+ "category": "Agent Skills",
239
+ "tags": ["agent skills", "skill", "mit"],
240
+ "detection": {
241
+ "keywords": ["ci", "ml"]
242
+ },
243
+ "metrics": {
244
+ "source": "awesome-list",
245
+ "isOfficial": false,
246
+ "securityScore": 100
247
+ },
248
+ "install": {
249
+ "method": "manual",
250
+ "command": "git clone https://github.com/alonw0/web-asset-generator"
251
+ }
252
+ },
253
+ {
254
+ "id": "skill-ab-method",
255
+ "name": "AB Method",
256
+ "type": "workflow",
257
+ "url": "https://github.com/ayoubben18/ab-method",
258
+ "description": "A principled, spec-driven workflow that transforms large problems into focused, incremental missions using Claude Code's specialized sub agents. Includes slash-commands, sub agents, and specialized workflows designed for specific parts of the SDLC.",
259
+ "author": {
260
+ "name": "Ayoub Bensalah",
261
+ "url": "https://github.com/ayoubben18"
262
+ },
263
+ "category": "Workflows & Knowledge Guides",
264
+ "tags": ["workflows & knowledge guides", "workflow", "mit"],
265
+ "detection": {
266
+ "keywords": ["ci", "workflow", "automation", "pipeline"],
267
+ "files": ["CLAUDE.md", ".claude/*"]
268
+ },
269
+ "metrics": {
270
+ "source": "awesome-list",
271
+ "isOfficial": false,
272
+ "securityScore": 100
273
+ },
274
+ "install": {
275
+ "method": "manual",
276
+ "command": "git clone https://github.com/ayoubben18/ab-method"
277
+ }
278
+ },
279
+ {
280
+ "id": "skill-agentic-workflow-patterns",
281
+ "name": "Agentic Workflow Patterns",
282
+ "type": "workflow",
283
+ "url": "https://github.com/ThibautMelen/agentic-workflow-patterns",
284
+ "description": "A comprehensive and well-documented collection of agentic patterns from Anthropic docs, with colorful Mermaid diagrams and code examples for each pattern. Covers Subagent Orchestration, Progressive Skills, Parallel Tool Calling, Master-Clone Architecture, Wizard Workflows, and more. Also compatible with other providers.",
285
+ "author": {
286
+ "name": "ThibautMelen",
287
+ "url": "https://github.com/ThibautMelen"
288
+ },
289
+ "category": "Workflows & Knowledge Guides",
290
+ "tags": ["workflows & knowledge guides", "workflow", "not_found"],
291
+ "detection": {
292
+ "keywords": ["ai", "workflow", "automation", "pipeline"],
293
+ "files": ["CLAUDE.md", ".claude/*"]
294
+ },
295
+ "metrics": {
296
+ "source": "awesome-list",
297
+ "isOfficial": false,
298
+ "securityScore": 100
299
+ },
300
+ "install": {
301
+ "method": "manual",
302
+ "command": "git clone https://github.com/ThibautMelen/agentic-workflow-patterns"
303
+ }
304
+ },
305
+ {
306
+ "id": "skill-blogging-platform-instructions",
307
+ "name": "Blogging Platform Instructions",
308
+ "type": "workflow",
309
+ "url": "https://github.com/cloudartisan/cloudartisan.github.io/tree/main/.claude/commands",
310
+ "description": "Provides a well-structured set of commands for publishing and maintaining a blogging platform, including commands for creating posts, managing categories, and handling media files.",
311
+ "author": {
312
+ "name": "cloudartisan",
313
+ "url": "https://github.com/cloudartisan"
314
+ },
315
+ "category": "Workflows & Knowledge Guides",
316
+ "tags": ["workflows & knowledge guides", "workflow", "cc-by-sa-4.0"],
317
+ "detection": {
318
+ "keywords": ["go", "ai", "workflow", "automation", "pipeline"],
319
+ "files": ["CLAUDE.md", ".claude/*"]
320
+ },
321
+ "metrics": {
322
+ "source": "awesome-list",
323
+ "isOfficial": false,
324
+ "securityScore": 100
325
+ },
326
+ "install": {
327
+ "method": "manual",
328
+ "command": "git clone https://github.com/cloudartisan/cloudartisan.github.io/tree/main/.claude/commands"
329
+ }
330
+ },
331
+ {
332
+ "id": "skill-claude-code-documentation-mirror",
333
+ "name": "Claude Code Documentation Mirror",
334
+ "type": "workflow",
335
+ "url": "https://github.com/ericbuess/claude-code-docs",
336
+ "description": "A mirror of the Anthropic © PBC documentation pages for Claude Code, updated every few hours. Can come in handy when trying to stay on top of the ever-expanding feature-set of Dr. Claw D. Code, Ph.D.",
337
+ "author": {
338
+ "name": "Eric Buess",
339
+ "url": "https://github.com/ericbuess"
340
+ },
341
+ "category": "Workflows & Knowledge Guides",
342
+ "tags": ["workflows & knowledge guides", "workflow", "noassertion"],
343
+ "detection": {
344
+ "keywords": ["workflow", "automation", "pipeline"],
345
+ "files": ["CLAUDE.md", ".claude/*"]
346
+ },
347
+ "metrics": {
348
+ "source": "awesome-list",
349
+ "isOfficial": false,
350
+ "securityScore": 100
351
+ },
352
+ "install": {
353
+ "method": "manual",
354
+ "command": "git clone https://github.com/ericbuess/claude-code-docs"
355
+ }
356
+ },
357
+ {
358
+ "id": "skill-claude-code-handbook",
359
+ "name": "Claude Code Handbook",
360
+ "type": "workflow",
361
+ "url": "https://nikiforovall.blog/claude-code-rules/",
362
+ "description": "Collection of best practices, tips, and techniques for Claude Code development workflows, enhanced with distributable plugins",
363
+ "author": {
364
+ "name": "nikiforovall",
365
+ "url": "https://github.com/nikiforovall"
366
+ },
367
+ "category": "Workflows & Knowledge Guides",
368
+ "tags": ["workflows & knowledge guides", "workflow", "mit"],
369
+ "detection": {
370
+ "keywords": ["workflow", "automation", "pipeline"],
371
+ "files": ["CLAUDE.md", ".claude/*"]
372
+ },
373
+ "metrics": {
374
+ "source": "awesome-list",
375
+ "isOfficial": false
376
+ },
377
+ "install": {
378
+ "method": "manual"
379
+ }
380
+ },
381
+ {
382
+ "id": "skill-claude-code-infrastructure-showcase",
383
+ "name": "Claude Code Infrastructure Showcase",
384
+ "type": "workflow",
385
+ "url": "https://github.com/diet103/claude-code-infrastructure-showcase",
386
+ "description": "A remarkably innovative approach to working with Skills, the centerpiece of which being a technique that leverages hooks to ensure that Claude intelligently selects and activates the appropriate Skill given the current context. Well-documented and adaptable to different projects and workflows.",
387
+ "author": {
388
+ "name": "diet103",
389
+ "url": "https://github.com/diet103"
390
+ },
391
+ "category": "Workflows & Knowledge Guides",
392
+ "tags": ["workflows & knowledge guides", "workflow", "mit"],
393
+ "detection": {
394
+ "keywords": ["workflow", "automation", "pipeline"],
395
+ "files": ["CLAUDE.md", ".claude/*"]
396
+ },
397
+ "metrics": {
398
+ "source": "awesome-list",
399
+ "isOfficial": false,
400
+ "securityScore": 100
401
+ },
402
+ "install": {
403
+ "method": "manual",
404
+ "command": "git clone https://github.com/diet103/claude-code-infrastructure-showcase"
405
+ }
406
+ },
407
+ {
408
+ "id": "skill-claude-code-pm",
409
+ "name": "Claude Code PM",
410
+ "type": "workflow",
411
+ "url": "https://github.com/automazeio/ccpm",
412
+ "description": "Really comprehensive and feature-packed project-management workflow for Claude Code. Numerous specialized agents, slash-commands, and strong documentation.",
413
+ "author": {
414
+ "name": "Ran Aroussi",
415
+ "url": "https://github.com/ranaroussi"
416
+ },
417
+ "category": "Workflows & Knowledge Guides",
418
+ "tags": ["workflows & knowledge guides", "workflow", "mit"],
419
+ "detection": {
420
+ "keywords": ["ci", "workflow", "automation", "pipeline"],
421
+ "files": ["CLAUDE.md", ".claude/*"]
422
+ },
423
+ "metrics": {
424
+ "source": "awesome-list",
425
+ "isOfficial": false,
426
+ "securityScore": 100
427
+ },
428
+ "install": {
429
+ "method": "manual",
430
+ "command": "git clone https://github.com/automazeio/ccpm"
431
+ }
432
+ },
433
+ {
434
+ "id": "skill-claude-code-repos-index",
435
+ "name": "Claude Code Repos Index",
436
+ "type": "workflow",
437
+ "url": "https://github.com/danielrosehill/Claude-Code-Repos-Index",
438
+ "description": "This is either the work of a prolific genius, or a very clever bot (or both), although it hardly matters because the quality is so good - an index of 75+ Claude Code repositories published by the author - and I'm not talking about slop. CMS, system design, deep research, IoT, agentic workflows, server management, personal health... If you spot the lie, let me know, otherwise please check these out.",
439
+ "author": {
440
+ "name": "Daniel Rosehill",
441
+ "url": "https://github.com/danielrosehill"
442
+ },
443
+ "category": "Workflows & Knowledge Guides",
444
+ "tags": ["workflows & knowledge guides", "workflow", "not_found"],
445
+ "detection": {
446
+ "keywords": ["go", "auth", "workflow", "automation", "pipeline"],
447
+ "files": ["CLAUDE.md", ".claude/*"]
448
+ },
449
+ "metrics": {
450
+ "source": "awesome-list",
451
+ "isOfficial": false,
452
+ "securityScore": 100
453
+ },
454
+ "install": {
455
+ "method": "manual",
456
+ "command": "git clone https://github.com/danielrosehill/Claude-Code-Repos-Index"
457
+ }
458
+ },
459
+ {
460
+ "id": "skill-claude-code-system-prompts",
461
+ "name": "Claude Code System Prompts",
462
+ "type": "workflow",
463
+ "url": "https://github.com/Piebald-AI/claude-code-system-prompts",
464
+ "description": "All parts of Claude Code's system prompt, including builtin tool descriptions, sub agent prompts (Plan/Explore/Task), utility prompts (CLAUDE.md, compact, Bash cmd, security review, agent creation, etc.). Updated for each Claude Code version.",
465
+ "author": {
466
+ "name": "Piebald AI",
467
+ "url": "https://github.com/Piebald-AI"
468
+ },
469
+ "category": "Workflows & Knowledge Guides",
470
+ "tags": ["workflows & knowledge guides", "workflow", "mit"],
471
+ "detection": {
472
+ "keywords": ["security", "workflow", "automation", "pipeline"],
473
+ "files": ["CLAUDE.md", ".claude/*"]
474
+ },
475
+ "metrics": {
476
+ "source": "awesome-list",
477
+ "isOfficial": false,
478
+ "securityScore": 100
479
+ },
480
+ "install": {
481
+ "method": "manual",
482
+ "command": "git clone https://github.com/Piebald-AI/claude-code-system-prompts"
483
+ }
484
+ },
485
+ {
486
+ "id": "skill-claude-code-tips",
487
+ "name": "Claude Code Tips",
488
+ "type": "workflow",
489
+ "url": "https://github.com/ykdojo/claude-code-tips",
490
+ "description": "A nice variety of 35+ brief but information-dense Claude Code tips covering voice input, system prompt patching, container workflows for risky tasks, conversation cloning(!), multi-model orchestration with Gemini CLI, and plenty more. Nice demos, working scripts, a plugin, I'd say this probably has a little something for everyone.",
491
+ "author": {
492
+ "name": "ykdojo",
493
+ "url": "https://github.com/ykdojo"
494
+ },
495
+ "category": "Workflows & Knowledge Guides",
496
+ "tags": ["workflows & knowledge guides", "workflow", "noassertion"],
497
+ "detection": {
498
+ "keywords": ["ai", "workflow", "automation", "pipeline"],
499
+ "files": ["CLAUDE.md", ".claude/*"]
500
+ },
501
+ "metrics": {
502
+ "source": "awesome-list",
503
+ "isOfficial": false,
504
+ "securityScore": 100
505
+ },
506
+ "install": {
507
+ "method": "manual",
508
+ "command": "git clone https://github.com/ykdojo/claude-code-tips"
509
+ }
510
+ },
511
+ {
512
+ "id": "skill-claude-codepro",
513
+ "name": "Claude CodePro",
514
+ "type": "workflow",
515
+ "url": "https://github.com/maxritter/claude-codepro",
516
+ "description": "Professional development environment for Claude Code with spec-driven workflow, TDD enforcement, cross-session memory, semantic search, quality hooks, and modular rules integration. A bit \"heavyweight\" but feature-packed and has wide coverage.",
517
+ "author": {
518
+ "name": "Max Ritter",
519
+ "url": "https://www.maxritter.net"
520
+ },
521
+ "category": "Workflows & Knowledge Guides",
522
+ "tags": ["workflows & knowledge guides", "workflow", "noassertion"],
523
+ "detection": {
524
+ "keywords": ["workflow", "automation", "pipeline"],
525
+ "files": ["CLAUDE.md", ".claude/*"]
526
+ },
527
+ "metrics": {
528
+ "source": "awesome-list",
529
+ "isOfficial": false,
530
+ "securityScore": 100
531
+ },
532
+ "install": {
533
+ "method": "manual",
534
+ "command": "git clone https://github.com/maxritter/claude-codepro"
535
+ }
536
+ },
537
+ {
538
+ "id": "skill-claude-code-docs",
539
+ "name": "claude-code-docs",
540
+ "type": "workflow",
541
+ "url": "https://github.com/costiash/claude-code-docs",
542
+ "description": "A mirror of the Anthropic© PBC documentation site for Claude/Code, but with bonus features like full-text search and query-time updates - a nice companion to `claude-code-docs` for up-to-the-minute, fully-indexed information so that Claude Code can read about itself.",
543
+ "author": {
544
+ "name": "Constantin Shafranski",
545
+ "url": "https://github.com/costiash"
546
+ },
547
+ "category": "Workflows & Knowledge Guides",
548
+ "tags": ["workflows & knowledge guides", "workflow", "noassertion"],
549
+ "detection": {
550
+ "keywords": ["workflow", "automation", "pipeline"],
551
+ "files": ["CLAUDE.md", ".claude/*"]
552
+ },
553
+ "metrics": {
554
+ "source": "awesome-list",
555
+ "isOfficial": false,
556
+ "securityScore": 100
557
+ },
558
+ "install": {
559
+ "method": "manual",
560
+ "command": "git clone https://github.com/costiash/claude-code-docs"
561
+ }
562
+ },
563
+ {
564
+ "id": "skill-claudopro-directory",
565
+ "name": "ClaudoPro Directory",
566
+ "type": "workflow",
567
+ "url": "https://github.com/JSONbored/claudepro-directory",
568
+ "description": "Well-crafted, wide selection of Claude Code hooks, slash commands, subagent files, and more, covering a range of specialized tasks and workflows. Better resources than your average \"Claude-template-for-everything\" site.",
569
+ "author": {
570
+ "name": "ghost",
571
+ "url": "https://github.com/JSONbored"
572
+ },
573
+ "category": "Workflows & Knowledge Guides",
574
+ "tags": ["workflows & knowledge guides", "workflow", "mit"],
575
+ "detection": {
576
+ "keywords": ["ci", "workflow", "automation", "pipeline"],
577
+ "files": ["CLAUDE.md", ".claude/*"]
578
+ },
579
+ "metrics": {
580
+ "source": "awesome-list",
581
+ "isOfficial": false,
582
+ "securityScore": 100
583
+ },
584
+ "install": {
585
+ "method": "manual",
586
+ "command": "git clone https://github.com/JSONbored/claudepro-directory"
587
+ }
588
+ },
589
+ {
590
+ "id": "skill-context-priming",
591
+ "name": "Context Priming",
592
+ "type": "workflow",
593
+ "url": "https://github.com/disler/just-prompt/tree/main/.claude/commands",
594
+ "description": "Provides a systematic approach to priming Claude Code with comprehensive project context through specialized commands for different project scenarios and development contexts.",
595
+ "author": {
596
+ "name": "disler",
597
+ "url": "https://github.com/disler"
598
+ },
599
+ "category": "Workflows & Knowledge Guides",
600
+ "tags": ["workflows & knowledge guides", "workflow", "not_found"],
601
+ "detection": {
602
+ "keywords": ["ci", "workflow", "automation", "pipeline"],
603
+ "files": ["CLAUDE.md", ".claude/*"]
604
+ },
605
+ "metrics": {
606
+ "source": "awesome-list",
607
+ "isOfficial": false,
608
+ "securityScore": 100
609
+ },
610
+ "install": {
611
+ "method": "manual",
612
+ "command": "git clone https://github.com/disler/just-prompt/tree/main/.claude/commands"
613
+ }
614
+ },
615
+ {
616
+ "id": "skill-design-review-workflow",
617
+ "name": "Design Review Workflow",
618
+ "type": "workflow",
619
+ "url": "https://github.com/OneRedOak/claude-code-workflows/tree/main/design-review",
620
+ "description": "A tailored workflow for enabling automated UI/UX design review, including specialized sub agents, slash commands, `CLAUDE.md` excerpts, and more. Covers a broad range of criteria from responsive design to accessibility.",
621
+ "author": {
622
+ "name": "Patrick Ellis",
623
+ "url": "https://github.com/OneRedOak"
624
+ },
625
+ "category": "Workflows & Knowledge Guides",
626
+ "tags": ["workflows & knowledge guides", "workflow", "mit"],
627
+ "detection": {
628
+ "keywords": ["ci", "ai", "workflow", "automation", "pipeline"],
629
+ "files": ["CLAUDE.md", ".claude/*"]
630
+ },
631
+ "metrics": {
632
+ "source": "awesome-list",
633
+ "isOfficial": false,
634
+ "securityScore": 100
635
+ },
636
+ "install": {
637
+ "method": "manual",
638
+ "command": "git clone https://github.com/OneRedOak/claude-code-workflows/tree/main/design-review"
639
+ }
640
+ },
641
+ {
642
+ "id": "skill-laravel-tall-stack-ai-development-starter-kit",
643
+ "name": "Laravel TALL Stack AI Development Starter Kit",
644
+ "type": "workflow",
645
+ "url": "https://github.com/tott/laravel-tall-claude-ai-configs",
646
+ "description": "Transform your Laravel TALL (Tailwind, AlpineJS, Laravel, Livewire) stack development with comprehensive Claude Code configurations that provide intelligent assistance, systematic workflows, and domain expert consultation.",
647
+ "author": {
648
+ "name": "tott",
649
+ "url": "https://github.com/tott"
650
+ },
651
+ "category": "Workflows & Knowledge Guides",
652
+ "tags": ["workflows & knowledge guides", "workflow", "mit"],
653
+ "detection": {
654
+ "keywords": ["ai", "workflow", "automation", "pipeline"],
655
+ "files": ["CLAUDE.md", ".claude/*"]
656
+ },
657
+ "metrics": {
658
+ "source": "awesome-list",
659
+ "isOfficial": false,
660
+ "securityScore": 100
661
+ },
662
+ "install": {
663
+ "method": "manual",
664
+ "command": "git clone https://github.com/tott/laravel-tall-claude-ai-configs"
665
+ }
666
+ },
667
+ {
668
+ "id": "skill-learn-claude-code",
669
+ "name": "Learn Claude Code",
670
+ "type": "workflow",
671
+ "url": "https://github.com/shareAI-lab/learn-claude-code",
672
+ "description": "A really interesting analysis of how coding agents like Claude Code are designed. It attempts to break an agent down into its fundamental parts and reconstruct it with minimal code. Great learning resource. Final product is a rudimentary agent with skills, sub-agents, and a todo-list in roughly a few hundred lines of Python.",
673
+ "author": {
674
+ "name": "shareAI-Lab",
675
+ "url": "https://github.com/shareAI-lab/"
676
+ },
677
+ "category": "Workflows & Knowledge Guides",
678
+ "tags": ["workflows & knowledge guides", "workflow", "mit"],
679
+ "detection": {
680
+ "keywords": ["python", "rest", "workflow", "automation", "pipeline"],
681
+ "files": ["CLAUDE.md", ".claude/*"]
682
+ },
683
+ "metrics": {
684
+ "source": "awesome-list",
685
+ "isOfficial": false,
686
+ "securityScore": 100
687
+ },
688
+ "install": {
689
+ "method": "manual",
690
+ "command": "git clone https://github.com/shareAI-lab/learn-claude-code"
691
+ }
692
+ },
693
+ {
694
+ "id": "skill-learn-faster-kit",
695
+ "name": "learn-faster-kit",
696
+ "type": "workflow",
697
+ "url": "https://github.com/cheukyin175/learn-faster-kit",
698
+ "description": "A creative educational framework for Claude Code, inspired by the \"FASTER\" approach to self-teaching. Ships with a variety of agents, slash commands, and tools that enable Claude Code to help you progress at your own pace, employing well-established pedagogical techniques like active learning and spaced repetition.",
699
+ "author": {
700
+ "name": "Hugo Lau",
701
+ "url": "https://github.com/cheukyin175"
702
+ },
703
+ "category": "Workflows & Knowledge Guides",
704
+ "tags": ["workflows & knowledge guides", "workflow", "mit"],
705
+ "detection": {
706
+ "keywords": ["go", "workflow", "automation", "pipeline"],
707
+ "files": ["CLAUDE.md", ".claude/*"]
708
+ },
709
+ "metrics": {
710
+ "source": "awesome-list",
711
+ "isOfficial": false,
712
+ "securityScore": 100
713
+ },
714
+ "install": {
715
+ "method": "manual",
716
+ "command": "git clone https://github.com/cheukyin175/learn-faster-kit"
717
+ }
718
+ },
719
+ {
720
+ "id": "skill-n8n-agent",
721
+ "name": "n8n_agent",
722
+ "type": "workflow",
723
+ "url": "https://github.com/kingler/n8n_agent/tree/main/.claude/commands",
724
+ "description": "Amazing comprehensive set of comments for code analysis, QA, design, documentation, project structure, project management, optimization, and many more.",
725
+ "author": {
726
+ "name": "kingler",
727
+ "url": "https://github.com/kingler"
728
+ },
729
+ "category": "Workflows & Knowledge Guides",
730
+ "tags": ["workflows & knowledge guides", "workflow", "not_found"],
731
+ "detection": {
732
+ "keywords": ["workflow", "automation", "pipeline"],
733
+ "files": ["CLAUDE.md", ".claude/*"]
734
+ },
735
+ "metrics": {
736
+ "source": "awesome-list",
737
+ "isOfficial": false,
738
+ "securityScore": 100
739
+ },
740
+ "install": {
741
+ "method": "manual",
742
+ "command": "git clone https://github.com/kingler/n8n_agent/tree/main/.claude/commands"
743
+ }
744
+ },
745
+ {
746
+ "id": "skill-project-bootstrapping-and-task-management",
747
+ "name": "Project Bootstrapping and Task Management",
748
+ "type": "workflow",
749
+ "url": "https://github.com/steadycursor/steadystart/tree/main/.claude/commands",
750
+ "description": "Provides a structured set of commands for bootstrapping and managing a new project, including meta-commands for creating and editing custom slash-commands.",
751
+ "author": {
752
+ "name": "steadycursor",
753
+ "url": "https://github.com/steadycursor"
754
+ },
755
+ "category": "Workflows & Knowledge Guides",
756
+ "tags": ["workflows & knowledge guides", "workflow", "not_found"],
757
+ "detection": {
758
+ "keywords": ["workflow", "automation", "pipeline"],
759
+ "files": ["CLAUDE.md", ".claude/*"]
760
+ },
761
+ "metrics": {
762
+ "source": "awesome-list",
763
+ "isOfficial": false,
764
+ "securityScore": 100
765
+ },
766
+ "install": {
767
+ "method": "manual",
768
+ "command": "git clone https://github.com/steadycursor/steadystart/tree/main/.claude/commands"
769
+ }
770
+ },
771
+ {
772
+ "id": "skill-project-management-implementation-planning-and-release",
773
+ "name": "Project Management, Implementation, Planning, and Release",
774
+ "type": "workflow",
775
+ "url": "https://github.com/scopecraft/command/tree/main/.claude/commands",
776
+ "description": "Really comprehensive set of commands for all aspects of SDLC.",
777
+ "author": {
778
+ "name": "scopecraft",
779
+ "url": "https://github.com/scopecraft"
780
+ },
781
+ "category": "Workflows & Knowledge Guides",
782
+ "tags": ["workflows & knowledge guides", "workflow", "not_found"],
783
+ "detection": {
784
+ "keywords": ["workflow", "automation", "pipeline"],
785
+ "files": ["CLAUDE.md", ".claude/*"]
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/scopecraft/command/tree/main/.claude/commands"
795
+ }
796
+ },
797
+ {
798
+ "id": "skill-project-workflow-system",
799
+ "name": "Project Workflow System",
800
+ "type": "workflow",
801
+ "url": "https://github.com/harperreed/dotfiles/tree/master/.claude/commands",
802
+ "description": "A set of commands that provide a comprehensive workflow system for managing projects, including task management, code review, and deployment processes.",
803
+ "author": {
804
+ "name": "harperreed",
805
+ "url": "https://github.com/harperreed"
806
+ },
807
+ "category": "Workflows & Knowledge Guides",
808
+ "tags": ["workflows & knowledge guides", "workflow", "not_found"],
809
+ "detection": {
810
+ "keywords": ["workflow", "automation", "pipeline"],
811
+ "files": ["CLAUDE.md", ".claude/*"]
812
+ },
813
+ "metrics": {
814
+ "source": "awesome-list",
815
+ "isOfficial": false,
816
+ "securityScore": 100
817
+ },
818
+ "install": {
819
+ "method": "manual",
820
+ "command": "git clone https://github.com/harperreed/dotfiles/tree/master/.claude/commands"
821
+ }
822
+ },
823
+ {
824
+ "id": "skill-riper-workflow",
825
+ "name": "RIPER Workflow",
826
+ "type": "workflow",
827
+ "url": "https://github.com/tony/claude-code-riper-5",
828
+ "description": "Structured development workflow enforcing separation between Research, Innovate, Plan, Execute, and Review phases. Features consolidated subagents for context-efficiency, branch-aware memory bank, and strict mode enforcement for guided development.",
829
+ "author": {
830
+ "name": "Tony Narlock",
831
+ "url": "https://tony.sh"
832
+ },
833
+ "category": "Workflows & Knowledge Guides",
834
+ "tags": ["workflows & knowledge guides", "workflow", "mit"],
835
+ "detection": {
836
+ "keywords": ["ci", "workflow", "automation", "pipeline"],
837
+ "files": ["CLAUDE.md", ".claude/*"]
838
+ },
839
+ "metrics": {
840
+ "source": "awesome-list",
841
+ "isOfficial": false,
842
+ "securityScore": 100
843
+ },
844
+ "install": {
845
+ "method": "manual",
846
+ "command": "git clone https://github.com/tony/claude-code-riper-5"
847
+ }
848
+ },
849
+ {
850
+ "id": "skill-shipping-real-code-w-claude",
851
+ "name": "Shipping Real Code w/ Claude",
852
+ "type": "workflow",
853
+ "url": "https://diwank.space/field-notes-from-shipping-real-code-with-claude",
854
+ "description": "A detailed blog post explaining the author's process for shipping a product with Claude Code, including CLAUDE.md files and other interesting resources.",
855
+ "author": {
856
+ "name": "Diwank",
857
+ "url": "https://github.com/creatorrr"
858
+ },
859
+ "category": "Workflows & Knowledge Guides",
860
+ "tags": ["workflows & knowledge guides", "workflow", "not_found"],
861
+ "detection": {
862
+ "keywords": ["rest", "auth", "ai", "workflow", "automation", "pipeline"],
863
+ "files": ["CLAUDE.md", ".claude/*"]
864
+ },
865
+ "metrics": {
866
+ "source": "awesome-list",
867
+ "isOfficial": false
868
+ },
869
+ "install": {
870
+ "method": "manual"
871
+ }
872
+ },
873
+ {
874
+ "id": "skill-simone",
875
+ "name": "Simone",
876
+ "type": "workflow",
877
+ "url": "https://github.com/Helmi/claude-simone",
878
+ "description": "A broader project management workflow for Claude Code that encompasses not just a set of commands, but a system of documents, guidelines, and processes to facilitate project planning and execution.",
879
+ "author": {
880
+ "name": "Helmi",
881
+ "url": "https://github.com/Helmi"
882
+ },
883
+ "category": "Workflows & Knowledge Guides",
884
+ "tags": ["workflows & knowledge guides", "workflow", "mit"],
885
+ "detection": {
886
+ "keywords": ["ci", "workflow", "automation", "pipeline"],
887
+ "files": ["CLAUDE.md", ".claude/*"]
888
+ },
889
+ "metrics": {
890
+ "source": "awesome-list",
891
+ "isOfficial": false,
892
+ "securityScore": 100
893
+ },
894
+ "install": {
895
+ "method": "manual",
896
+ "command": "git clone https://github.com/Helmi/claude-simone"
897
+ }
898
+ },
899
+ {
900
+ "id": "skill-slash-commands-megalist",
901
+ "name": "Slash-commands megalist",
902
+ "type": "workflow",
903
+ "url": "https://github.com/wcygan/dotfiles/tree/d8ab6b9f5a7a81007b7f5fa3025d4f83ce12cc02/claude/commands",
904
+ "description": "A pretty stunning list (88 at the time of this post!) of slash-commands ranging from agent orchestration, code review, project management, security, documentation, self-assessment, almost anything you can dream of.",
905
+ "author": {
906
+ "name": "wcygan",
907
+ "url": "https://github.com/wcygan"
908
+ },
909
+ "category": "Workflows & Knowledge Guides",
910
+ "tags": ["workflows & knowledge guides", "workflow", "not_found"],
911
+ "detection": {
912
+ "keywords": ["security", "workflow", "automation", "pipeline"],
913
+ "files": ["CLAUDE.md", ".claude/*"]
914
+ },
915
+ "metrics": {
916
+ "source": "awesome-list",
917
+ "isOfficial": false,
918
+ "securityScore": 100
919
+ },
920
+ "install": {
921
+ "method": "manual",
922
+ "command": "git clone https://github.com/wcygan/dotfiles/tree/d8ab6b9f5a7a81007b7f5fa3025d4f83ce12cc02/claude/commands"
923
+ }
924
+ },
925
+ {
926
+ "id": "skill-ralph-for-claude-code",
927
+ "name": "Ralph for Claude Code",
928
+ "type": "workflow",
929
+ "url": "https://github.com/frankbria/ralph-claude-code",
930
+ "description": "An autonomous AI development framework that enables Claude Code to work iteratively on projects until completion. Features intelligent exit detection, rate limiting, circuit breaker patterns, and comprehensive safety guardrails to prevent infinite loops and API overuse. Built with Bash, integrated with tmux for live monitoring, and includes 75+ comprehensive tests.",
931
+ "author": {
932
+ "name": "Frank Bria",
933
+ "url": "https://github.com/frankbria"
934
+ },
935
+ "category": "Workflows & Knowledge Guides",
936
+ "tags": ["workflows & knowledge guides", "workflow", "mit"],
937
+ "detection": {
938
+ "keywords": ["api", "test", "ci", "ai", "workflow", "automation", "pipeline"],
939
+ "files": ["CLAUDE.md", ".claude/*"]
940
+ },
941
+ "metrics": {
942
+ "source": "awesome-list",
943
+ "isOfficial": false,
944
+ "securityScore": 100
945
+ },
946
+ "install": {
947
+ "method": "manual",
948
+ "command": "git clone https://github.com/frankbria/ralph-claude-code"
949
+ }
950
+ },
951
+ {
952
+ "id": "skill-ralph-wiggum-marketer",
953
+ "name": "Ralph Wiggum Marketer",
954
+ "type": "workflow",
955
+ "url": "https://github.com/muratcankoylan/ralph-wiggum-marketer",
956
+ "description": "A Claude Code plugin that provides an autonomous AI copywriter, integrating the Ralph loop with customized knowledge bases for market research agents. The agents do the research, Ralph writes the copy, you stay in bed. Whether or not you practice Ralph-Driven Development (RDD), I think these projects are interesting and creative explorations of general agentic patterns.",
957
+ "author": {
958
+ "name": "Muratcan Koylan",
959
+ "url": "https://github.com/muratcankoylan"
960
+ },
961
+ "category": "Workflows & Knowledge Guides",
962
+ "tags": ["workflows & knowledge guides", "workflow", "not_found"],
963
+ "detection": {
964
+ "keywords": ["rest", "ai", "workflow", "automation", "pipeline"],
965
+ "files": ["CLAUDE.md", ".claude/*"]
966
+ },
967
+ "metrics": {
968
+ "source": "awesome-list",
969
+ "isOfficial": false,
970
+ "securityScore": 100
971
+ },
972
+ "install": {
973
+ "method": "manual",
974
+ "command": "git clone https://github.com/muratcankoylan/ralph-wiggum-marketer"
975
+ }
976
+ },
977
+ {
978
+ "id": "skill-ralph-wiggum-plugin",
979
+ "name": "Ralph Wiggum Plugin",
980
+ "type": "workflow",
981
+ "url": "https://github.com/anthropics/claude-code/tree/4f18698a9ed25517861a75125b526e319bcf8354/plugins/ralph-wiggum",
982
+ "description": "The official Anthropic implementation of the Ralph Wiggum technique for iterative, self-referential AI development loops in Claude Code.",
983
+ "author": {
984
+ "name": "Anthropic PBC",
985
+ "url": "https://github.com/anthropics"
986
+ },
987
+ "category": "Workflows & Knowledge Guides",
988
+ "tags": ["workflows & knowledge guides", "workflow", "©"],
989
+ "detection": {
990
+ "keywords": ["ci", "ai", "workflow", "automation", "pipeline"],
991
+ "files": ["CLAUDE.md", ".claude/*"]
992
+ },
993
+ "metrics": {
994
+ "source": "awesome-list",
995
+ "isOfficial": false,
996
+ "securityScore": 100
997
+ },
998
+ "install": {
999
+ "method": "manual",
1000
+ "command": "git clone https://github.com/anthropics/claude-code/tree/4f18698a9ed25517861a75125b526e319bcf8354/plugins/ralph-wiggum"
1001
+ }
1002
+ },
1003
+ {
1004
+ "id": "skill-ralph-orchestrator",
1005
+ "name": "ralph-orchestrator",
1006
+ "type": "workflow",
1007
+ "url": "https://github.com/mikeyobrien/ralph-orchestrator",
1008
+ "description": "Ralph Orchestrator implements the simple but effective \"Ralph Wiggum\" technique for autonomous task completion, continuously running an AI agent against a prompt file until the task is marked as complete or limits are reached. This implementation provides a robust, well-tested, and feature-complete orchestration system for AI-driven development. Also cited in the Anthropic Ralph plugin documentation.",
1009
+ "author": {
1010
+ "name": "mikeyobrien",
1011
+ "url": "https://github.com/mikeyobrien"
1012
+ },
1013
+ "category": "Workflows & Knowledge Guides",
1014
+ "tags": ["workflows & knowledge guides", "workflow", "mit"],
1015
+ "detection": {
1016
+ "keywords": ["test", "ci", "ai", "workflow", "automation", "pipeline"],
1017
+ "files": ["CLAUDE.md", ".claude/*"]
1018
+ },
1019
+ "metrics": {
1020
+ "source": "awesome-list",
1021
+ "isOfficial": false,
1022
+ "securityScore": 100
1023
+ },
1024
+ "install": {
1025
+ "method": "manual",
1026
+ "command": "git clone https://github.com/mikeyobrien/ralph-orchestrator"
1027
+ }
1028
+ },
1029
+ {
1030
+ "id": "skill-the-ralph-playbook",
1031
+ "name": "The Ralph Playbook",
1032
+ "type": "workflow",
1033
+ "url": "https://github.com/ClaytonFarr/ralph-playbook",
1034
+ "description": "A remarkably detailed and comprehensive guide to the Ralph Wiggum technique, featuring well-written theoretical commentary paired with practical guidelines and advice.",
1035
+ "author": {
1036
+ "name": "Clayton Farr",
1037
+ "url": "https://github.com/ClaytonFarr"
1038
+ },
1039
+ "category": "Workflows & Knowledge Guides",
1040
+ "tags": ["workflows & knowledge guides", "workflow", "not_found"],
1041
+ "detection": {
1042
+ "keywords": ["ai", "workflow", "automation", "pipeline"],
1043
+ "files": ["CLAUDE.md", ".claude/*"]
1044
+ },
1045
+ "metrics": {
1046
+ "source": "awesome-list",
1047
+ "isOfficial": false,
1048
+ "securityScore": 100
1049
+ },
1050
+ "install": {
1051
+ "method": "manual",
1052
+ "command": "git clone https://github.com/ClaytonFarr/ralph-playbook"
1053
+ }
1054
+ },
1055
+ {
1056
+ "id": "skill-britfix",
1057
+ "name": "Britfix",
1058
+ "type": "hook",
1059
+ "url": "https://github.com/Talieisin/britfix",
1060
+ "description": "Claude outputs American spellings by default, which can have an impact on: professional credibility, compliance, documentation, and more. Britfix converts to British English, with a Claude Code hook for automatic conversion as files are written. Context-aware: handles code files intelligently by only converting comments and docstrings, never identifiers or string literals.",
1061
+ "author": {
1062
+ "name": "Talieisin",
1063
+ "url": "https://github.com/Talieisin"
1064
+ },
1065
+ "category": "Hooks",
1066
+ "tags": ["hooks", "hook", "mit"],
1067
+ "detection": {
1068
+ "keywords": ["hook", "git", "pre-commit", "post-commit"],
1069
+ "files": [".claude/hooks/*", ".husky/*"]
1070
+ },
1071
+ "metrics": {
1072
+ "source": "awesome-list",
1073
+ "isOfficial": false,
1074
+ "securityScore": 100
1075
+ },
1076
+ "install": {
1077
+ "method": "manual",
1078
+ "command": "git clone https://github.com/Talieisin/britfix"
1079
+ }
1080
+ },
1081
+ {
1082
+ "id": "skill-cc-notify",
1083
+ "name": "CC Notify",
1084
+ "type": "hook",
1085
+ "url": "https://github.com/dazuiba/CCNotify",
1086
+ "description": "CCNotify provides desktop notifications for Claude Code, alerting you to input needs or task completion, with one-click jumps back to VS Code and task duration display.",
1087
+ "author": {
1088
+ "name": "dazuiba",
1089
+ "url": "https://github.com/dazuiba"
1090
+ },
1091
+ "category": "Hooks",
1092
+ "tags": ["hooks", "hook", "mit"],
1093
+ "detection": {
1094
+ "keywords": ["hook", "git", "pre-commit", "post-commit"],
1095
+ "files": [".claude/hooks/*", ".husky/*"]
1096
+ },
1097
+ "metrics": {
1098
+ "source": "awesome-list",
1099
+ "isOfficial": false,
1100
+ "securityScore": 100
1101
+ },
1102
+ "install": {
1103
+ "method": "manual",
1104
+ "command": "git clone https://github.com/dazuiba/CCNotify"
1105
+ }
1106
+ },
1107
+ {
1108
+ "id": "skill-cchooks",
1109
+ "name": "cchooks",
1110
+ "type": "hook",
1111
+ "url": "https://github.com/GowayLee/cchooks",
1112
+ "description": "A lightweight Python SDK with a clean API and good documentation; simplifies the process of writing hooks and integrating them into your codebase, providing a nice abstraction over the JSON configuration files.",
1113
+ "author": {
1114
+ "name": "GowayLee",
1115
+ "url": "https://github.com/GowayLee"
1116
+ },
1117
+ "category": "Hooks",
1118
+ "tags": ["hooks", "hook", "mit"],
1119
+ "detection": {
1120
+ "keywords": ["python", "go", "api", "hook", "git", "pre-commit", "post-commit"],
1121
+ "files": [".claude/hooks/*", ".husky/*"]
1122
+ },
1123
+ "metrics": {
1124
+ "source": "awesome-list",
1125
+ "isOfficial": false,
1126
+ "securityScore": 100
1127
+ },
1128
+ "install": {
1129
+ "method": "manual",
1130
+ "command": "git clone https://github.com/GowayLee/cchooks"
1131
+ }
1132
+ },
1133
+ {
1134
+ "id": "skill-claude-code-hook-comms-hcom",
1135
+ "name": "Claude Code Hook Comms (HCOM)",
1136
+ "type": "hook",
1137
+ "url": "https://github.com/aannoo/claude-hook-comms",
1138
+ "description": "Lightweight CLI tool for real-time communication between Claude Code sub agents using hooks. Enables multi-agent collaboration with @-mention targeting, live dashboard monitoring, and zero-dependency implementation. [NOTE: At the time of posting, this resource is a little unstable - I'm sharing it anyway, because I think it's incredibly promising and creative. I hope by the time you read this, it is production-ready.]",
1139
+ "author": {
1140
+ "name": "aannoo",
1141
+ "url": "https://github.com/aannoo"
1142
+ },
1143
+ "category": "Hooks",
1144
+ "tags": ["hooks", "hook", "mit"],
1145
+ "detection": {
1146
+ "keywords": ["hook", "git", "pre-commit", "post-commit"],
1147
+ "files": [".claude/hooks/*", ".husky/*"]
1148
+ },
1149
+ "metrics": {
1150
+ "source": "awesome-list",
1151
+ "isOfficial": false,
1152
+ "securityScore": 100
1153
+ },
1154
+ "install": {
1155
+ "method": "manual",
1156
+ "command": "git clone https://github.com/aannoo/claude-hook-comms"
1157
+ }
1158
+ },
1159
+ {
1160
+ "id": "skill-claude-code-hooks-sdk",
1161
+ "name": "claude-code-hooks-sdk",
1162
+ "type": "hook",
1163
+ "url": "https://github.com/beyondcode/claude-hooks-sdk",
1164
+ "description": "A Laravel-inspired PHP SDK for building Claude Code hook responses with a clean, fluent API. This SDK makes it easy to create structured JSON responses for Claude Code hooks using an expressive, chainable interface.",
1165
+ "author": {
1166
+ "name": "beyondcode",
1167
+ "url": "https://github.com/beyondcode"
1168
+ },
1169
+ "category": "Hooks",
1170
+ "tags": ["hooks", "hook", "mit"],
1171
+ "detection": {
1172
+ "keywords": ["api", "ai", "hook", "git", "pre-commit", "post-commit"],
1173
+ "files": [".claude/hooks/*", ".husky/*"]
1174
+ },
1175
+ "metrics": {
1176
+ "source": "awesome-list",
1177
+ "isOfficial": false,
1178
+ "securityScore": 100
1179
+ },
1180
+ "install": {
1181
+ "method": "manual",
1182
+ "command": "git clone https://github.com/beyondcode/claude-hooks-sdk"
1183
+ }
1184
+ },
1185
+ {
1186
+ "id": "skill-claude-hooks",
1187
+ "name": "claude-hooks",
1188
+ "type": "hook",
1189
+ "url": "https://github.com/johnlindquist/claude-hooks",
1190
+ "description": "A TypeScript-based system for configuring and customizing Claude Code hooks with a powerful and flexible interface.",
1191
+ "author": {
1192
+ "name": "John Lindquist",
1193
+ "url": "https://github.com/johnlindquist"
1194
+ },
1195
+ "category": "Hooks",
1196
+ "tags": ["hooks", "hook", "mit"],
1197
+ "detection": {
1198
+ "keywords": ["typescript", "hook", "git", "pre-commit", "post-commit"],
1199
+ "files": [".claude/hooks/*", ".husky/*"]
1200
+ },
1201
+ "metrics": {
1202
+ "source": "awesome-list",
1203
+ "isOfficial": false,
1204
+ "securityScore": 100
1205
+ },
1206
+ "install": {
1207
+ "method": "manual",
1208
+ "command": "git clone https://github.com/johnlindquist/claude-hooks"
1209
+ }
1210
+ },
1211
+ {
1212
+ "id": "skill-claudio",
1213
+ "name": "Claudio",
1214
+ "type": "hook",
1215
+ "url": "https://github.com/ctoth/claudio",
1216
+ "description": "A no-frills little library that adds delightful OS-native sounds to Claude Code via simple hooks. It really sparks joy.",
1217
+ "author": {
1218
+ "name": "Christopher Toth",
1219
+ "url": "https://github.com/ctoth"
1220
+ },
1221
+ "category": "Hooks",
1222
+ "tags": ["hooks", "hook", "not_found"],
1223
+ "detection": {
1224
+ "keywords": ["hook", "git", "pre-commit", "post-commit"],
1225
+ "files": [".claude/hooks/*", ".husky/*"]
1226
+ },
1227
+ "metrics": {
1228
+ "source": "awesome-list",
1229
+ "isOfficial": false,
1230
+ "securityScore": 100
1231
+ },
1232
+ "install": {
1233
+ "method": "manual",
1234
+ "command": "git clone https://github.com/ctoth/claudio"
1235
+ }
1236
+ },
1237
+ {
1238
+ "id": "skill-tdd-guard",
1239
+ "name": "TDD Guard",
1240
+ "type": "hook",
1241
+ "url": "https://github.com/nizos/tdd-guard",
1242
+ "description": "A hooks-driven system that monitors file operations in real-time and blocks changes that violate TDD principles.",
1243
+ "author": {
1244
+ "name": "Nizar Selander",
1245
+ "url": "https://github.com/nizos"
1246
+ },
1247
+ "category": "Hooks",
1248
+ "tags": ["hooks", "hook", "mit"],
1249
+ "detection": {
1250
+ "keywords": ["ci", "hook", "git", "pre-commit", "post-commit"],
1251
+ "files": [".claude/hooks/*", ".husky/*"]
1252
+ },
1253
+ "metrics": {
1254
+ "source": "awesome-list",
1255
+ "isOfficial": false,
1256
+ "securityScore": 100
1257
+ },
1258
+ "install": {
1259
+ "method": "manual",
1260
+ "command": "git clone https://github.com/nizos/tdd-guard"
1261
+ }
1262
+ },
1263
+ {
1264
+ "id": "skill-typescript-quality-hooks",
1265
+ "name": "TypeScript Quality Hooks",
1266
+ "type": "hook",
1267
+ "url": "https://github.com/bartolli/claude-code-typescript-hooks",
1268
+ "description": "Quality check hook for Node.js TypeScript projects with TypeScript compilation. ESLint auto-fixing, and Prettier formatting. Uses SHA256 config caching for < 5ms validation performance during real-time editing.",
1269
+ "author": {
1270
+ "name": "bartolli",
1271
+ "url": "https://github.com/bartolli"
1272
+ },
1273
+ "category": "Hooks",
1274
+ "tags": ["hooks", "hook", "mit"],
1275
+ "detection": {
1276
+ "keywords": ["typescript", "node", "hook", "git", "pre-commit", "post-commit"],
1277
+ "files": [".claude/hooks/*", ".husky/*"]
1278
+ },
1279
+ "metrics": {
1280
+ "source": "awesome-list",
1281
+ "isOfficial": false,
1282
+ "securityScore": 100
1283
+ },
1284
+ "install": {
1285
+ "method": "manual",
1286
+ "command": "git clone https://github.com/bartolli/claude-code-typescript-hooks"
1287
+ }
1288
+ },
1289
+ {
1290
+ "id": "skill-plannotator",
1291
+ "name": "Plannotator",
1292
+ "type": "hook",
1293
+ "url": "https://github.com/backnotprop/plannotator",
1294
+ "description": "Interactive plan review UI that intercepts ExitPlanMode via hooks, letting users visually annotate plans with comments, deletions, and replacements before approving or denying with detailed feedback.",
1295
+ "author": {
1296
+ "name": "backnotprop",
1297
+ "url": "https://github.com/backnotprop"
1298
+ },
1299
+ "category": "Hooks",
1300
+ "tags": ["hooks", "hook", "noassertion"],
1301
+ "detection": {
1302
+ "keywords": ["ai", "hook", "git", "pre-commit", "post-commit"],
1303
+ "files": [".claude/hooks/*", ".husky/*"]
1304
+ },
1305
+ "metrics": {
1306
+ "source": "awesome-list",
1307
+ "isOfficial": false,
1308
+ "securityScore": 100
1309
+ },
1310
+ "install": {
1311
+ "method": "manual",
1312
+ "command": "git clone https://github.com/backnotprop/plannotator"
1313
+ }
1314
+ },
1315
+ {
1316
+ "id": "skill-create-hook",
1317
+ "name": "/create-hook",
1318
+ "type": "command",
1319
+ "url": "https://github.com/omril321/automated-notebooklm/blob/main/.claude/commands/create-hook.md",
1320
+ "description": "Slash command for hook creation - intelligently prompts you through the creation process with smart suggestions based on your project setup (TS, Prettier, ESLint...).",
1321
+ "author": {
1322
+ "name": "Omri Lavi",
1323
+ "url": "https://github.com/omril321"
1324
+ },
1325
+ "category": "Slash-Commands",
1326
+ "tags": ["slash-commands", "command", "apache-2.0"],
1327
+ "detection": {
1328
+ "keywords": ["command", "slash", "cli"],
1329
+ "files": [".claude/commands/*"]
1330
+ },
1331
+ "metrics": {
1332
+ "source": "awesome-list",
1333
+ "isOfficial": false,
1334
+ "securityScore": 100
1335
+ },
1336
+ "install": {
1337
+ "method": "manual",
1338
+ "command": "git clone https://github.com/omril321/automated-notebooklm/blob/main/.claude/commands/create-hook.md"
1339
+ }
1340
+ },
1341
+ {
1342
+ "id": "skill-linux-desktop-slash-commands",
1343
+ "name": "/linux-desktop-slash-commands",
1344
+ "type": "command",
1345
+ "url": "https://github.com/danielrosehill/Claude-Code-Linux-Desktop-Slash-Commands",
1346
+ "description": "A library of slash commands intended specifically to facilitate common and advanced operations on Linux desktop environments (although many would also be useful on Linux servers). Command groups include hardware benchmarking, filesystem organisation, and security posture validation.",
1347
+ "author": {
1348
+ "name": "Daniel Rosehill",
1349
+ "url": "https://github.com/danielrosehill"
1350
+ },
1351
+ "category": "Slash-Commands",
1352
+ "tags": ["slash-commands", "command", "not_found"],
1353
+ "detection": {
1354
+ "keywords": ["ci", "security", "command", "slash", "cli"],
1355
+ "files": [".claude/commands/*"]
1356
+ },
1357
+ "metrics": {
1358
+ "source": "awesome-list",
1359
+ "isOfficial": false,
1360
+ "securityScore": 100
1361
+ },
1362
+ "install": {
1363
+ "method": "manual",
1364
+ "command": "git clone https://github.com/danielrosehill/Claude-Code-Linux-Desktop-Slash-Commands"
1365
+ }
1366
+ },
1367
+ {
1368
+ "id": "skill-analyze-issue",
1369
+ "name": "/analyze-issue",
1370
+ "type": "command",
1371
+ "url": "https://github.com/jerseycheese/Narraitor/blob/feature/issue-227-ai-suggestions/.claude/commands/analyze-issue.md",
1372
+ "description": "Fetches GitHub issue details to create comprehensive implementation specifications, analyzing requirements and planning structured approach with clear implementation steps.",
1373
+ "author": {
1374
+ "name": "jerseycheese",
1375
+ "url": "https://github.com/jerseycheese"
1376
+ },
1377
+ "category": "Slash-Commands",
1378
+ "tags": ["slash-commands", "command", "mit"],
1379
+ "detection": {
1380
+ "keywords": ["git", "github", "ci", "ai", "command", "slash", "cli"],
1381
+ "files": [".claude/commands/*"]
1382
+ },
1383
+ "metrics": {
1384
+ "source": "awesome-list",
1385
+ "isOfficial": false,
1386
+ "securityScore": 100
1387
+ },
1388
+ "install": {
1389
+ "method": "manual",
1390
+ "command": "git clone https://github.com/jerseycheese/Narraitor/blob/feature/issue-227-ai-suggestions/.claude/commands/analyze-issue.md"
1391
+ }
1392
+ },
1393
+ {
1394
+ "id": "skill-bug-fix",
1395
+ "name": "/bug-fix",
1396
+ "type": "command",
1397
+ "url": "https://github.com/danielscholl/mvn-mcp-server/blob/main/.claude/commands/bug-fix.md",
1398
+ "description": "Streamlines bug fixing by creating a GitHub issue first, then a feature branch for implementing and thoroughly testing the solution before merging.",
1399
+ "author": {
1400
+ "name": "danielscholl",
1401
+ "url": "https://github.com/danielscholl"
1402
+ },
1403
+ "category": "Slash-Commands",
1404
+ "tags": ["slash-commands", "command", "not_found"],
1405
+ "detection": {
1406
+ "keywords": ["git", "github", "test", "testing", "ml", "command", "slash", "cli"],
1407
+ "files": [".claude/commands/*"]
1408
+ },
1409
+ "metrics": {
1410
+ "source": "awesome-list",
1411
+ "isOfficial": false,
1412
+ "securityScore": 100
1413
+ },
1414
+ "install": {
1415
+ "method": "manual",
1416
+ "command": "git clone https://github.com/danielscholl/mvn-mcp-server/blob/main/.claude/commands/bug-fix.md"
1417
+ }
1418
+ },
1419
+ {
1420
+ "id": "skill-commit",
1421
+ "name": "/commit",
1422
+ "type": "command",
1423
+ "url": "https://github.com/evmts/tevm-monorepo/blob/main/.claude/commands/commit.md",
1424
+ "description": "Creates git commits using conventional commit format with appropriate emojis, following project standards and creating descriptive messages that explain the purpose of changes.",
1425
+ "author": {
1426
+ "name": "evmts",
1427
+ "url": "https://github.com/evmts"
1428
+ },
1429
+ "category": "Slash-Commands",
1430
+ "tags": ["slash-commands", "command", "mit"],
1431
+ "detection": {
1432
+ "keywords": ["git", "ai", "command", "slash", "cli"],
1433
+ "files": [".claude/commands/*"]
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/evmts/tevm-monorepo/blob/main/.claude/commands/commit.md"
1443
+ }
1444
+ },
1445
+ {
1446
+ "id": "skill-create-pr",
1447
+ "name": "/create-pr",
1448
+ "type": "command",
1449
+ "url": "https://github.com/toyamarinyon/giselle/blob/main/.claude/commands/create-pr.md",
1450
+ "description": "Streamlines pull request creation by handling the entire workflow: creating a new branch, committing changes, formatting modified files with Biome, and submitting the PR.",
1451
+ "author": {
1452
+ "name": "toyamarinyon",
1453
+ "url": "https://github.com/toyamarinyon"
1454
+ },
1455
+ "category": "Slash-Commands",
1456
+ "tags": ["slash-commands", "command", "apache-2.0"],
1457
+ "detection": {
1458
+ "keywords": ["ml", "command", "slash", "cli"],
1459
+ "files": [".claude/commands/*"]
1460
+ },
1461
+ "metrics": {
1462
+ "source": "awesome-list",
1463
+ "isOfficial": false,
1464
+ "securityScore": 100
1465
+ },
1466
+ "install": {
1467
+ "method": "manual",
1468
+ "command": "git clone https://github.com/toyamarinyon/giselle/blob/main/.claude/commands/create-pr.md"
1469
+ }
1470
+ },
1471
+ {
1472
+ "id": "skill-create-pull-request",
1473
+ "name": "/create-pull-request",
1474
+ "type": "command",
1475
+ "url": "https://github.com/liam-hq/liam/blob/main/.claude/commands/create-pull-request.md",
1476
+ "description": "Provides comprehensive PR creation guidance with GitHub CLI, enforcing title conventions, following template structure, and offering concrete command examples with best practices.",
1477
+ "author": {
1478
+ "name": "liam-hq",
1479
+ "url": "https://github.com/liam-hq"
1480
+ },
1481
+ "category": "Slash-Commands",
1482
+ "tags": ["slash-commands", "command", "apache-2.0"],
1483
+ "detection": {
1484
+ "keywords": ["git", "github", "ci", "command", "slash", "cli"],
1485
+ "files": [".claude/commands/*"]
1486
+ },
1487
+ "metrics": {
1488
+ "source": "awesome-list",
1489
+ "isOfficial": false,
1490
+ "securityScore": 100
1491
+ },
1492
+ "install": {
1493
+ "method": "manual",
1494
+ "command": "git clone https://github.com/liam-hq/liam/blob/main/.claude/commands/create-pull-request.md"
1495
+ }
1496
+ },
1497
+ {
1498
+ "id": "skill-fix-github-issue",
1499
+ "name": "/fix-github-issue",
1500
+ "type": "command",
1501
+ "url": "https://github.com/jeremymailen/kotlinter-gradle/blob/master/.claude/commands/fix-github-issue.md",
1502
+ "description": "Analyzes and fixes GitHub issues using a structured approach with GitHub CLI for issue details, implementing necessary code changes, running tests, and creating proper commit messages.",
1503
+ "author": {
1504
+ "name": "jeremymailen",
1505
+ "url": "https://github.com/jeremymailen"
1506
+ },
1507
+ "category": "Slash-Commands",
1508
+ "tags": ["slash-commands", "command", "apache-2.0"],
1509
+ "detection": {
1510
+ "keywords": ["git", "github", "test", "ai", "command", "slash", "cli"],
1511
+ "files": [".claude/commands/*"]
1512
+ },
1513
+ "metrics": {
1514
+ "source": "awesome-list",
1515
+ "isOfficial": false,
1516
+ "securityScore": 100
1517
+ },
1518
+ "install": {
1519
+ "method": "manual",
1520
+ "command": "git clone https://github.com/jeremymailen/kotlinter-gradle/blob/master/.claude/commands/fix-github-issue.md"
1521
+ }
1522
+ },
1523
+ {
1524
+ "id": "skill-fix-issue",
1525
+ "name": "/fix-issue",
1526
+ "type": "command",
1527
+ "url": "https://github.com/metabase/metabase/blob/master/.claude/commands/fix-issue.md",
1528
+ "description": "Addresses GitHub issues by taking issue number as parameter, analyzing context, implementing solution, and testing/validating the fix for proper integration.",
1529
+ "author": {
1530
+ "name": "metabase",
1531
+ "url": "https://github.com/metabase"
1532
+ },
1533
+ "category": "Slash-Commands",
1534
+ "tags": ["slash-commands", "command", "noassertion"],
1535
+ "detection": {
1536
+ "keywords": ["git", "github", "test", "testing", "command", "slash", "cli"],
1537
+ "files": [".claude/commands/*"]
1538
+ },
1539
+ "metrics": {
1540
+ "source": "awesome-list",
1541
+ "isOfficial": false,
1542
+ "securityScore": 100
1543
+ },
1544
+ "install": {
1545
+ "method": "manual",
1546
+ "command": "git clone https://github.com/metabase/metabase/blob/master/.claude/commands/fix-issue.md"
1547
+ }
1548
+ },
1549
+ {
1550
+ "id": "skill-fix-pr",
1551
+ "name": "/fix-pr",
1552
+ "type": "command",
1553
+ "url": "https://github.com/metabase/metabase/blob/master/.claude/commands/fix-pr.md",
1554
+ "description": "Fetches and fixes unresolved PR comments by automatically retrieving feedback, addressing reviewer concerns, making targeted code improvements, and streamlining the review process.",
1555
+ "author": {
1556
+ "name": "metabase",
1557
+ "url": "https://github.com/metabase"
1558
+ },
1559
+ "category": "Slash-Commands",
1560
+ "tags": ["slash-commands", "command", "noassertion"],
1561
+ "detection": {
1562
+ "keywords": ["ml", "command", "slash", "cli"],
1563
+ "files": [".claude/commands/*"]
1564
+ },
1565
+ "metrics": {
1566
+ "source": "awesome-list",
1567
+ "isOfficial": false,
1568
+ "securityScore": 100
1569
+ },
1570
+ "install": {
1571
+ "method": "manual",
1572
+ "command": "git clone https://github.com/metabase/metabase/blob/master/.claude/commands/fix-pr.md"
1573
+ }
1574
+ },
1575
+ {
1576
+ "id": "skill-pr-review",
1577
+ "name": "/pr-review",
1578
+ "type": "command",
1579
+ "url": "https://github.com/hesreallyhim/awesome-claude-code/blob/923ddf1c3dba0413ecae1c6c2921a1607dc5911d/resources/slash-commands/pr-review/pr-review.md",
1580
+ "description": "Reviews pull request changes to provide feedback, check for issues, and suggest improvements before merging into the main codebase.",
1581
+ "author": {
1582
+ "name": "arkavo-org",
1583
+ "url": "https://github.com/arkavo-org"
1584
+ },
1585
+ "category": "Slash-Commands",
1586
+ "tags": ["slash-commands", "command", "mit"],
1587
+ "detection": {
1588
+ "keywords": ["ai", "command", "slash", "cli"],
1589
+ "files": [".claude/commands/*"]
1590
+ },
1591
+ "metrics": {
1592
+ "source": "awesome-list",
1593
+ "isOfficial": false,
1594
+ "securityScore": 100
1595
+ },
1596
+ "install": {
1597
+ "method": "manual",
1598
+ "command": "git clone https://github.com/hesreallyhim/awesome-claude-code/blob/923ddf1c3dba0413ecae1c6c2921a1607dc5911d/resources/slash-commands/pr-review/pr-review.md"
1599
+ }
1600
+ },
1601
+ {
1602
+ "id": "skill-update-branch-name",
1603
+ "name": "/update-branch-name",
1604
+ "type": "command",
1605
+ "url": "https://github.com/giselles-ai/giselle/blob/main/.claude/commands/update-branch-name.md",
1606
+ "description": "Updates branch names with proper prefixes and formats, enforcing naming conventions, supporting semantic prefixes, and managing remote branch updates.",
1607
+ "author": {
1608
+ "name": "giselles-ai",
1609
+ "url": "https://github.com/giselles-ai"
1610
+ },
1611
+ "category": "Slash-Commands",
1612
+ "tags": ["slash-commands", "command", "apache-2.0"],
1613
+ "detection": {
1614
+ "keywords": ["ci", "command", "slash", "cli"],
1615
+ "files": [".claude/commands/*"]
1616
+ },
1617
+ "metrics": {
1618
+ "source": "awesome-list",
1619
+ "isOfficial": false,
1620
+ "securityScore": 100
1621
+ },
1622
+ "install": {
1623
+ "method": "manual",
1624
+ "command": "git clone https://github.com/giselles-ai/giselle/blob/main/.claude/commands/update-branch-name.md"
1625
+ }
1626
+ },
1627
+ {
1628
+ "id": "skill-analyze-code",
1629
+ "name": "/analyze-code",
1630
+ "type": "command",
1631
+ "url": "https://github.com/Hkgstax/VALUGATOR/blob/main/.claude/commands/analyze-code.md",
1632
+ "description": "Reviews code structure and identifies key components, mapping relationships between elements and suggesting targeted improvements for better architecture and performance.",
1633
+ "author": {
1634
+ "name": "Hkgstax",
1635
+ "url": "https://github.com/Hkgstax"
1636
+ },
1637
+ "category": "Slash-Commands",
1638
+ "tags": ["slash-commands", "command", "not_found"],
1639
+ "detection": {
1640
+ "keywords": ["command", "slash", "cli"],
1641
+ "files": [".claude/commands/*"]
1642
+ },
1643
+ "metrics": {
1644
+ "source": "awesome-list",
1645
+ "isOfficial": false,
1646
+ "securityScore": 100
1647
+ },
1648
+ "install": {
1649
+ "method": "manual",
1650
+ "command": "git clone https://github.com/Hkgstax/VALUGATOR/blob/main/.claude/commands/analyze-code.md"
1651
+ }
1652
+ },
1653
+ {
1654
+ "id": "skill-check",
1655
+ "name": "/check",
1656
+ "type": "command",
1657
+ "url": "https://github.com/rygwdn/slack-tools/blob/main/.claude/commands/check.md",
1658
+ "description": "Performs comprehensive code quality and security checks, featuring static analysis integration, security vulnerability scanning, code style enforcement, and detailed reporting.",
1659
+ "author": {
1660
+ "name": "rygwdn",
1661
+ "url": "https://github.com/rygwdn"
1662
+ },
1663
+ "category": "Slash-Commands",
1664
+ "tags": ["slash-commands", "command", "not_found"],
1665
+ "detection": {
1666
+ "keywords": ["security", "ai", "command", "slash", "cli"],
1667
+ "files": [".claude/commands/*"]
1668
+ },
1669
+ "metrics": {
1670
+ "source": "awesome-list",
1671
+ "isOfficial": false,
1672
+ "securityScore": 100
1673
+ },
1674
+ "install": {
1675
+ "method": "manual",
1676
+ "command": "git clone https://github.com/rygwdn/slack-tools/blob/main/.claude/commands/check.md"
1677
+ }
1678
+ },
1679
+ {
1680
+ "id": "skill-clean",
1681
+ "name": "/clean",
1682
+ "type": "command",
1683
+ "url": "https://github.com/Graphlet-AI/eridu/blob/main/.claude/commands/clean.md",
1684
+ "description": "Addresses code formatting and quality issues by fixing black formatting problems, organizing imports with isort, resolving flake8 linting issues, and correcting mypy type errors.",
1685
+ "author": {
1686
+ "name": "Graphlet-AI",
1687
+ "url": "https://github.com/Graphlet-AI"
1688
+ },
1689
+ "category": "Slash-Commands",
1690
+ "tags": ["slash-commands", "command", "apache-2.0"],
1691
+ "detection": {
1692
+ "keywords": ["command", "slash", "cli"],
1693
+ "files": [".claude/commands/*"]
1694
+ },
1695
+ "metrics": {
1696
+ "source": "awesome-list",
1697
+ "isOfficial": false,
1698
+ "securityScore": 100
1699
+ },
1700
+ "install": {
1701
+ "method": "manual",
1702
+ "command": "git clone https://github.com/Graphlet-AI/eridu/blob/main/.claude/commands/clean.md"
1703
+ }
1704
+ },
1705
+ {
1706
+ "id": "skill-implement-issue",
1707
+ "name": "/implement-issue",
1708
+ "type": "command",
1709
+ "url": "https://github.com/cmxela/thinkube/blob/main/.claude/commands/implement-issue.md",
1710
+ "description": "Implements GitHub issues following strict project guidelines, complete implementation checklists, variable naming conventions, testing procedures, and documentation requirements.",
1711
+ "author": {
1712
+ "name": "cmxela",
1713
+ "url": "https://github.com/cmxela"
1714
+ },
1715
+ "category": "Slash-Commands",
1716
+ "tags": ["slash-commands", "command", "not_found"],
1717
+ "detection": {
1718
+ "keywords": ["git", "github", "test", "testing", "command", "slash", "cli"],
1719
+ "files": [".claude/commands/*"]
1720
+ },
1721
+ "metrics": {
1722
+ "source": "awesome-list",
1723
+ "isOfficial": false,
1724
+ "securityScore": 100
1725
+ },
1726
+ "install": {
1727
+ "method": "manual",
1728
+ "command": "git clone https://github.com/cmxela/thinkube/blob/main/.claude/commands/implement-issue.md"
1729
+ }
1730
+ },
1731
+ {
1732
+ "id": "skill-optimize",
1733
+ "name": "/optimize",
1734
+ "type": "command",
1735
+ "url": "https://github.com/to4iki/ai-project-rules/blob/main/.claude/commands/optimize.md",
1736
+ "description": "Analyzes code performance to identify bottlenecks, proposing concrete optimizations with implementation guidance for improved application performance.",
1737
+ "author": {
1738
+ "name": "to4iki",
1739
+ "url": "https://github.com/to4iki"
1740
+ },
1741
+ "category": "Slash-Commands",
1742
+ "tags": ["slash-commands", "command", "mit"],
1743
+ "detection": {
1744
+ "keywords": ["command", "slash", "cli"],
1745
+ "files": [".claude/commands/*"]
1746
+ },
1747
+ "metrics": {
1748
+ "source": "awesome-list",
1749
+ "isOfficial": false,
1750
+ "securityScore": 100
1751
+ },
1752
+ "install": {
1753
+ "method": "manual",
1754
+ "command": "git clone https://github.com/to4iki/ai-project-rules/blob/main/.claude/commands/optimize.md"
1755
+ }
1756
+ },
1757
+ {
1758
+ "id": "skill-repro-issue",
1759
+ "name": "/repro-issue",
1760
+ "type": "command",
1761
+ "url": "https://github.com/rzykov/metabase/blob/master/.claude/commands/repro-issue.md",
1762
+ "description": "Creates reproducible test cases for GitHub issues, ensuring tests fail reliably and documenting clear reproduction steps for developers.",
1763
+ "author": {
1764
+ "name": "rzykov",
1765
+ "url": "https://github.com/rzykov"
1766
+ },
1767
+ "category": "Slash-Commands",
1768
+ "tags": ["slash-commands", "command", "noassertion"],
1769
+ "detection": {
1770
+ "keywords": ["git", "github", "test", "ci", "ai", "command", "slash", "cli"],
1771
+ "files": [".claude/commands/*"]
1772
+ },
1773
+ "metrics": {
1774
+ "source": "awesome-list",
1775
+ "isOfficial": false,
1776
+ "securityScore": 100
1777
+ },
1778
+ "install": {
1779
+ "method": "manual",
1780
+ "command": "git clone https://github.com/rzykov/metabase/blob/master/.claude/commands/repro-issue.md"
1781
+ }
1782
+ },
1783
+ {
1784
+ "id": "skill-tdd",
1785
+ "name": "/tdd",
1786
+ "type": "command",
1787
+ "url": "https://github.com/zscott/pane/blob/main/.claude/commands/tdd.md",
1788
+ "description": "Guides development using Test-Driven Development principles, enforcing Red-Green-Refactor discipline, integrating with git workflow, and managing PR creation.",
1789
+ "author": {
1790
+ "name": "zscott",
1791
+ "url": "https://github.com/zscott"
1792
+ },
1793
+ "category": "Slash-Commands",
1794
+ "tags": ["slash-commands", "command", "not_found"],
1795
+ "detection": {
1796
+ "keywords": ["git", "test", "ci", "command", "slash", "cli"],
1797
+ "files": [".claude/commands/*"]
1798
+ },
1799
+ "metrics": {
1800
+ "source": "awesome-list",
1801
+ "isOfficial": false,
1802
+ "securityScore": 100
1803
+ },
1804
+ "install": {
1805
+ "method": "manual",
1806
+ "command": "git clone https://github.com/zscott/pane/blob/main/.claude/commands/tdd.md"
1807
+ }
1808
+ },
1809
+ {
1810
+ "id": "skill-tdd-implement",
1811
+ "name": "/tdd-implement",
1812
+ "type": "command",
1813
+ "url": "https://github.com/jerseycheese/Narraitor/blob/feature/issue-227-ai-suggestions/.claude/commands/tdd-implement.md",
1814
+ "description": "Implements Test-Driven Development by analyzing feature requirements, creating tests first (red), implementing minimal passing code (green), and refactoring while maintaining tests.",
1815
+ "author": {
1816
+ "name": "jerseycheese",
1817
+ "url": "https://github.com/jerseycheese"
1818
+ },
1819
+ "category": "Slash-Commands",
1820
+ "tags": ["slash-commands", "command", "mit"],
1821
+ "detection": {
1822
+ "keywords": ["test", "ai", "command", "slash", "cli"],
1823
+ "files": [".claude/commands/*"]
1824
+ },
1825
+ "metrics": {
1826
+ "source": "awesome-list",
1827
+ "isOfficial": false,
1828
+ "securityScore": 100
1829
+ },
1830
+ "install": {
1831
+ "method": "manual",
1832
+ "command": "git clone https://github.com/jerseycheese/Narraitor/blob/feature/issue-227-ai-suggestions/.claude/commands/tdd-implement.md"
1833
+ }
1834
+ },
1835
+ {
1836
+ "id": "skill-testing-plan-integration",
1837
+ "name": "/testing_plan_integration",
1838
+ "type": "command",
1839
+ "url": "https://github.com/buster-so/buster/blob/main/api/.claude/commands/testing_plan_integration.md",
1840
+ "description": "Creates inline Rust-style tests, suggests refactoring for testability, analyzes code challenges, and creates comprehensive test coverage for robust code.",
1841
+ "author": {
1842
+ "name": "buster-so",
1843
+ "url": "https://github.com/buster-so"
1844
+ },
1845
+ "category": "Slash-Commands",
1846
+ "tags": ["slash-commands", "command", "noassertion"],
1847
+ "detection": {
1848
+ "keywords": ["rust", "test", "testing", "command", "slash", "cli"],
1849
+ "files": [".claude/commands/*"]
1850
+ },
1851
+ "metrics": {
1852
+ "source": "awesome-list",
1853
+ "isOfficial": false,
1854
+ "securityScore": 100
1855
+ },
1856
+ "install": {
1857
+ "method": "manual",
1858
+ "command": "git clone https://github.com/buster-so/buster/blob/main/api/.claude/commands/testing_plan_integration.md"
1859
+ }
1860
+ },
1861
+ {
1862
+ "id": "skill-context-prime",
1863
+ "name": "/context-prime",
1864
+ "type": "command",
1865
+ "url": "https://github.com/elizaOS/elizaos.github.io/blob/main/.claude/commands/context-prime.md",
1866
+ "description": "Primes Claude with comprehensive project understanding by loading repository structure, setting development context, establishing project goals, and defining collaboration parameters.",
1867
+ "author": {
1868
+ "name": "elizaOS",
1869
+ "url": "https://github.com/elizaOS"
1870
+ },
1871
+ "category": "Slash-Commands",
1872
+ "tags": ["slash-commands", "command", "mit"],
1873
+ "detection": {
1874
+ "keywords": ["go", "command", "slash", "cli"],
1875
+ "files": [".claude/commands/*"]
1876
+ },
1877
+ "metrics": {
1878
+ "source": "awesome-list",
1879
+ "isOfficial": false,
1880
+ "securityScore": 100
1881
+ },
1882
+ "install": {
1883
+ "method": "manual",
1884
+ "command": "git clone https://github.com/elizaOS/elizaos.github.io/blob/main/.claude/commands/context-prime.md"
1885
+ }
1886
+ },
1887
+ {
1888
+ "id": "skill-initref",
1889
+ "name": "/initref",
1890
+ "type": "command",
1891
+ "url": "https://github.com/okuvshynov/cubestat/blob/main/.claude/commands/initref.md",
1892
+ "description": "Initializes reference documentation structure with standard doc templates, API reference setup, documentation conventions, and placeholder content generation.",
1893
+ "author": {
1894
+ "name": "okuvshynov",
1895
+ "url": "https://github.com/okuvshynov"
1896
+ },
1897
+ "category": "Slash-Commands",
1898
+ "tags": ["slash-commands", "command", "mit"],
1899
+ "detection": {
1900
+ "keywords": ["api", "command", "slash", "cli"],
1901
+ "files": [".claude/commands/*"]
1902
+ },
1903
+ "metrics": {
1904
+ "source": "awesome-list",
1905
+ "isOfficial": false,
1906
+ "securityScore": 100
1907
+ },
1908
+ "install": {
1909
+ "method": "manual",
1910
+ "command": "git clone https://github.com/okuvshynov/cubestat/blob/main/.claude/commands/initref.md"
1911
+ }
1912
+ },
1913
+ {
1914
+ "id": "skill-load-llms-txt",
1915
+ "name": "/load-llms-txt",
1916
+ "type": "command",
1917
+ "url": "https://github.com/ethpandaops/xatu-data/blob/master/.claude/commands/load-llms-txt.md",
1918
+ "description": "Loads LLM configuration files to context, importing specific terminology, model configurations, and establishing baseline terminology for AI discussions.",
1919
+ "author": {
1920
+ "name": "ethpandaops",
1921
+ "url": "https://github.com/ethpandaops"
1922
+ },
1923
+ "category": "Slash-Commands",
1924
+ "tags": ["slash-commands", "command", "mit"],
1925
+ "detection": {
1926
+ "keywords": ["ci", "ai", "llm", "command", "slash", "cli"],
1927
+ "files": [".claude/commands/*"]
1928
+ },
1929
+ "metrics": {
1930
+ "source": "awesome-list",
1931
+ "isOfficial": false,
1932
+ "securityScore": 100
1933
+ },
1934
+ "install": {
1935
+ "method": "manual",
1936
+ "command": "git clone https://github.com/ethpandaops/xatu-data/blob/master/.claude/commands/load-llms-txt.md"
1937
+ }
1938
+ },
1939
+ {
1940
+ "id": "skill-load-coo-context",
1941
+ "name": "/load_coo_context",
1942
+ "type": "command",
1943
+ "url": "https://github.com/Mjvolk3/torchcell/blob/main/.claude/commands/load_coo_context.md",
1944
+ "description": "References specific files for sparse matrix operations, explains transform usage, compares with previous approaches, and sets data formatting context for development.",
1945
+ "author": {
1946
+ "name": "Mjvolk3",
1947
+ "url": "https://github.com/Mjvolk3"
1948
+ },
1949
+ "category": "Slash-Commands",
1950
+ "tags": ["slash-commands", "command", "not_found"],
1951
+ "detection": {
1952
+ "keywords": ["ci", "ai", "command", "slash", "cli"],
1953
+ "files": [".claude/commands/*"]
1954
+ },
1955
+ "metrics": {
1956
+ "source": "awesome-list",
1957
+ "isOfficial": false,
1958
+ "securityScore": 100
1959
+ },
1960
+ "install": {
1961
+ "method": "manual",
1962
+ "command": "git clone https://github.com/Mjvolk3/torchcell/blob/main/.claude/commands/load_coo_context.md"
1963
+ }
1964
+ },
1965
+ {
1966
+ "id": "skill-prime",
1967
+ "name": "/prime",
1968
+ "type": "command",
1969
+ "url": "https://github.com/yzyydev/AI-Engineering-Structure/blob/main/.claude/commands/prime.md",
1970
+ "description": "Sets up initial project context by viewing directory structure and reading key files, creating standardized context with directory visualization and key documentation focus.",
1971
+ "author": {
1972
+ "name": "yzyydev",
1973
+ "url": "https://github.com/yzyydev"
1974
+ },
1975
+ "category": "Slash-Commands",
1976
+ "tags": ["slash-commands", "command", "not_found"],
1977
+ "detection": {
1978
+ "keywords": ["command", "slash", "cli"],
1979
+ "files": [".claude/commands/*"]
1980
+ },
1981
+ "metrics": {
1982
+ "source": "awesome-list",
1983
+ "isOfficial": false,
1984
+ "securityScore": 100
1985
+ },
1986
+ "install": {
1987
+ "method": "manual",
1988
+ "command": "git clone https://github.com/yzyydev/AI-Engineering-Structure/blob/main/.claude/commands/prime.md"
1989
+ }
1990
+ },
1991
+ {
1992
+ "id": "skill-rsi",
1993
+ "name": "/rsi",
1994
+ "type": "command",
1995
+ "url": "https://github.com/ddisisto/si/blob/main/.claude/commands/rsi.md",
1996
+ "description": "Reads all commands and key project files to optimize AI-assisted development by streamlining the process, loading command context, and setting up for better development workflow.",
1997
+ "author": {
1998
+ "name": "ddisisto",
1999
+ "url": "https://github.com/ddisisto"
2000
+ },
2001
+ "category": "Slash-Commands",
2002
+ "tags": ["slash-commands", "command", "not_found"],
2003
+ "detection": {
2004
+ "keywords": ["ai", "ml", "command", "slash", "cli"],
2005
+ "files": [".claude/commands/*"]
2006
+ },
2007
+ "metrics": {
2008
+ "source": "awesome-list",
2009
+ "isOfficial": false,
2010
+ "securityScore": 100
2011
+ },
2012
+ "install": {
2013
+ "method": "manual",
2014
+ "command": "git clone https://github.com/ddisisto/si/blob/main/.claude/commands/rsi.md"
2015
+ }
2016
+ },
2017
+ {
2018
+ "id": "skill-add-to-changelog",
2019
+ "name": "/add-to-changelog",
2020
+ "type": "command",
2021
+ "url": "https://github.com/berrydev-ai/blockdoc-python/blob/main/.claude/commands/add-to-changelog.md",
2022
+ "description": "Adds new entries to changelog files while maintaining format consistency, properly documenting changes, and following established project standards for version tracking.",
2023
+ "author": {
2024
+ "name": "berrydev-ai",
2025
+ "url": "https://github.com/berrydev-ai"
2026
+ },
2027
+ "category": "Slash-Commands",
2028
+ "tags": ["slash-commands", "command", "mit"],
2029
+ "detection": {
2030
+ "keywords": ["ai", "command", "slash", "cli"],
2031
+ "files": [".claude/commands/*"]
2032
+ },
2033
+ "metrics": {
2034
+ "source": "awesome-list",
2035
+ "isOfficial": false,
2036
+ "securityScore": 100
2037
+ },
2038
+ "install": {
2039
+ "method": "manual",
2040
+ "command": "git clone https://github.com/berrydev-ai/blockdoc-python/blob/main/.claude/commands/add-to-changelog.md"
2041
+ }
2042
+ },
2043
+ {
2044
+ "id": "skill-create-docs",
2045
+ "name": "/create-docs",
2046
+ "type": "command",
2047
+ "url": "https://github.com/jerseycheese/Narraitor/blob/feature/issue-227-ai-suggestions/.claude/commands/create-docs.md",
2048
+ "description": "Analyzes code structure and purpose to create comprehensive documentation detailing inputs/outputs, behavior, user interaction flows, and edge cases with error handling.",
2049
+ "author": {
2050
+ "name": "jerseycheese",
2051
+ "url": "https://github.com/jerseycheese"
2052
+ },
2053
+ "category": "Slash-Commands",
2054
+ "tags": ["slash-commands", "command", "mit"],
2055
+ "detection": {
2056
+ "keywords": ["ai", "command", "slash", "cli"],
2057
+ "files": [".claude/commands/*"]
2058
+ },
2059
+ "metrics": {
2060
+ "source": "awesome-list",
2061
+ "isOfficial": false,
2062
+ "securityScore": 100
2063
+ },
2064
+ "install": {
2065
+ "method": "manual",
2066
+ "command": "git clone https://github.com/jerseycheese/Narraitor/blob/feature/issue-227-ai-suggestions/.claude/commands/create-docs.md"
2067
+ }
2068
+ },
2069
+ {
2070
+ "id": "skill-docs",
2071
+ "name": "/docs",
2072
+ "type": "command",
2073
+ "url": "https://github.com/slunsford/coffee-analytics/blob/main/.claude/commands/docs.md",
2074
+ "description": "Generates comprehensive documentation that follows project structure, documenting APIs and usage patterns with consistent formatting for better user understanding.",
2075
+ "author": {
2076
+ "name": "slunsford",
2077
+ "url": "https://github.com/slunsford"
2078
+ },
2079
+ "category": "Slash-Commands",
2080
+ "tags": ["slash-commands", "command", "not_found"],
2081
+ "detection": {
2082
+ "keywords": ["api", "command", "slash", "cli"],
2083
+ "files": [".claude/commands/*"]
2084
+ },
2085
+ "metrics": {
2086
+ "source": "awesome-list",
2087
+ "isOfficial": false,
2088
+ "securityScore": 100
2089
+ },
2090
+ "install": {
2091
+ "method": "manual",
2092
+ "command": "git clone https://github.com/slunsford/coffee-analytics/blob/main/.claude/commands/docs.md"
2093
+ }
2094
+ },
2095
+ {
2096
+ "id": "skill-explain-issue-fix",
2097
+ "name": "/explain-issue-fix",
2098
+ "type": "command",
2099
+ "url": "https://github.com/hackdays-io/toban-contribution-viewer/blob/main/.claude/commands/explain-issue-fix.md",
2100
+ "description": "Documents solution approaches for GitHub issues, explaining technical decisions, detailing challenges overcome, and providing implementation context for better understanding.",
2101
+ "author": {
2102
+ "name": "hackdays-io",
2103
+ "url": "https://github.com/hackdays-io"
2104
+ },
2105
+ "category": "Slash-Commands",
2106
+ "tags": ["slash-commands", "command", "not_found"],
2107
+ "detection": {
2108
+ "keywords": ["git", "github", "ci", "ai", "command", "slash", "cli"],
2109
+ "files": [".claude/commands/*"]
2110
+ },
2111
+ "metrics": {
2112
+ "source": "awesome-list",
2113
+ "isOfficial": false,
2114
+ "securityScore": 100
2115
+ },
2116
+ "install": {
2117
+ "method": "manual",
2118
+ "command": "git clone https://github.com/hackdays-io/toban-contribution-viewer/blob/main/.claude/commands/explain-issue-fix.md"
2119
+ }
2120
+ },
2121
+ {
2122
+ "id": "skill-update-docs",
2123
+ "name": "/update-docs",
2124
+ "type": "command",
2125
+ "url": "https://github.com/Consiliency/Flutter-Structurizr/blob/main/.claude/commands/update-docs.md",
2126
+ "description": "Reviews current documentation status, updates implementation progress, reviews phase documents, and maintains documentation consistency across the project.",
2127
+ "author": {
2128
+ "name": "Consiliency",
2129
+ "url": "https://github.com/Consiliency"
2130
+ },
2131
+ "category": "Slash-Commands",
2132
+ "tags": ["slash-commands", "command", "mit"],
2133
+ "detection": {
2134
+ "keywords": ["ai", "command", "slash", "cli"],
2135
+ "files": [".claude/commands/*"]
2136
+ },
2137
+ "metrics": {
2138
+ "source": "awesome-list",
2139
+ "isOfficial": false,
2140
+ "securityScore": 100
2141
+ },
2142
+ "install": {
2143
+ "method": "manual",
2144
+ "command": "git clone https://github.com/Consiliency/Flutter-Structurizr/blob/main/.claude/commands/update-docs.md"
2145
+ }
2146
+ },
2147
+ {
2148
+ "id": "skill-build-react-app",
2149
+ "name": "/build-react-app",
2150
+ "type": "command",
2151
+ "url": "https://github.com/wmjones/wyatt-personal-aws/blob/main/.claude/commands/build-react-app.md",
2152
+ "description": "Builds React applications locally with intelligent error handling, creating specific tasks for build failures and providing appropriate server commands based on build results.",
2153
+ "author": {
2154
+ "name": "wmjones",
2155
+ "url": "https://github.com/wmjones"
2156
+ },
2157
+ "category": "Slash-Commands",
2158
+ "tags": ["slash-commands", "command", "not_found"],
2159
+ "detection": {
2160
+ "keywords": ["react", "ci", "ai", "command", "slash", "cli"],
2161
+ "files": [".claude/commands/*"]
2162
+ },
2163
+ "metrics": {
2164
+ "source": "awesome-list",
2165
+ "isOfficial": false,
2166
+ "securityScore": 100
2167
+ },
2168
+ "install": {
2169
+ "method": "manual",
2170
+ "command": "git clone https://github.com/wmjones/wyatt-personal-aws/blob/main/.claude/commands/build-react-app.md"
2171
+ }
2172
+ },
2173
+ {
2174
+ "id": "skill-release",
2175
+ "name": "/release",
2176
+ "type": "command",
2177
+ "url": "https://github.com/kelp/webdown/blob/main/.claude/commands/release.md",
2178
+ "description": "Manages software releases by updating changelogs, reviewing README changes, evaluating version increments, and documenting release changes for better version tracking.",
2179
+ "author": {
2180
+ "name": "kelp",
2181
+ "url": "https://github.com/kelp"
2182
+ },
2183
+ "category": "Slash-Commands",
2184
+ "tags": ["slash-commands", "command", "mit"],
2185
+ "detection": {
2186
+ "keywords": ["command", "slash", "cli"],
2187
+ "files": [".claude/commands/*"]
2188
+ },
2189
+ "metrics": {
2190
+ "source": "awesome-list",
2191
+ "isOfficial": false,
2192
+ "securityScore": 100
2193
+ },
2194
+ "install": {
2195
+ "method": "manual",
2196
+ "command": "git clone https://github.com/kelp/webdown/blob/main/.claude/commands/release.md"
2197
+ }
2198
+ },
2199
+ {
2200
+ "id": "skill-create-plan",
2201
+ "name": "/create-plan",
2202
+ "type": "command",
2203
+ "url": "https://github.com/hesreallyhim/inkverse-fork/blob/preserve-claude-resources/.claude/commands/create-plan.md",
2204
+ "description": "Generates comprehensive product requirement documents outlining detailed specifications, requirements, and features following standardized document structure and format.",
2205
+ "author": {
2206
+ "name": "taddyorg",
2207
+ "url": "https://github.com/taddyorg"
2208
+ },
2209
+ "category": "Slash-Commands",
2210
+ "tags": ["slash-commands", "command", "agpl-3.0"],
2211
+ "detection": {
2212
+ "keywords": ["ci", "ai", "command", "slash", "cli"],
2213
+ "files": [".claude/commands/*"]
2214
+ },
2215
+ "metrics": {
2216
+ "source": "awesome-list",
2217
+ "isOfficial": false,
2218
+ "securityScore": 100
2219
+ },
2220
+ "install": {
2221
+ "method": "manual",
2222
+ "command": "git clone https://github.com/hesreallyhim/inkverse-fork/blob/preserve-claude-resources/.claude/commands/create-plan.md"
2223
+ }
2224
+ },
2225
+ {
2226
+ "id": "skill-create-prp",
2227
+ "name": "/create-prp",
2228
+ "type": "command",
2229
+ "url": "https://github.com/Wirasm/claudecode-utils/blob/main/.claude/commands/create-prp.md",
2230
+ "description": "Creates product requirement plans by reading PRP methodology, following template structure, creating comprehensive requirements, and structuring product definitions for development.",
2231
+ "author": {
2232
+ "name": "Wirasm",
2233
+ "url": "https://github.com/Wirasm"
2234
+ },
2235
+ "category": "Slash-Commands",
2236
+ "tags": ["slash-commands", "command", "mit"],
2237
+ "detection": {
2238
+ "keywords": ["command", "slash", "cli"],
2239
+ "files": [".claude/commands/*"]
2240
+ },
2241
+ "metrics": {
2242
+ "source": "awesome-list",
2243
+ "isOfficial": false,
2244
+ "securityScore": 100
2245
+ },
2246
+ "install": {
2247
+ "method": "manual",
2248
+ "command": "git clone https://github.com/Wirasm/claudecode-utils/blob/main/.claude/commands/create-prp.md"
2249
+ }
2250
+ },
2251
+ {
2252
+ "id": "skill-do-issue",
2253
+ "name": "/do-issue",
2254
+ "type": "command",
2255
+ "url": "https://github.com/jerseycheese/Narraitor/blob/feature/issue-227-ai-suggestions/.claude/commands/do-issue.md",
2256
+ "description": "Implements GitHub issues with manual review points, following a structured approach with issue number parameter and offering alternative automated mode for efficiency.",
2257
+ "author": {
2258
+ "name": "jerseycheese",
2259
+ "url": "https://github.com/jerseycheese"
2260
+ },
2261
+ "category": "Slash-Commands",
2262
+ "tags": ["slash-commands", "command", "mit"],
2263
+ "detection": {
2264
+ "keywords": ["git", "github", "ci", "command", "slash", "cli"],
2265
+ "files": [".claude/commands/*"]
2266
+ },
2267
+ "metrics": {
2268
+ "source": "awesome-list",
2269
+ "isOfficial": false,
2270
+ "securityScore": 100
2271
+ },
2272
+ "install": {
2273
+ "method": "manual",
2274
+ "command": "git clone https://github.com/jerseycheese/Narraitor/blob/feature/issue-227-ai-suggestions/.claude/commands/do-issue.md"
2275
+ }
2276
+ },
2277
+ {
2278
+ "id": "skill-prd-generator",
2279
+ "name": "/prd-generator",
2280
+ "type": "command",
2281
+ "url": "https://github.com/dredozubov/prd-generator",
2282
+ "description": "A Claude Code plugin that generates comprehensive Product Requirements Documents (PRDs) from conversation context. Invoke `/create-prd` after discussing requirements and it produces a complete PRD with all standard sections including Executive Summary, User Stories, MVP Scope, Architecture, Success Criteria, and Implementation Phases.",
2283
+ "author": {
2284
+ "name": "Denis Redozubov",
2285
+ "url": "https://github.com/dredozubov"
2286
+ },
2287
+ "category": "Slash-Commands",
2288
+ "tags": ["slash-commands", "command", "mit"],
2289
+ "detection": {
2290
+ "keywords": ["command", "slash", "cli"],
2291
+ "files": [".claude/commands/*"]
2292
+ },
2293
+ "metrics": {
2294
+ "source": "awesome-list",
2295
+ "isOfficial": false,
2296
+ "securityScore": 100
2297
+ },
2298
+ "install": {
2299
+ "method": "manual",
2300
+ "command": "git clone https://github.com/dredozubov/prd-generator"
2301
+ }
2302
+ },
2303
+ {
2304
+ "id": "skill-todo",
2305
+ "name": "/todo",
2306
+ "type": "command",
2307
+ "url": "https://github.com/chrisleyva/todo-slash-command/blob/main/todo.md",
2308
+ "description": "A convenient command to quickly manage project todo items without leaving the Claude Code interface, featuring due dates, sorting, task prioritization, and comprehensive todo list management.",
2309
+ "author": {
2310
+ "name": "chrisleyva",
2311
+ "url": "https://github.com/chrisleyva"
2312
+ },
2313
+ "category": "Slash-Commands",
2314
+ "tags": ["slash-commands", "command", "mit"],
2315
+ "detection": {
2316
+ "keywords": ["command", "slash", "cli"],
2317
+ "files": [".claude/commands/*"]
2318
+ },
2319
+ "metrics": {
2320
+ "source": "awesome-list",
2321
+ "isOfficial": false,
2322
+ "securityScore": 100
2323
+ },
2324
+ "install": {
2325
+ "method": "manual",
2326
+ "command": "git clone https://github.com/chrisleyva/todo-slash-command/blob/main/todo.md"
2327
+ }
2328
+ },
2329
+ {
2330
+ "id": "skill-act",
2331
+ "name": "/act",
2332
+ "type": "command",
2333
+ "url": "https://github.com/sotayamashita/dotfiles/blob/main/.claude/commands/act.md",
2334
+ "description": "Generates React components with proper accessibility, creating ARIA-compliant components with keyboard navigation that follow React best practices and include comprehensive accessibility testing.",
2335
+ "author": {
2336
+ "name": "sotayamashita",
2337
+ "url": "https://github.com/sotayamashita"
2338
+ },
2339
+ "category": "Slash-Commands",
2340
+ "tags": ["slash-commands", "command", "mit"],
2341
+ "detection": {
2342
+ "keywords": ["react", "test", "testing", "command", "slash", "cli"],
2343
+ "files": [".claude/commands/*"]
2344
+ },
2345
+ "metrics": {
2346
+ "source": "awesome-list",
2347
+ "isOfficial": false,
2348
+ "securityScore": 100
2349
+ },
2350
+ "install": {
2351
+ "method": "manual",
2352
+ "command": "git clone https://github.com/sotayamashita/dotfiles/blob/main/.claude/commands/act.md"
2353
+ }
2354
+ },
2355
+ {
2356
+ "id": "skill-dump",
2357
+ "name": "/dump",
2358
+ "type": "command",
2359
+ "url": "https://gist.github.com/fumito-ito/77c308e0382e06a9c16b22619f8a2f83#file-dump-md",
2360
+ "description": "Dumps the current Claude Code conversation to a markdown file in `.claude/logs/` with timestamped files that include session details and preserve full conversation history.",
2361
+ "author": {
2362
+ "name": "fumito-ito",
2363
+ "url": "https://github.com/fumito-ito"
2364
+ },
2365
+ "category": "Slash-Commands",
2366
+ "tags": ["slash-commands", "command", "not_found"],
2367
+ "detection": {
2368
+ "keywords": ["ai", "command", "slash", "cli"],
2369
+ "files": [".claude/commands/*"]
2370
+ },
2371
+ "metrics": {
2372
+ "source": "awesome-list",
2373
+ "isOfficial": false,
2374
+ "securityScore": 100
2375
+ },
2376
+ "install": {
2377
+ "method": "manual",
2378
+ "command": "git clone https://gist.github.com/fumito-ito/77c308e0382e06a9c16b22619f8a2f83#file-dump-md"
2379
+ }
2380
+ },
2381
+ {
2382
+ "id": "skill-five",
2383
+ "name": "/five",
2384
+ "type": "command",
2385
+ "url": "https://github.com/TuckerTucker/tkr-portfolio/blob/main/.claude/commands/five.md",
2386
+ "description": "Applies the \"five whys\" methodology to perform root cause analysis, identify underlying issues, and create solution approaches for complex problems.",
2387
+ "author": {
2388
+ "name": "TuckerTucker",
2389
+ "url": "https://github.com/TuckerTucker"
2390
+ },
2391
+ "category": "Slash-Commands",
2392
+ "tags": ["slash-commands", "command", "not_found"],
2393
+ "detection": {
2394
+ "keywords": ["command", "slash", "cli"],
2395
+ "files": [".claude/commands/*"]
2396
+ },
2397
+ "metrics": {
2398
+ "source": "awesome-list",
2399
+ "isOfficial": false,
2400
+ "securityScore": 100
2401
+ },
2402
+ "install": {
2403
+ "method": "manual",
2404
+ "command": "git clone https://github.com/TuckerTucker/tkr-portfolio/blob/main/.claude/commands/five.md"
2405
+ }
2406
+ },
2407
+ {
2408
+ "id": "skill-mermaid",
2409
+ "name": "/mermaid",
2410
+ "type": "command",
2411
+ "url": "https://github.com/GaloyMoney/lana-bank/blob/main/.claude/commands/mermaid.md",
2412
+ "description": "Generates Mermaid diagrams from SQL schema files, creating entity relationship diagrams with table properties, validating diagram compilation, and ensuring complete entity coverage.",
2413
+ "author": {
2414
+ "name": "GaloyMoney",
2415
+ "url": "https://github.com/GaloyMoney"
2416
+ },
2417
+ "category": "Slash-Commands",
2418
+ "tags": ["slash-commands", "command", "noassertion"],
2419
+ "detection": {
2420
+ "keywords": ["ai", "command", "slash", "cli"],
2421
+ "files": [".claude/commands/*"]
2422
+ },
2423
+ "metrics": {
2424
+ "source": "awesome-list",
2425
+ "isOfficial": false,
2426
+ "securityScore": 100
2427
+ },
2428
+ "install": {
2429
+ "method": "manual",
2430
+ "command": "git clone https://github.com/GaloyMoney/lana-bank/blob/main/.claude/commands/mermaid.md"
2431
+ }
2432
+ },
2433
+ {
2434
+ "id": "skill-use-stepper",
2435
+ "name": "/use-stepper",
2436
+ "type": "command",
2437
+ "url": "https://github.com/zuplo/docs/blob/main/.claude/commands/use-stepper.md",
2438
+ "description": "Reformats documentation to use React Stepper component, transforming heading formats, applying proper indentation, and maintaining markdown compatibility with admonition formatting.",
2439
+ "author": {
2440
+ "name": "zuplo",
2441
+ "url": "https://github.com/zuplo"
2442
+ },
2443
+ "category": "Slash-Commands",
2444
+ "tags": ["slash-commands", "command", "not_found"],
2445
+ "detection": {
2446
+ "keywords": ["react", "ai", "command", "slash", "cli"],
2447
+ "files": [".claude/commands/*"]
2448
+ },
2449
+ "metrics": {
2450
+ "source": "awesome-list",
2451
+ "isOfficial": false,
2452
+ "securityScore": 100
2453
+ },
2454
+ "install": {
2455
+ "method": "manual",
2456
+ "command": "git clone https://github.com/zuplo/docs/blob/main/.claude/commands/use-stepper.md"
2457
+ }
2458
+ },
2459
+ {
2460
+ "id": "skill-ai-intellij-plugin",
2461
+ "name": "AI IntelliJ Plugin",
2462
+ "type": "skill",
2463
+ "url": "https://github.com/didalgolab/ai-intellij-plugin/blob/main/CLAUDE.md",
2464
+ "description": "Provides comprehensive Gradle commands for IntelliJ plugin development with platform-specific coding patterns, detailed package structure guidelines, and clear internationalization standards.",
2465
+ "author": {
2466
+ "name": "didalgolab",
2467
+ "url": "https://github.com/didalgolab"
2468
+ },
2469
+ "category": "CLAUDE.md Files",
2470
+ "tags": ["claude.md files", "skill", "apache-2.0"],
2471
+ "detection": {
2472
+ "keywords": ["ci", "ai"]
2473
+ },
2474
+ "metrics": {
2475
+ "source": "awesome-list",
2476
+ "isOfficial": false,
2477
+ "securityScore": 100
2478
+ },
2479
+ "install": {
2480
+ "method": "manual",
2481
+ "command": "git clone https://github.com/didalgolab/ai-intellij-plugin/blob/main/CLAUDE.md"
2482
+ }
2483
+ },
2484
+ {
2485
+ "id": "skill-droidconkotlin",
2486
+ "name": "DroidconKotlin",
2487
+ "type": "skill",
2488
+ "url": "https://github.com/touchlab/DroidconKotlin/blob/main/CLAUDE.md",
2489
+ "description": "Delivers comprehensive Gradle commands for cross-platform Kotlin Multiplatform development with clear module structure and practical guidance for dependency injection.",
2490
+ "author": {
2491
+ "name": "touchlab",
2492
+ "url": "https://github.com/touchlab"
2493
+ },
2494
+ "category": "CLAUDE.md Files",
2495
+ "tags": ["claude.md files", "skill", "apache-2.0"],
2496
+ "detection": {
2497
+ "keywords": []
2498
+ },
2499
+ "metrics": {
2500
+ "source": "awesome-list",
2501
+ "isOfficial": false,
2502
+ "securityScore": 100
2503
+ },
2504
+ "install": {
2505
+ "method": "manual",
2506
+ "command": "git clone https://github.com/touchlab/DroidconKotlin/blob/main/CLAUDE.md"
2507
+ }
2508
+ },
2509
+ {
2510
+ "id": "skill-edsl",
2511
+ "name": "EDSL",
2512
+ "type": "skill",
2513
+ "url": "https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/EDSL/CLAUDE.md",
2514
+ "description": "Offers detailed build and test commands with strict code style enforcement, comprehensive testing requirements, and standardized development workflow using Black and mypy.",
2515
+ "author": {
2516
+ "name": "expectedparrot",
2517
+ "url": "https://github.com/expectedparrot"
2518
+ },
2519
+ "category": "CLAUDE.md Files",
2520
+ "tags": ["claude.md files", "skill", "mit"],
2521
+ "detection": {
2522
+ "keywords": ["test", "testing", "ai"]
2523
+ },
2524
+ "metrics": {
2525
+ "source": "awesome-list",
2526
+ "isOfficial": false,
2527
+ "securityScore": 100
2528
+ },
2529
+ "install": {
2530
+ "method": "manual",
2531
+ "command": "git clone https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/EDSL/CLAUDE.md"
2532
+ }
2533
+ },
2534
+ {
2535
+ "id": "skill-hash",
2536
+ "name": "HASH",
2537
+ "type": "skill",
2538
+ "url": "https://github.com/hashintel/hash/blob/main/CLAUDE.md",
2539
+ "description": "Features comprehensive repository structure breakdown with strong emphasis on coding standards, detailed Rust documentation guidelines, and systematic PR review process.",
2540
+ "author": {
2541
+ "name": "hashintel",
2542
+ "url": "https://github.com/hashintel"
2543
+ },
2544
+ "category": "CLAUDE.md Files",
2545
+ "tags": ["claude.md files", "skill", "noassertion"],
2546
+ "detection": {
2547
+ "keywords": ["rust", "ai"]
2548
+ },
2549
+ "metrics": {
2550
+ "source": "awesome-list",
2551
+ "isOfficial": false,
2552
+ "securityScore": 100
2553
+ },
2554
+ "install": {
2555
+ "method": "manual",
2556
+ "command": "git clone https://github.com/hashintel/hash/blob/main/CLAUDE.md"
2557
+ }
2558
+ },
2559
+ {
2560
+ "id": "skill-inkline",
2561
+ "name": "Inkline",
2562
+ "type": "skill",
2563
+ "url": "https://github.com/inkline/inkline/blob/main/CLAUDE.md",
2564
+ "description": "Structures development workflow using pnpm with emphasis on TypeScript and Vue 3 Composition API, detailed component creation process, and comprehensive testing recommendations.",
2565
+ "author": {
2566
+ "name": "inkline",
2567
+ "url": "https://github.com/inkline"
2568
+ },
2569
+ "category": "CLAUDE.md Files",
2570
+ "tags": ["claude.md files", "skill", "noassertion"],
2571
+ "detection": {
2572
+ "keywords": ["vue", "typescript", "api", "test", "testing", "ai"]
2573
+ },
2574
+ "metrics": {
2575
+ "source": "awesome-list",
2576
+ "isOfficial": false,
2577
+ "securityScore": 100
2578
+ },
2579
+ "install": {
2580
+ "method": "manual",
2581
+ "command": "git clone https://github.com/inkline/inkline/blob/main/CLAUDE.md"
2582
+ }
2583
+ },
2584
+ {
2585
+ "id": "skill-jsbeeb",
2586
+ "name": "JSBeeb",
2587
+ "type": "skill",
2588
+ "url": "https://github.com/mattgodbolt/jsbeeb/blob/main/CLAUDE.md",
2589
+ "description": "Provides development guide for JavaScript BBC Micro emulator with build and testing instructions, architecture documentation, and debugging workflows.",
2590
+ "author": {
2591
+ "name": "mattgodbolt",
2592
+ "url": "https://github.com/mattgodbolt"
2593
+ },
2594
+ "category": "CLAUDE.md Files",
2595
+ "tags": ["claude.md files", "skill", "gpl-3.0"],
2596
+ "detection": {
2597
+ "keywords": ["javascript", "java", "test", "testing"]
2598
+ },
2599
+ "metrics": {
2600
+ "source": "awesome-list",
2601
+ "isOfficial": false,
2602
+ "securityScore": 100
2603
+ },
2604
+ "install": {
2605
+ "method": "manual",
2606
+ "command": "git clone https://github.com/mattgodbolt/jsbeeb/blob/main/CLAUDE.md"
2607
+ }
2608
+ },
2609
+ {
2610
+ "id": "skill-lamoom-python",
2611
+ "name": "Lamoom Python",
2612
+ "type": "skill",
2613
+ "url": "https://github.com/LamoomAI/lamoom-python/blob/main/CLAUDE.md",
2614
+ "description": "Serves as reference for production prompt engineering library with load balancing of AI Models, API documentation, and usage patterns with examples.",
2615
+ "author": {
2616
+ "name": "LamoomAI",
2617
+ "url": "https://github.com/LamoomAI"
2618
+ },
2619
+ "category": "CLAUDE.md Files",
2620
+ "tags": ["claude.md files", "skill", "apache-2.0"],
2621
+ "detection": {
2622
+ "keywords": ["python", "api", "ci", "ai"]
2623
+ },
2624
+ "metrics": {
2625
+ "source": "awesome-list",
2626
+ "isOfficial": false,
2627
+ "securityScore": 100
2628
+ },
2629
+ "install": {
2630
+ "method": "manual",
2631
+ "command": "git clone https://github.com/LamoomAI/lamoom-python/blob/main/CLAUDE.md"
2632
+ }
2633
+ },
2634
+ {
2635
+ "id": "skill-langgraphjs",
2636
+ "name": "LangGraphJS",
2637
+ "type": "skill",
2638
+ "url": "https://github.com/langchain-ai/langgraphjs/blob/main/CLAUDE.md",
2639
+ "description": "Offers comprehensive build and test commands with detailed TypeScript style guidelines, layered library architecture, and monorepo structure using yarn workspaces.",
2640
+ "author": {
2641
+ "name": "langchain-ai",
2642
+ "url": "https://github.com/langchain-ai"
2643
+ },
2644
+ "category": "CLAUDE.md Files",
2645
+ "tags": ["claude.md files", "skill", "mit"],
2646
+ "detection": {
2647
+ "keywords": ["typescript", "test", "ai"]
2648
+ },
2649
+ "metrics": {
2650
+ "source": "awesome-list",
2651
+ "isOfficial": false,
2652
+ "securityScore": 100
2653
+ },
2654
+ "install": {
2655
+ "method": "manual",
2656
+ "command": "git clone https://github.com/langchain-ai/langgraphjs/blob/main/CLAUDE.md"
2657
+ }
2658
+ },
2659
+ {
2660
+ "id": "skill-metabase",
2661
+ "name": "Metabase",
2662
+ "type": "skill",
2663
+ "url": "https://github.com/metabase/metabase/blob/master/CLAUDE.md",
2664
+ "description": "Details workflow for REPL-driven development in Clojure/ClojureScript with emphasis on incremental development, testing, and step-by-step approach for feature implementation.",
2665
+ "author": {
2666
+ "name": "metabase",
2667
+ "url": "https://github.com/metabase"
2668
+ },
2669
+ "category": "CLAUDE.md Files",
2670
+ "tags": ["claude.md files", "skill", "noassertion"],
2671
+ "detection": {
2672
+ "keywords": ["test", "testing", "ai"]
2673
+ },
2674
+ "metrics": {
2675
+ "source": "awesome-list",
2676
+ "isOfficial": false,
2677
+ "securityScore": 100
2678
+ },
2679
+ "install": {
2680
+ "method": "manual",
2681
+ "command": "git clone https://github.com/metabase/metabase/blob/master/CLAUDE.md"
2682
+ }
2683
+ },
2684
+ {
2685
+ "id": "skill-sg-cars-trends-backend",
2686
+ "name": "SG Cars Trends Backend",
2687
+ "type": "skill",
2688
+ "url": "https://github.com/sgcarstrends/backend/blob/main/CLAUDE.md",
2689
+ "description": "Provides comprehensive structure for TypeScript monorepo projects with detailed commands for development, testing, deployment, and AWS/Cloudflare integration.",
2690
+ "author": {
2691
+ "name": "sgcarstrends",
2692
+ "url": "https://github.com/sgcarstrends"
2693
+ },
2694
+ "category": "CLAUDE.md Files",
2695
+ "tags": ["claude.md files", "skill", "mit"],
2696
+ "detection": {
2697
+ "keywords": ["typescript", "aws", "test", "testing", "ai"]
2698
+ },
2699
+ "metrics": {
2700
+ "source": "awesome-list",
2701
+ "isOfficial": false,
2702
+ "securityScore": 100
2703
+ },
2704
+ "install": {
2705
+ "method": "manual",
2706
+ "command": "git clone https://github.com/sgcarstrends/backend/blob/main/CLAUDE.md"
2707
+ }
2708
+ },
2709
+ {
2710
+ "id": "skill-spy",
2711
+ "name": "SPy",
2712
+ "type": "skill",
2713
+ "url": "https://github.com/spylang/spy/blob/main/CLAUDE.md",
2714
+ "description": "Enforces strict coding conventions with comprehensive testing guidelines, multiple code compilation options, and backend-specific test decorators for targeted filtering.",
2715
+ "author": {
2716
+ "name": "spylang",
2717
+ "url": "https://github.com/spylang"
2718
+ },
2719
+ "category": "CLAUDE.md Files",
2720
+ "tags": ["claude.md files", "skill", "mit"],
2721
+ "detection": {
2722
+ "keywords": ["test", "testing", "ci"]
2723
+ },
2724
+ "metrics": {
2725
+ "source": "awesome-list",
2726
+ "isOfficial": false,
2727
+ "securityScore": 100
2728
+ },
2729
+ "install": {
2730
+ "method": "manual",
2731
+ "command": "git clone https://github.com/spylang/spy/blob/main/CLAUDE.md"
2732
+ }
2733
+ },
2734
+ {
2735
+ "id": "skill-tpl",
2736
+ "name": "TPL",
2737
+ "type": "skill",
2738
+ "url": "https://github.com/KarpelesLab/tpl/blob/master/CLAUDE.md",
2739
+ "description": "Details Go project conventions with comprehensive error handling recommendations, table-driven testing approach guidelines, and modernization suggestions for latest Go features.",
2740
+ "author": {
2741
+ "name": "KarpelesLab",
2742
+ "url": "https://github.com/KarpelesLab"
2743
+ },
2744
+ "category": "CLAUDE.md Files",
2745
+ "tags": ["claude.md files", "skill", "mit"],
2746
+ "detection": {
2747
+ "keywords": ["go", "test", "testing", "ai"]
2748
+ },
2749
+ "metrics": {
2750
+ "source": "awesome-list",
2751
+ "isOfficial": false,
2752
+ "securityScore": 100
2753
+ },
2754
+ "install": {
2755
+ "method": "manual",
2756
+ "command": "git clone https://github.com/KarpelesLab/tpl/blob/master/CLAUDE.md"
2757
+ }
2758
+ },
2759
+ {
2760
+ "id": "skill-avs-vibe-developer-guide",
2761
+ "name": "AVS Vibe Developer Guide",
2762
+ "type": "skill",
2763
+ "url": "https://github.com/Layr-Labs/avs-vibe-developer-guide/blob/master/CLAUDE.md",
2764
+ "description": "Structures AI-assisted EigenLayer AVS development workflow with consistent naming conventions for prompt files and established terminology standards for blockchain concepts.",
2765
+ "author": {
2766
+ "name": "Layr-Labs",
2767
+ "url": "https://github.com/Layr-Labs"
2768
+ },
2769
+ "category": "CLAUDE.md Files",
2770
+ "tags": ["claude.md files", "skill", "mit"],
2771
+ "detection": {
2772
+ "keywords": ["ai"]
2773
+ },
2774
+ "metrics": {
2775
+ "source": "awesome-list",
2776
+ "isOfficial": false,
2777
+ "securityScore": 100
2778
+ },
2779
+ "install": {
2780
+ "method": "manual",
2781
+ "command": "git clone https://github.com/Layr-Labs/avs-vibe-developer-guide/blob/master/CLAUDE.md"
2782
+ }
2783
+ },
2784
+ {
2785
+ "id": "skill-comm",
2786
+ "name": "Comm",
2787
+ "type": "skill",
2788
+ "url": "https://github.com/CommE2E/comm/blob/master/CLAUDE.md",
2789
+ "description": "Serves as a development reference for E2E-encrypted messaging applications with code organization architecture, security implementation details, and testing procedures.",
2790
+ "author": {
2791
+ "name": "CommE2E",
2792
+ "url": "https://github.com/CommE2E"
2793
+ },
2794
+ "category": "CLAUDE.md Files",
2795
+ "tags": ["claude.md files", "skill", "bsd-3-clause"],
2796
+ "detection": {
2797
+ "keywords": ["test", "testing", "security", "ai"]
2798
+ },
2799
+ "metrics": {
2800
+ "source": "awesome-list",
2801
+ "isOfficial": false,
2802
+ "securityScore": 100
2803
+ },
2804
+ "install": {
2805
+ "method": "manual",
2806
+ "command": "git clone https://github.com/CommE2E/comm/blob/master/CLAUDE.md"
2807
+ }
2808
+ },
2809
+ {
2810
+ "id": "skill-course-builder",
2811
+ "name": "Course Builder",
2812
+ "type": "skill",
2813
+ "url": "https://github.com/badass-courses/course-builder/blob/main/CLAUDE.md",
2814
+ "description": "Enables real-time multiplayer capabilities for collaborative course creation with diverse tech stack integration and monorepo architecture using Turborepo.",
2815
+ "author": {
2816
+ "name": "badass-courses",
2817
+ "url": "https://github.com/badass-courses"
2818
+ },
2819
+ "category": "CLAUDE.md Files",
2820
+ "tags": ["claude.md files", "skill", "mit"],
2821
+ "detection": {
2822
+ "keywords": []
2823
+ },
2824
+ "metrics": {
2825
+ "source": "awesome-list",
2826
+ "isOfficial": false,
2827
+ "securityScore": 100
2828
+ },
2829
+ "install": {
2830
+ "method": "manual",
2831
+ "command": "git clone https://github.com/badass-courses/course-builder/blob/main/CLAUDE.md"
2832
+ }
2833
+ },
2834
+ {
2835
+ "id": "skill-cursor-tools",
2836
+ "name": "Cursor Tools",
2837
+ "type": "skill",
2838
+ "url": "https://github.com/eastlondoner/cursor-tools/blob/main/CLAUDE.md",
2839
+ "description": "Creates a versatile AI command interface supporting multiple providers and models with flexible command options and browser automation through \"Stagehand\" feature.",
2840
+ "author": {
2841
+ "name": "eastlondoner",
2842
+ "url": "https://github.com/eastlondoner"
2843
+ },
2844
+ "category": "CLAUDE.md Files",
2845
+ "tags": ["claude.md files", "skill", "mit"],
2846
+ "detection": {
2847
+ "keywords": ["ai"]
2848
+ },
2849
+ "metrics": {
2850
+ "source": "awesome-list",
2851
+ "isOfficial": false,
2852
+ "securityScore": 100
2853
+ },
2854
+ "install": {
2855
+ "method": "manual",
2856
+ "command": "git clone https://github.com/eastlondoner/cursor-tools/blob/main/CLAUDE.md"
2857
+ }
2858
+ },
2859
+ {
2860
+ "id": "skill-guitar",
2861
+ "name": "Guitar",
2862
+ "type": "skill",
2863
+ "url": "https://github.com/soramimi/Guitar/blob/master/CLAUDE.md",
2864
+ "description": "Serves as development guide for Guitar Git GUI Client with build commands for various platforms, code style guidelines for contributing, and project structure explanation.",
2865
+ "author": {
2866
+ "name": "soramimi",
2867
+ "url": "https://github.com/soramimi"
2868
+ },
2869
+ "category": "CLAUDE.md Files",
2870
+ "tags": ["claude.md files", "skill", "gpl-2.0"],
2871
+ "detection": {
2872
+ "keywords": ["git"]
2873
+ },
2874
+ "metrics": {
2875
+ "source": "awesome-list",
2876
+ "isOfficial": false,
2877
+ "securityScore": 100
2878
+ },
2879
+ "install": {
2880
+ "method": "manual",
2881
+ "command": "git clone https://github.com/soramimi/Guitar/blob/master/CLAUDE.md"
2882
+ }
2883
+ },
2884
+ {
2885
+ "id": "skill-network-chronicles",
2886
+ "name": "Network Chronicles",
2887
+ "type": "skill",
2888
+ "url": "https://github.com/Fimeg/NetworkChronicles/blob/legacy-v1/CLAUDE.md",
2889
+ "description": "Presents detailed implementation plan for AI-driven game characters with technical specifications for LLM integration, character guidelines, and service discovery mechanics.",
2890
+ "author": {
2891
+ "name": "Fimeg",
2892
+ "url": "https://github.com/Fimeg"
2893
+ },
2894
+ "category": "CLAUDE.md Files",
2895
+ "tags": ["claude.md files", "skill", "mit"],
2896
+ "detection": {
2897
+ "keywords": ["ci", "ai", "llm"]
2898
+ },
2899
+ "metrics": {
2900
+ "source": "awesome-list",
2901
+ "isOfficial": false,
2902
+ "securityScore": 100
2903
+ },
2904
+ "install": {
2905
+ "method": "manual",
2906
+ "command": "git clone https://github.com/Fimeg/NetworkChronicles/blob/legacy-v1/CLAUDE.md"
2907
+ }
2908
+ },
2909
+ {
2910
+ "id": "skill-note-companion",
2911
+ "name": "Note Companion",
2912
+ "type": "skill",
2913
+ "url": "https://github.com/different-ai/note-companion/blob/master/CLAUDE.md",
2914
+ "description": "Provides detailed styling isolation techniques for Obsidian plugins using Tailwind with custom prefix to prevent style conflicts and practical troubleshooting steps.",
2915
+ "author": {
2916
+ "name": "different-ai",
2917
+ "url": "https://github.com/different-ai"
2918
+ },
2919
+ "category": "CLAUDE.md Files",
2920
+ "tags": ["claude.md files", "skill", "mit"],
2921
+ "detection": {
2922
+ "keywords": ["ai"]
2923
+ },
2924
+ "metrics": {
2925
+ "source": "awesome-list",
2926
+ "isOfficial": false,
2927
+ "securityScore": 100
2928
+ },
2929
+ "install": {
2930
+ "method": "manual",
2931
+ "command": "git clone https://github.com/different-ai/note-companion/blob/master/CLAUDE.md"
2932
+ }
2933
+ },
2934
+ {
2935
+ "id": "skill-pareto-mac",
2936
+ "name": "Pareto Mac",
2937
+ "type": "skill",
2938
+ "url": "https://github.com/ParetoSecurity/pareto-mac/blob/main/CLAUDE.md",
2939
+ "description": "Serves as development guide for Mac security audit tool with build instructions, contribution guidelines, testing procedures, and workflow documentation.",
2940
+ "author": {
2941
+ "name": "ParetoSecurity",
2942
+ "url": "https://github.com/ParetoSecurity"
2943
+ },
2944
+ "category": "CLAUDE.md Files",
2945
+ "tags": ["claude.md files", "skill", "gpl-3.0"],
2946
+ "detection": {
2947
+ "keywords": ["test", "testing", "security"]
2948
+ },
2949
+ "metrics": {
2950
+ "source": "awesome-list",
2951
+ "isOfficial": false,
2952
+ "securityScore": 100
2953
+ },
2954
+ "install": {
2955
+ "method": "manual",
2956
+ "command": "git clone https://github.com/ParetoSecurity/pareto-mac/blob/main/CLAUDE.md"
2957
+ }
2958
+ },
2959
+ {
2960
+ "id": "skill-basic-memory",
2961
+ "name": "Basic Memory",
2962
+ "type": "skill",
2963
+ "url": "https://github.com/basicmachines-co/basic-memory/blob/main/CLAUDE.md",
2964
+ "description": "Presents an innovative AI-human collaboration framework with Model Context Protocol for bidirectional LLM-markdown communication and flexible knowledge structure for complex projects.",
2965
+ "author": {
2966
+ "name": "basicmachines-co",
2967
+ "url": "https://github.com/basicmachines-co"
2968
+ },
2969
+ "category": "CLAUDE.md Files",
2970
+ "tags": ["claude.md files", "skill", "agpl-3.0"],
2971
+ "detection": {
2972
+ "keywords": ["ai", "llm"]
2973
+ },
2974
+ "metrics": {
2975
+ "source": "awesome-list",
2976
+ "isOfficial": false,
2977
+ "securityScore": 100
2978
+ },
2979
+ "install": {
2980
+ "method": "manual",
2981
+ "command": "git clone https://github.com/basicmachines-co/basic-memory/blob/main/CLAUDE.md"
2982
+ }
2983
+ },
2984
+ {
2985
+ "id": "skill-claude-code-mcp-enhanced",
2986
+ "name": "claude-code-mcp-enhanced",
2987
+ "type": "skill",
2988
+ "url": "https://github.com/grahama1970/claude-code-mcp-enhanced/blob/main/CLAUDE.md",
2989
+ "description": "Provides detailed and emphatic instructions for Claude to follow as a coding agent, with testing guidance, code examples, and compliance checks.",
2990
+ "author": {
2991
+ "name": "grahama1970",
2992
+ "url": "https://github.com/grahama1970"
2993
+ },
2994
+ "category": "CLAUDE.md Files",
2995
+ "tags": ["claude.md files", "skill", "mit"],
2996
+ "detection": {
2997
+ "keywords": ["test", "testing", "ai"]
2998
+ },
2999
+ "metrics": {
3000
+ "source": "awesome-list",
3001
+ "isOfficial": false,
3002
+ "securityScore": 100
3003
+ },
3004
+ "install": {
3005
+ "method": "manual",
3006
+ "command": "git clone https://github.com/grahama1970/claude-code-mcp-enhanced/blob/main/CLAUDE.md"
3007
+ }
3008
+ },
3009
+ {
3010
+ "id": "skill-mcp-engine",
3011
+ "name": "MCP Engine",
3012
+ "type": "skill",
3013
+ "url": "https://github.com/featureform/mcp-engine/blob/main/CLAUDE.md",
3014
+ "description": "Enforces strict package management with comprehensive type checking rules, explicit PR description guidelines, and systematic approach to resolving CI failures.",
3015
+ "author": {
3016
+ "name": "featureform",
3017
+ "url": "https://github.com/featureform"
3018
+ },
3019
+ "category": "CLAUDE.md Files",
3020
+ "tags": ["claude.md files", "skill", "apache-2.0"],
3021
+ "detection": {
3022
+ "keywords": ["ci", "ai"]
3023
+ },
3024
+ "metrics": {
3025
+ "source": "awesome-list",
3026
+ "isOfficial": false,
3027
+ "securityScore": 100
3028
+ },
3029
+ "install": {
3030
+ "method": "manual",
3031
+ "command": "git clone https://github.com/featureform/mcp-engine/blob/main/CLAUDE.md"
3032
+ }
3033
+ },
3034
+ {
3035
+ "id": "skill-perplexity-mcp",
3036
+ "name": "Perplexity MCP",
3037
+ "type": "skill",
3038
+ "url": "https://github.com/Family-IT-Guy/perplexity-mcp/blob/main/CLAUDE.md",
3039
+ "description": "Offers clear step-by-step installation instructions with multiple configuration options, detailed troubleshooting guidance, and concise architecture overview of the MCP protocol.",
3040
+ "author": {
3041
+ "name": "Family-IT-Guy",
3042
+ "url": "https://github.com/Family-IT-Guy"
3043
+ },
3044
+ "category": "CLAUDE.md Files",
3045
+ "tags": ["claude.md files", "skill", "isc"],
3046
+ "detection": {
3047
+ "keywords": ["ci", "ai"]
3048
+ },
3049
+ "metrics": {
3050
+ "source": "awesome-list",
3051
+ "isOfficial": false,
3052
+ "securityScore": 100
3053
+ },
3054
+ "install": {
3055
+ "method": "manual",
3056
+ "command": "git clone https://github.com/Family-IT-Guy/perplexity-mcp/blob/main/CLAUDE.md"
3057
+ }
3058
+ },
3059
+ {
3060
+ "id": "skill-anthropic-documentation",
3061
+ "name": "Anthropic Documentation",
3062
+ "type": "skill",
3063
+ "url": "https://docs.claude.com/en/home",
3064
+ "description": "The official documentation for Claude Code, including installation instructions, usage guidelines, API references, tutorials, examples, loads of information that I won't list individually. Like Claude Code, the documentation is frequently updated.",
3065
+ "author": {
3066
+ "name": "Anthropic",
3067
+ "url": "https://github.com/anthropics"
3068
+ },
3069
+ "category": "Official Documentation",
3070
+ "tags": ["official documentation", "skill", "&copy;"],
3071
+ "detection": {
3072
+ "keywords": ["api", "ci"]
3073
+ },
3074
+ "metrics": {
3075
+ "source": "awesome-list",
3076
+ "isOfficial": false
3077
+ },
3078
+ "install": {
3079
+ "method": "manual"
3080
+ }
3081
+ },
3082
+ {
3083
+ "id": "skill-anthropic-quickstarts",
3084
+ "name": "Anthropic Quickstarts",
3085
+ "type": "skill",
3086
+ "url": "https://github.com/anthropics/claude-quickstarts",
3087
+ "description": "Offers comprehensive development guides for three distinct AI-powered demo projects with standardized workflows, strict code style guidelines, and containerization instructions.",
3088
+ "author": {
3089
+ "name": "Anthropic",
3090
+ "url": "https://github.com/anthropics"
3091
+ },
3092
+ "category": "Official Documentation",
3093
+ "tags": ["official documentation", "skill", "mit"],
3094
+ "detection": {
3095
+ "keywords": ["ai"]
3096
+ },
3097
+ "metrics": {
3098
+ "source": "awesome-list",
3099
+ "isOfficial": false,
3100
+ "securityScore": 100
3101
+ },
3102
+ "install": {
3103
+ "method": "manual",
3104
+ "command": "git clone https://github.com/anthropics/claude-quickstarts"
3105
+ }
3106
+ },
3107
+ {
3108
+ "id": "skill-claude-code-github-actions",
3109
+ "name": "Claude Code GitHub Actions",
3110
+ "type": "skill",
3111
+ "url": "https://github.com/anthropics/claude-code-action/tree/main/examples",
3112
+ "description": "Official GitHub Actions integration for Claude Code with examples and documentation for automating AI-powered workflows in CI/CD pipelines.",
3113
+ "author": {
3114
+ "name": "Anthropic",
3115
+ "url": "https://github.com/anthropics"
3116
+ },
3117
+ "category": "Official Documentation",
3118
+ "tags": ["official documentation", "skill", "mit"],
3119
+ "detection": {
3120
+ "keywords": ["git", "github", "ci", "cd", "ai"]
3121
+ },
3122
+ "metrics": {
3123
+ "source": "awesome-list",
3124
+ "isOfficial": false,
3125
+ "securityScore": 100
3126
+ },
3127
+ "install": {
3128
+ "method": "manual",
3129
+ "command": "git clone https://github.com/anthropics/claude-code-action/tree/main/examples"
3130
+ }
3131
+ },
3132
+ {
3133
+ "id": "skill-awesome-claude-code-output-styles-that-i-really-like",
3134
+ "name": "Awesome Claude Code Output Styles (That I Really Like)",
3135
+ "type": "skill",
3136
+ "url": "https://github.com/hesreallyhim/awesome-claude-code-output-styles-that-i-really-like",
3137
+ "description": "A fun and moderately amusing collection of experimental output styles.",
3138
+ "author": {
3139
+ "name": "Really Him",
3140
+ "url": "https://github.com/hesreallyhim/"
3141
+ },
3142
+ "category": "Output Styles",
3143
+ "tags": ["output styles", "skill", "mit"],
3144
+ "detection": {
3145
+ "keywords": []
3146
+ },
3147
+ "metrics": {
3148
+ "source": "awesome-list",
3149
+ "isOfficial": false,
3150
+ "securityScore": 100
3151
+ },
3152
+ "install": {
3153
+ "method": "manual",
3154
+ "command": "git clone https://github.com/hesreallyhim/awesome-claude-code-output-styles-that-i-really-like"
3155
+ }
3156
+ },
3157
+ {
3158
+ "id": "skill-ccoutputstyles",
3159
+ "name": "ccoutputstyles",
3160
+ "type": "skill",
3161
+ "url": "https://github.com/viveknair/ccoutputstyles",
3162
+ "description": "CLI tool and template gallery for customizing Claude Code output styles with pre-built templates. Features over 15 templates at the time of writing!",
3163
+ "author": {
3164
+ "name": "Vivek Nair",
3165
+ "url": "https://github.com/viveknair"
3166
+ },
3167
+ "category": "Output Styles",
3168
+ "tags": ["output styles", "skill", "mit"],
3169
+ "detection": {
3170
+ "keywords": []
3171
+ },
3172
+ "metrics": {
3173
+ "source": "awesome-list",
3174
+ "isOfficial": false,
3175
+ "securityScore": 100
3176
+ },
3177
+ "install": {
3178
+ "method": "manual",
3179
+ "command": "git clone https://github.com/viveknair/ccoutputstyles"
3180
+ }
3181
+ },
3182
+ {
3183
+ "id": "skill-claude-code-output-styles-debugging",
3184
+ "name": "Claude Code Output Styles - Debugging",
3185
+ "type": "skill",
3186
+ "url": "https://github.com/JamieM0/claude-output-styles",
3187
+ "description": "A small set of well-written output styles, specifically focused on debugging - root cause analysis, systematic, methodical debugging, encouraging a more careful approach to bug-squashing from Claude Code.",
3188
+ "author": {
3189
+ "name": "Jamie Matthews",
3190
+ "url": "https://github.com/JamieM0"
3191
+ },
3192
+ "category": "Output Styles",
3193
+ "tags": ["output styles", "skill", "mit"],
3194
+ "detection": {
3195
+ "keywords": ["ci"]
3196
+ },
3197
+ "metrics": {
3198
+ "source": "awesome-list",
3199
+ "isOfficial": false,
3200
+ "securityScore": 100
3201
+ },
3202
+ "install": {
3203
+ "method": "manual",
3204
+ "command": "git clone https://github.com/JamieM0/claude-output-styles"
3205
+ }
3206
+ },
3207
+ {
3208
+ "id": "skill-gen-alpha-slang",
3209
+ "name": "Gen-Alpha Slang",
3210
+ "type": "skill",
3211
+ "url": "https://github.com/sjnims/gen-alpha-output-style",
3212
+ "description": "This is really... different. I don't know what to say about this one. It does what it says on the tin. You might find it funny, you might want throw up. I'll just say candidly this is included strictly for its potentially comedic awesomeness.",
3213
+ "author": {
3214
+ "name": "Steve Nims",
3215
+ "url": "https://github.com/sjnims"
3216
+ },
3217
+ "category": "Output Styles",
3218
+ "tags": ["output styles", "skill", "mit"],
3219
+ "detection": {
3220
+ "keywords": []
3221
+ },
3222
+ "metrics": {
3223
+ "source": "awesome-list",
3224
+ "isOfficial": false,
3225
+ "securityScore": 100
3226
+ },
3227
+ "install": {
3228
+ "method": "manual",
3229
+ "command": "git clone https://github.com/sjnims/gen-alpha-output-style"
3230
+ }
3231
+ }
3232
+ ]
3233
+ }