@booklib/core 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (374) hide show
  1. package/.cursor/rules/booklib-standards.mdc +40 -0
  2. package/.gemini/context.md +372 -0
  3. package/AGENTS.md +166 -0
  4. package/CHANGELOG.md +226 -0
  5. package/CLAUDE.md +81 -0
  6. package/CODE_OF_CONDUCT.md +31 -0
  7. package/CONTRIBUTING.md +304 -0
  8. package/LICENSE +21 -0
  9. package/PLAN.md +28 -0
  10. package/README.ja.md +198 -0
  11. package/README.ko.md +198 -0
  12. package/README.md +503 -0
  13. package/README.pt-BR.md +198 -0
  14. package/README.uk.md +241 -0
  15. package/README.zh-CN.md +198 -0
  16. package/SECURITY.md +9 -0
  17. package/agents/architecture-reviewer.md +136 -0
  18. package/agents/booklib-reviewer.md +90 -0
  19. package/agents/data-reviewer.md +107 -0
  20. package/agents/jvm-reviewer.md +146 -0
  21. package/agents/python-reviewer.md +128 -0
  22. package/agents/rust-reviewer.md +115 -0
  23. package/agents/ts-reviewer.md +110 -0
  24. package/agents/ui-reviewer.md +117 -0
  25. package/assets/logo.svg +36 -0
  26. package/bin/booklib-mcp.js +304 -0
  27. package/bin/booklib.js +1705 -0
  28. package/bin/skills.cjs +1292 -0
  29. package/booklib-router.mdc +36 -0
  30. package/booklib.config.json +19 -0
  31. package/commands/animation-at-work.md +10 -0
  32. package/commands/clean-code-reviewer.md +10 -0
  33. package/commands/data-intensive-patterns.md +10 -0
  34. package/commands/data-pipelines.md +10 -0
  35. package/commands/design-patterns.md +10 -0
  36. package/commands/domain-driven-design.md +10 -0
  37. package/commands/effective-java.md +10 -0
  38. package/commands/effective-kotlin.md +10 -0
  39. package/commands/effective-python.md +10 -0
  40. package/commands/effective-typescript.md +10 -0
  41. package/commands/kotlin-in-action.md +10 -0
  42. package/commands/lean-startup.md +10 -0
  43. package/commands/microservices-patterns.md +10 -0
  44. package/commands/programming-with-rust.md +10 -0
  45. package/commands/refactoring-ui.md +10 -0
  46. package/commands/rust-in-action.md +10 -0
  47. package/commands/skill-router.md +10 -0
  48. package/commands/spring-boot-in-action.md +10 -0
  49. package/commands/storytelling-with-data.md +10 -0
  50. package/commands/system-design-interview.md +10 -0
  51. package/commands/using-asyncio-python.md +10 -0
  52. package/commands/web-scraping-python.md +10 -0
  53. package/community/registry.json +1616 -0
  54. package/hooks/hooks.json +23 -0
  55. package/hooks/posttooluse-capture.mjs +67 -0
  56. package/hooks/suggest.js +153 -0
  57. package/lib/agent-behaviors.js +40 -0
  58. package/lib/agent-detector.js +96 -0
  59. package/lib/config-loader.js +39 -0
  60. package/lib/conflict-resolver.js +148 -0
  61. package/lib/context-builder.js +574 -0
  62. package/lib/discovery-engine.js +298 -0
  63. package/lib/doctor/hook-installer.js +83 -0
  64. package/lib/doctor/usage-tracker.js +87 -0
  65. package/lib/engine/ai-features.js +253 -0
  66. package/lib/engine/auditor.js +103 -0
  67. package/lib/engine/bm25-index.js +178 -0
  68. package/lib/engine/capture.js +120 -0
  69. package/lib/engine/corrections.js +198 -0
  70. package/lib/engine/doctor.js +195 -0
  71. package/lib/engine/graph-injector.js +137 -0
  72. package/lib/engine/graph.js +161 -0
  73. package/lib/engine/handoff.js +405 -0
  74. package/lib/engine/indexer.js +242 -0
  75. package/lib/engine/parser.js +53 -0
  76. package/lib/engine/query-expander.js +42 -0
  77. package/lib/engine/reranker.js +40 -0
  78. package/lib/engine/rrf.js +59 -0
  79. package/lib/engine/scanner.js +151 -0
  80. package/lib/engine/searcher.js +139 -0
  81. package/lib/engine/session-coordinator.js +306 -0
  82. package/lib/engine/session-manager.js +429 -0
  83. package/lib/engine/synthesizer.js +70 -0
  84. package/lib/installer.js +70 -0
  85. package/lib/instinct-block.js +33 -0
  86. package/lib/mcp-config-writer.js +88 -0
  87. package/lib/paths.js +57 -0
  88. package/lib/profiles/design.md +19 -0
  89. package/lib/profiles/general.md +16 -0
  90. package/lib/profiles/research-analysis.md +22 -0
  91. package/lib/profiles/software-development.md +23 -0
  92. package/lib/profiles/writing-content.md +19 -0
  93. package/lib/project-initializer.js +916 -0
  94. package/lib/registry/skills.js +102 -0
  95. package/lib/registry-searcher.js +99 -0
  96. package/lib/rules/rules-manager.js +169 -0
  97. package/lib/skill-fetcher.js +333 -0
  98. package/lib/well-known-builder.js +70 -0
  99. package/lib/wizard/index.js +404 -0
  100. package/lib/wizard/integration-detector.js +41 -0
  101. package/lib/wizard/project-detector.js +100 -0
  102. package/lib/wizard/prompt.js +156 -0
  103. package/lib/wizard/registry-embeddings.js +107 -0
  104. package/lib/wizard/skill-recommender.js +69 -0
  105. package/llms-full.txt +254 -0
  106. package/llms.txt +70 -0
  107. package/package.json +45 -0
  108. package/research-reports/2026-04-01-current-architecture.md +160 -0
  109. package/research-reports/IDEAS.md +93 -0
  110. package/rules/common/clean-code.md +42 -0
  111. package/rules/java/effective-java.md +42 -0
  112. package/rules/kotlin/effective-kotlin.md +37 -0
  113. package/rules/python/effective-python.md +38 -0
  114. package/rules/rust/rust.md +37 -0
  115. package/rules/typescript/effective-typescript.md +42 -0
  116. package/scripts/gen-llms-full.mjs +36 -0
  117. package/scripts/gen-og.mjs +142 -0
  118. package/scripts/validate-frontmatter.js +25 -0
  119. package/skills/animation-at-work/SKILL.md +270 -0
  120. package/skills/animation-at-work/assets/example_asset.txt +1 -0
  121. package/skills/animation-at-work/evals/evals.json +44 -0
  122. package/skills/animation-at-work/evals/results.json +13 -0
  123. package/skills/animation-at-work/examples/after.md +64 -0
  124. package/skills/animation-at-work/examples/before.md +35 -0
  125. package/skills/animation-at-work/references/api_reference.md +369 -0
  126. package/skills/animation-at-work/references/review-checklist.md +79 -0
  127. package/skills/animation-at-work/scripts/audit_animations.py +295 -0
  128. package/skills/animation-at-work/scripts/example.py +1 -0
  129. package/skills/clean-code-reviewer/SKILL.md +444 -0
  130. package/skills/clean-code-reviewer/audit.json +35 -0
  131. package/skills/clean-code-reviewer/evals/evals.json +185 -0
  132. package/skills/clean-code-reviewer/evals/results.json +13 -0
  133. package/skills/clean-code-reviewer/examples/after.md +48 -0
  134. package/skills/clean-code-reviewer/examples/before.md +33 -0
  135. package/skills/clean-code-reviewer/references/api_reference.md +158 -0
  136. package/skills/clean-code-reviewer/references/practices-catalog.md +282 -0
  137. package/skills/clean-code-reviewer/references/review-checklist.md +254 -0
  138. package/skills/clean-code-reviewer/scripts/pre-review.py +206 -0
  139. package/skills/data-intensive-patterns/SKILL.md +267 -0
  140. package/skills/data-intensive-patterns/assets/example_asset.txt +1 -0
  141. package/skills/data-intensive-patterns/evals/evals.json +54 -0
  142. package/skills/data-intensive-patterns/evals/results.json +13 -0
  143. package/skills/data-intensive-patterns/examples/after.md +61 -0
  144. package/skills/data-intensive-patterns/examples/before.md +38 -0
  145. package/skills/data-intensive-patterns/references/api_reference.md +34 -0
  146. package/skills/data-intensive-patterns/references/patterns-catalog.md +551 -0
  147. package/skills/data-intensive-patterns/references/review-checklist.md +193 -0
  148. package/skills/data-intensive-patterns/scripts/adr.py +213 -0
  149. package/skills/data-intensive-patterns/scripts/example.py +1 -0
  150. package/skills/data-pipelines/SKILL.md +259 -0
  151. package/skills/data-pipelines/assets/example_asset.txt +1 -0
  152. package/skills/data-pipelines/evals/evals.json +45 -0
  153. package/skills/data-pipelines/evals/results.json +13 -0
  154. package/skills/data-pipelines/examples/after.md +97 -0
  155. package/skills/data-pipelines/examples/before.md +37 -0
  156. package/skills/data-pipelines/references/api_reference.md +301 -0
  157. package/skills/data-pipelines/references/review-checklist.md +181 -0
  158. package/skills/data-pipelines/scripts/example.py +1 -0
  159. package/skills/data-pipelines/scripts/new_pipeline.py +444 -0
  160. package/skills/design-patterns/SKILL.md +271 -0
  161. package/skills/design-patterns/assets/example_asset.txt +1 -0
  162. package/skills/design-patterns/evals/evals.json +46 -0
  163. package/skills/design-patterns/evals/results.json +13 -0
  164. package/skills/design-patterns/examples/after.md +52 -0
  165. package/skills/design-patterns/examples/before.md +29 -0
  166. package/skills/design-patterns/references/api_reference.md +1 -0
  167. package/skills/design-patterns/references/patterns-catalog.md +726 -0
  168. package/skills/design-patterns/references/review-checklist.md +173 -0
  169. package/skills/design-patterns/scripts/example.py +1 -0
  170. package/skills/design-patterns/scripts/scaffold.py +807 -0
  171. package/skills/domain-driven-design/SKILL.md +142 -0
  172. package/skills/domain-driven-design/assets/example_asset.txt +1 -0
  173. package/skills/domain-driven-design/evals/evals.json +48 -0
  174. package/skills/domain-driven-design/evals/results.json +13 -0
  175. package/skills/domain-driven-design/examples/after.md +80 -0
  176. package/skills/domain-driven-design/examples/before.md +43 -0
  177. package/skills/domain-driven-design/references/api_reference.md +1 -0
  178. package/skills/domain-driven-design/references/patterns-catalog.md +545 -0
  179. package/skills/domain-driven-design/references/review-checklist.md +158 -0
  180. package/skills/domain-driven-design/scripts/example.py +1 -0
  181. package/skills/domain-driven-design/scripts/scaffold.py +421 -0
  182. package/skills/effective-java/SKILL.md +227 -0
  183. package/skills/effective-java/assets/example_asset.txt +1 -0
  184. package/skills/effective-java/evals/evals.json +46 -0
  185. package/skills/effective-java/evals/results.json +13 -0
  186. package/skills/effective-java/examples/after.md +83 -0
  187. package/skills/effective-java/examples/before.md +37 -0
  188. package/skills/effective-java/references/api_reference.md +1 -0
  189. package/skills/effective-java/references/items-catalog.md +955 -0
  190. package/skills/effective-java/references/review-checklist.md +216 -0
  191. package/skills/effective-java/scripts/checkstyle_setup.py +211 -0
  192. package/skills/effective-java/scripts/example.py +1 -0
  193. package/skills/effective-kotlin/SKILL.md +271 -0
  194. package/skills/effective-kotlin/assets/example_asset.txt +1 -0
  195. package/skills/effective-kotlin/audit.json +29 -0
  196. package/skills/effective-kotlin/evals/evals.json +45 -0
  197. package/skills/effective-kotlin/evals/results.json +13 -0
  198. package/skills/effective-kotlin/examples/after.md +36 -0
  199. package/skills/effective-kotlin/examples/before.md +38 -0
  200. package/skills/effective-kotlin/references/api_reference.md +1 -0
  201. package/skills/effective-kotlin/references/practices-catalog.md +1228 -0
  202. package/skills/effective-kotlin/references/review-checklist.md +126 -0
  203. package/skills/effective-kotlin/scripts/example.py +1 -0
  204. package/skills/effective-python/SKILL.md +441 -0
  205. package/skills/effective-python/evals/evals.json +44 -0
  206. package/skills/effective-python/evals/results.json +13 -0
  207. package/skills/effective-python/examples/after.md +56 -0
  208. package/skills/effective-python/examples/before.md +40 -0
  209. package/skills/effective-python/ref-01-pythonic-thinking.md +202 -0
  210. package/skills/effective-python/ref-02-lists-and-dicts.md +146 -0
  211. package/skills/effective-python/ref-03-functions.md +186 -0
  212. package/skills/effective-python/ref-04-comprehensions-generators.md +211 -0
  213. package/skills/effective-python/ref-05-classes-interfaces.md +188 -0
  214. package/skills/effective-python/ref-06-metaclasses-attributes.md +209 -0
  215. package/skills/effective-python/ref-07-concurrency.md +213 -0
  216. package/skills/effective-python/ref-08-robustness-performance.md +248 -0
  217. package/skills/effective-python/ref-09-testing-debugging.md +253 -0
  218. package/skills/effective-python/ref-10-collaboration.md +175 -0
  219. package/skills/effective-python/references/api_reference.md +218 -0
  220. package/skills/effective-python/references/practices-catalog.md +483 -0
  221. package/skills/effective-python/references/review-checklist.md +190 -0
  222. package/skills/effective-python/scripts/lint.py +173 -0
  223. package/skills/effective-typescript/SKILL.md +262 -0
  224. package/skills/effective-typescript/audit.json +29 -0
  225. package/skills/effective-typescript/evals/evals.json +37 -0
  226. package/skills/effective-typescript/evals/results.json +13 -0
  227. package/skills/effective-typescript/examples/after.md +70 -0
  228. package/skills/effective-typescript/examples/before.md +47 -0
  229. package/skills/effective-typescript/references/api_reference.md +118 -0
  230. package/skills/effective-typescript/references/practices-catalog.md +371 -0
  231. package/skills/effective-typescript/scripts/review.py +169 -0
  232. package/skills/kotlin-in-action/SKILL.md +261 -0
  233. package/skills/kotlin-in-action/assets/example_asset.txt +1 -0
  234. package/skills/kotlin-in-action/evals/evals.json +43 -0
  235. package/skills/kotlin-in-action/evals/results.json +13 -0
  236. package/skills/kotlin-in-action/examples/after.md +53 -0
  237. package/skills/kotlin-in-action/examples/before.md +39 -0
  238. package/skills/kotlin-in-action/references/api_reference.md +1 -0
  239. package/skills/kotlin-in-action/references/practices-catalog.md +436 -0
  240. package/skills/kotlin-in-action/references/review-checklist.md +204 -0
  241. package/skills/kotlin-in-action/scripts/example.py +1 -0
  242. package/skills/kotlin-in-action/scripts/setup_detekt.py +224 -0
  243. package/skills/lean-startup/SKILL.md +160 -0
  244. package/skills/lean-startup/assets/example_asset.txt +1 -0
  245. package/skills/lean-startup/evals/evals.json +43 -0
  246. package/skills/lean-startup/evals/results.json +13 -0
  247. package/skills/lean-startup/examples/after.md +80 -0
  248. package/skills/lean-startup/examples/before.md +34 -0
  249. package/skills/lean-startup/references/api_reference.md +319 -0
  250. package/skills/lean-startup/references/review-checklist.md +137 -0
  251. package/skills/lean-startup/scripts/example.py +1 -0
  252. package/skills/lean-startup/scripts/new_experiment.py +286 -0
  253. package/skills/microservices-patterns/SKILL.md +384 -0
  254. package/skills/microservices-patterns/evals/evals.json +45 -0
  255. package/skills/microservices-patterns/evals/results.json +13 -0
  256. package/skills/microservices-patterns/examples/after.md +69 -0
  257. package/skills/microservices-patterns/examples/before.md +40 -0
  258. package/skills/microservices-patterns/references/patterns-catalog.md +391 -0
  259. package/skills/microservices-patterns/references/review-checklist.md +169 -0
  260. package/skills/microservices-patterns/scripts/new_service.py +583 -0
  261. package/skills/programming-with-rust/SKILL.md +209 -0
  262. package/skills/programming-with-rust/evals/evals.json +37 -0
  263. package/skills/programming-with-rust/evals/results.json +13 -0
  264. package/skills/programming-with-rust/examples/after.md +107 -0
  265. package/skills/programming-with-rust/examples/before.md +59 -0
  266. package/skills/programming-with-rust/references/api_reference.md +152 -0
  267. package/skills/programming-with-rust/references/practices-catalog.md +335 -0
  268. package/skills/programming-with-rust/scripts/review.py +142 -0
  269. package/skills/refactoring-ui/SKILL.md +362 -0
  270. package/skills/refactoring-ui/assets/example_asset.txt +1 -0
  271. package/skills/refactoring-ui/evals/evals.json +45 -0
  272. package/skills/refactoring-ui/evals/results.json +13 -0
  273. package/skills/refactoring-ui/examples/after.md +85 -0
  274. package/skills/refactoring-ui/examples/before.md +58 -0
  275. package/skills/refactoring-ui/references/api_reference.md +355 -0
  276. package/skills/refactoring-ui/references/review-checklist.md +114 -0
  277. package/skills/refactoring-ui/scripts/audit_css.py +250 -0
  278. package/skills/refactoring-ui/scripts/example.py +1 -0
  279. package/skills/rust-in-action/SKILL.md +350 -0
  280. package/skills/rust-in-action/evals/evals.json +38 -0
  281. package/skills/rust-in-action/evals/results.json +13 -0
  282. package/skills/rust-in-action/examples/after.md +156 -0
  283. package/skills/rust-in-action/examples/before.md +56 -0
  284. package/skills/rust-in-action/references/practices-catalog.md +346 -0
  285. package/skills/rust-in-action/scripts/review.py +147 -0
  286. package/skills/skill-router/SKILL.md +186 -0
  287. package/skills/skill-router/evals/evals.json +38 -0
  288. package/skills/skill-router/evals/results.json +13 -0
  289. package/skills/skill-router/examples/after.md +63 -0
  290. package/skills/skill-router/examples/before.md +39 -0
  291. package/skills/skill-router/references/api_reference.md +24 -0
  292. package/skills/skill-router/references/routing-heuristics.md +89 -0
  293. package/skills/skill-router/references/skill-catalog.md +174 -0
  294. package/skills/skill-router/scripts/route.py +266 -0
  295. package/skills/spring-boot-in-action/SKILL.md +340 -0
  296. package/skills/spring-boot-in-action/evals/evals.json +39 -0
  297. package/skills/spring-boot-in-action/evals/results.json +13 -0
  298. package/skills/spring-boot-in-action/examples/after.md +185 -0
  299. package/skills/spring-boot-in-action/examples/before.md +84 -0
  300. package/skills/spring-boot-in-action/references/practices-catalog.md +403 -0
  301. package/skills/spring-boot-in-action/scripts/review.py +184 -0
  302. package/skills/storytelling-with-data/SKILL.md +241 -0
  303. package/skills/storytelling-with-data/assets/example_asset.txt +1 -0
  304. package/skills/storytelling-with-data/evals/evals.json +47 -0
  305. package/skills/storytelling-with-data/evals/results.json +13 -0
  306. package/skills/storytelling-with-data/examples/after.md +50 -0
  307. package/skills/storytelling-with-data/examples/before.md +33 -0
  308. package/skills/storytelling-with-data/references/api_reference.md +379 -0
  309. package/skills/storytelling-with-data/references/review-checklist.md +111 -0
  310. package/skills/storytelling-with-data/scripts/chart_review.py +301 -0
  311. package/skills/storytelling-with-data/scripts/example.py +1 -0
  312. package/skills/system-design-interview/SKILL.md +233 -0
  313. package/skills/system-design-interview/assets/example_asset.txt +1 -0
  314. package/skills/system-design-interview/evals/evals.json +46 -0
  315. package/skills/system-design-interview/evals/results.json +13 -0
  316. package/skills/system-design-interview/examples/after.md +94 -0
  317. package/skills/system-design-interview/examples/before.md +27 -0
  318. package/skills/system-design-interview/references/api_reference.md +582 -0
  319. package/skills/system-design-interview/references/review-checklist.md +201 -0
  320. package/skills/system-design-interview/scripts/example.py +1 -0
  321. package/skills/system-design-interview/scripts/new_design.py +421 -0
  322. package/skills/using-asyncio-python/SKILL.md +290 -0
  323. package/skills/using-asyncio-python/assets/example_asset.txt +1 -0
  324. package/skills/using-asyncio-python/evals/evals.json +43 -0
  325. package/skills/using-asyncio-python/evals/results.json +13 -0
  326. package/skills/using-asyncio-python/examples/after.md +68 -0
  327. package/skills/using-asyncio-python/examples/before.md +39 -0
  328. package/skills/using-asyncio-python/references/api_reference.md +267 -0
  329. package/skills/using-asyncio-python/references/review-checklist.md +149 -0
  330. package/skills/using-asyncio-python/scripts/check_blocking.py +270 -0
  331. package/skills/using-asyncio-python/scripts/example.py +1 -0
  332. package/skills/web-scraping-python/SKILL.md +280 -0
  333. package/skills/web-scraping-python/assets/example_asset.txt +1 -0
  334. package/skills/web-scraping-python/evals/evals.json +46 -0
  335. package/skills/web-scraping-python/evals/results.json +13 -0
  336. package/skills/web-scraping-python/examples/after.md +109 -0
  337. package/skills/web-scraping-python/examples/before.md +40 -0
  338. package/skills/web-scraping-python/references/api_reference.md +393 -0
  339. package/skills/web-scraping-python/references/review-checklist.md +163 -0
  340. package/skills/web-scraping-python/scripts/example.py +1 -0
  341. package/skills/web-scraping-python/scripts/new_scraper.py +231 -0
  342. package/skills/writing-plans/audit.json +34 -0
  343. package/tests/agent-detector.test.js +83 -0
  344. package/tests/corrections.test.js +245 -0
  345. package/tests/doctor/hook-installer.test.js +72 -0
  346. package/tests/doctor/usage-tracker.test.js +140 -0
  347. package/tests/engine/benchmark-eval.test.js +31 -0
  348. package/tests/engine/bm25-index.test.js +85 -0
  349. package/tests/engine/capture-command.test.js +35 -0
  350. package/tests/engine/capture.test.js +17 -0
  351. package/tests/engine/graph-augmented-search.test.js +107 -0
  352. package/tests/engine/graph-injector.test.js +44 -0
  353. package/tests/engine/graph.test.js +216 -0
  354. package/tests/engine/hybrid-searcher.test.js +74 -0
  355. package/tests/engine/indexer-bm25.test.js +37 -0
  356. package/tests/engine/mcp-tools.test.js +73 -0
  357. package/tests/engine/project-initializer-mcp.test.js +99 -0
  358. package/tests/engine/query-expander.test.js +36 -0
  359. package/tests/engine/reranker.test.js +51 -0
  360. package/tests/engine/rrf.test.js +49 -0
  361. package/tests/engine/srag-prefix.test.js +47 -0
  362. package/tests/instinct-block.test.js +23 -0
  363. package/tests/mcp-config-writer.test.js +60 -0
  364. package/tests/project-initializer-new-agents.test.js +48 -0
  365. package/tests/rules/rules-manager.test.js +230 -0
  366. package/tests/well-known-builder.test.js +40 -0
  367. package/tests/wizard/integration-detector.test.js +31 -0
  368. package/tests/wizard/project-detector.test.js +51 -0
  369. package/tests/wizard/prompt-session.test.js +61 -0
  370. package/tests/wizard/prompt.test.js +16 -0
  371. package/tests/wizard/registry-embeddings.test.js +35 -0
  372. package/tests/wizard/skill-recommender.test.js +34 -0
  373. package/tests/wizard/slot-count.test.js +25 -0
  374. package/vercel.json +21 -0
@@ -0,0 +1,1616 @@
1
+ {
2
+ "version": 1,
3
+ "description": "BookLib community skill registry — verified granular skills from popular repositories (all URLs confirmed 200).",
4
+ "skills": [
5
+ {
6
+ "name": "clean-code-typescript",
7
+ "description": "Clean Code principles adapted for TypeScript — naming, functions, classes, SOLID, testing.",
8
+ "stars": 9700,
9
+ "specificity": 6,
10
+ "topic": "typescript-style",
11
+ "languages": [
12
+ "typescript"
13
+ ],
14
+ "triggers": {
15
+ "extensions": [
16
+ ".ts",
17
+ ".tsx"
18
+ ],
19
+ "keywords": [
20
+ "clean code",
21
+ "typescript",
22
+ "solid",
23
+ "refactor",
24
+ "naming"
25
+ ]
26
+ },
27
+ "source": {
28
+ "type": "github",
29
+ "url": "https://raw.githubusercontent.com/labs42io/clean-code-typescript/master/README.md"
30
+ },
31
+ "trusted": true,
32
+ "roles": [
33
+ "coder",
34
+ "reviewer"
35
+ ]
36
+ },
37
+ {
38
+ "name": "airbnb-javascript",
39
+ "description": "Airbnb JavaScript style guide — the most widely adopted JS conventions (148k stars).",
40
+ "stars": 148000,
41
+ "specificity": 7,
42
+ "topic": "javascript-style",
43
+ "languages": [
44
+ "javascript"
45
+ ],
46
+ "triggers": {
47
+ "extensions": [
48
+ ".js",
49
+ ".mjs",
50
+ ".jsx"
51
+ ],
52
+ "keywords": [
53
+ "javascript",
54
+ "style guide",
55
+ "eslint",
56
+ "airbnb",
57
+ "conventions"
58
+ ]
59
+ },
60
+ "source": {
61
+ "type": "github",
62
+ "url": "https://raw.githubusercontent.com/airbnb/javascript/master/README.md"
63
+ },
64
+ "trusted": true,
65
+ "roles": [
66
+ "coder",
67
+ "reviewer"
68
+ ]
69
+ },
70
+ {
71
+ "name": "react-typescript-cheatsheet",
72
+ "description": "React + TypeScript patterns — hooks, props, generics, forms, events, context.",
73
+ "stars": 47000,
74
+ "specificity": 7,
75
+ "topic": "react-typescript",
76
+ "languages": [
77
+ "typescript",
78
+ "javascript"
79
+ ],
80
+ "triggers": {
81
+ "extensions": [
82
+ ".tsx",
83
+ ".ts"
84
+ ],
85
+ "keywords": [
86
+ "react",
87
+ "typescript",
88
+ "hooks",
89
+ "props",
90
+ "jsx",
91
+ "component"
92
+ ]
93
+ },
94
+ "source": {
95
+ "type": "github",
96
+ "url": "https://raw.githubusercontent.com/typescript-cheatsheets/react/main/README.md"
97
+ },
98
+ "trusted": true,
99
+ "roles": [
100
+ "coder",
101
+ "frontend"
102
+ ]
103
+ },
104
+ {
105
+ "name": "bulletproof-react-structure",
106
+ "description": "React project structure — feature-based folders, separation of concerns, scalable architecture.",
107
+ "stars": 35000,
108
+ "specificity": 6,
109
+ "topic": "react-architecture",
110
+ "languages": [
111
+ "typescript",
112
+ "javascript"
113
+ ],
114
+ "triggers": {
115
+ "extensions": [
116
+ ".tsx",
117
+ ".ts"
118
+ ],
119
+ "keywords": [
120
+ "react",
121
+ "project structure",
122
+ "folder",
123
+ "architecture",
124
+ "feature"
125
+ ]
126
+ },
127
+ "source": {
128
+ "type": "github",
129
+ "url": "https://raw.githubusercontent.com/alan2207/bulletproof-react/master/docs/project-structure.md"
130
+ },
131
+ "trusted": true,
132
+ "roles": [
133
+ "architect",
134
+ "frontend"
135
+ ]
136
+ },
137
+ {
138
+ "name": "bulletproof-react-components",
139
+ "description": "React component patterns — co-location, styled-components, styling conventions.",
140
+ "stars": 35000,
141
+ "specificity": 7,
142
+ "topic": "react-components",
143
+ "languages": [
144
+ "typescript",
145
+ "javascript"
146
+ ],
147
+ "triggers": {
148
+ "extensions": [
149
+ ".tsx",
150
+ ".jsx"
151
+ ],
152
+ "keywords": [
153
+ "react component",
154
+ "styling",
155
+ "css modules",
156
+ "styled components",
157
+ "co-location"
158
+ ]
159
+ },
160
+ "source": {
161
+ "type": "github",
162
+ "url": "https://raw.githubusercontent.com/alan2207/bulletproof-react/master/docs/components-and-styling.md"
163
+ },
164
+ "trusted": true,
165
+ "roles": [
166
+ "coder",
167
+ "frontend"
168
+ ]
169
+ },
170
+ {
171
+ "name": "bulletproof-react-state",
172
+ "description": "React state management — local vs global, when to use Zustand/Jotai/React Query.",
173
+ "stars": 35000,
174
+ "specificity": 7,
175
+ "topic": "react-state",
176
+ "languages": [
177
+ "typescript",
178
+ "javascript"
179
+ ],
180
+ "triggers": {
181
+ "extensions": [
182
+ ".tsx",
183
+ ".ts"
184
+ ],
185
+ "keywords": [
186
+ "state management",
187
+ "zustand",
188
+ "redux",
189
+ "react query",
190
+ "global state",
191
+ "context"
192
+ ]
193
+ },
194
+ "source": {
195
+ "type": "github",
196
+ "url": "https://raw.githubusercontent.com/alan2207/bulletproof-react/master/docs/state-management.md"
197
+ },
198
+ "trusted": true,
199
+ "roles": [
200
+ "coder",
201
+ "frontend"
202
+ ]
203
+ },
204
+ {
205
+ "name": "bulletproof-react-testing",
206
+ "description": "React testing strategy — unit, integration, e2e, what to test and what not to.",
207
+ "stars": 35000,
208
+ "specificity": 7,
209
+ "topic": "react-testing",
210
+ "languages": [
211
+ "typescript",
212
+ "javascript"
213
+ ],
214
+ "triggers": {
215
+ "extensions": [
216
+ ".tsx",
217
+ ".ts",
218
+ ".test.ts",
219
+ ".spec.ts"
220
+ ],
221
+ "keywords": [
222
+ "react testing",
223
+ "jest",
224
+ "vitest",
225
+ "testing library",
226
+ "e2e",
227
+ "cypress"
228
+ ]
229
+ },
230
+ "source": {
231
+ "type": "github",
232
+ "url": "https://raw.githubusercontent.com/alan2207/bulletproof-react/master/docs/testing.md"
233
+ },
234
+ "trusted": true,
235
+ "roles": [
236
+ "tester",
237
+ "frontend"
238
+ ]
239
+ },
240
+ {
241
+ "name": "bulletproof-react-performance",
242
+ "description": "React performance patterns — code splitting, lazy loading, memoization, bundle size.",
243
+ "stars": 35000,
244
+ "specificity": 8,
245
+ "topic": "react-performance",
246
+ "languages": [
247
+ "typescript",
248
+ "javascript"
249
+ ],
250
+ "triggers": {
251
+ "extensions": [
252
+ ".tsx",
253
+ ".ts"
254
+ ],
255
+ "keywords": [
256
+ "react performance",
257
+ "code splitting",
258
+ "lazy loading",
259
+ "memoization",
260
+ "usememo",
261
+ "bundle"
262
+ ]
263
+ },
264
+ "source": {
265
+ "type": "github",
266
+ "url": "https://raw.githubusercontent.com/alan2207/bulletproof-react/master/docs/performance.md"
267
+ },
268
+ "trusted": true,
269
+ "roles": [
270
+ "optimizer",
271
+ "frontend"
272
+ ]
273
+ },
274
+ {
275
+ "name": "bulletproof-react-security",
276
+ "description": "React security — XSS prevention, dangerouslySetInnerHTML, CSP, dependency auditing.",
277
+ "stars": 35000,
278
+ "specificity": 6,
279
+ "topic": "xss-defense",
280
+ "languages": [
281
+ "typescript",
282
+ "javascript"
283
+ ],
284
+ "triggers": {
285
+ "extensions": [
286
+ ".tsx",
287
+ ".ts"
288
+ ],
289
+ "keywords": [
290
+ "react security",
291
+ "xss",
292
+ "csp",
293
+ "sanitize",
294
+ "injection",
295
+ "dangerouslysetinnerhtml"
296
+ ]
297
+ },
298
+ "source": {
299
+ "type": "github",
300
+ "url": "https://raw.githubusercontent.com/alan2207/bulletproof-react/master/docs/security.md"
301
+ },
302
+ "trusted": true,
303
+ "roles": [
304
+ "security",
305
+ "frontend"
306
+ ]
307
+ },
308
+ {
309
+ "name": "js-testing-best-practices",
310
+ "description": "JavaScript & Node.js testing best practices — AAA pattern, test isolation, mocking, CI.",
311
+ "stars": 24600,
312
+ "specificity": 6,
313
+ "topic": "testing",
314
+ "languages": [
315
+ "javascript",
316
+ "typescript"
317
+ ],
318
+ "triggers": {
319
+ "extensions": [
320
+ ".test.js",
321
+ ".spec.js",
322
+ ".test.ts",
323
+ ".spec.ts"
324
+ ],
325
+ "keywords": [
326
+ "testing",
327
+ "unit test",
328
+ "test isolation",
329
+ "mock",
330
+ "jest",
331
+ "vitest",
332
+ "aaa"
333
+ ]
334
+ },
335
+ "source": {
336
+ "type": "github",
337
+ "url": "https://raw.githubusercontent.com/goldbergyoni/javascript-testing-best-practices/master/readme.md"
338
+ },
339
+ "trusted": true,
340
+ "roles": [
341
+ "tester"
342
+ ]
343
+ },
344
+ {
345
+ "name": "node-testing-aaa",
346
+ "description": "Node.js test structure — AAA pattern (Arrange, Act, Assert) with concrete examples.",
347
+ "stars": 105000,
348
+ "specificity": 8,
349
+ "topic": "test-structure",
350
+ "languages": [
351
+ "javascript",
352
+ "typescript"
353
+ ],
354
+ "triggers": {
355
+ "extensions": [
356
+ ".test.js",
357
+ ".spec.js",
358
+ ".test.ts"
359
+ ],
360
+ "keywords": [
361
+ "aaa pattern",
362
+ "arrange act assert",
363
+ "test structure",
364
+ "unit test"
365
+ ]
366
+ },
367
+ "source": {
368
+ "type": "github",
369
+ "url": "https://raw.githubusercontent.com/goldbergyoni/nodebestpractices/master/sections/testingandquality/aaa.md"
370
+ },
371
+ "trusted": true,
372
+ "roles": [
373
+ "tester"
374
+ ]
375
+ },
376
+ {
377
+ "name": "node-testing-fixtures",
378
+ "description": "Avoid global test fixtures — use factory functions, keep tests isolated.",
379
+ "stars": 105000,
380
+ "specificity": 8,
381
+ "topic": "test-isolation",
382
+ "languages": [
383
+ "javascript",
384
+ "typescript"
385
+ ],
386
+ "triggers": {
387
+ "extensions": [
388
+ ".test.js",
389
+ ".test.ts"
390
+ ],
391
+ "keywords": [
392
+ "test fixtures",
393
+ "global fixtures",
394
+ "test isolation",
395
+ "factory",
396
+ "beforeeach"
397
+ ]
398
+ },
399
+ "source": {
400
+ "type": "github",
401
+ "url": "https://raw.githubusercontent.com/goldbergyoni/nodebestpractices/master/sections/testingandquality/avoid-global-test-fixture.md"
402
+ },
403
+ "trusted": true,
404
+ "roles": [
405
+ "tester"
406
+ ]
407
+ },
408
+ {
409
+ "name": "node-error-types",
410
+ "description": "Operational vs programmer errors in Node.js — when to crash vs recover.",
411
+ "stars": 105000,
412
+ "specificity": 8,
413
+ "topic": "error-classification",
414
+ "languages": [
415
+ "javascript",
416
+ "typescript"
417
+ ],
418
+ "triggers": {
419
+ "extensions": [
420
+ ".js",
421
+ ".ts"
422
+ ],
423
+ "keywords": [
424
+ "operational error",
425
+ "programmer error",
426
+ "error types",
427
+ "crash",
428
+ "process exit",
429
+ "node error"
430
+ ]
431
+ },
432
+ "source": {
433
+ "type": "github",
434
+ "url": "https://raw.githubusercontent.com/goldbergyoni/nodebestpractices/master/sections/errorhandling/operationalvsprogrammererror.md"
435
+ },
436
+ "trusted": true,
437
+ "roles": [
438
+ "coder",
439
+ "reviewer"
440
+ ]
441
+ },
442
+ {
443
+ "name": "node-error-handling",
444
+ "description": "Async error handling in Node.js — async/await, unhandled rejections, process crash prevention.",
445
+ "stars": 105000,
446
+ "specificity": 7,
447
+ "topic": "async-error-handling",
448
+ "languages": [
449
+ "javascript",
450
+ "typescript"
451
+ ],
452
+ "triggers": {
453
+ "extensions": [
454
+ ".js",
455
+ ".mjs",
456
+ ".ts"
457
+ ],
458
+ "keywords": [
459
+ "error handling",
460
+ "async error",
461
+ "unhandled rejection",
462
+ "try catch",
463
+ "node error"
464
+ ]
465
+ },
466
+ "source": {
467
+ "type": "github",
468
+ "url": "https://raw.githubusercontent.com/goldbergyoni/nodebestpractices/master/sections/errorhandling/documentingusingswagger.md"
469
+ },
470
+ "trusted": true,
471
+ "roles": [
472
+ "coder"
473
+ ]
474
+ },
475
+ {
476
+ "name": "node-security-rate-limiting",
477
+ "description": "Rate limiting and brute force protection in Node.js APIs.",
478
+ "stars": 105000,
479
+ "specificity": 8,
480
+ "topic": "rate-limiting",
481
+ "languages": [
482
+ "javascript",
483
+ "typescript"
484
+ ],
485
+ "triggers": {
486
+ "extensions": [
487
+ ".js",
488
+ ".ts"
489
+ ],
490
+ "keywords": [
491
+ "rate limit",
492
+ "brute force",
493
+ "ddos",
494
+ "throttle",
495
+ "api protection"
496
+ ]
497
+ },
498
+ "source": {
499
+ "type": "github",
500
+ "url": "https://raw.githubusercontent.com/goldbergyoni/nodebestpractices/master/sections/security/limitrequests.md"
501
+ },
502
+ "trusted": true,
503
+ "roles": [
504
+ "security",
505
+ "devops"
506
+ ]
507
+ },
508
+ {
509
+ "name": "node-security-secrets",
510
+ "description": "Secret and config management in Node.js — env vars, vault, never hardcode.",
511
+ "stars": 105000,
512
+ "specificity": 7,
513
+ "topic": "secret-management",
514
+ "languages": [
515
+ "javascript",
516
+ "typescript"
517
+ ],
518
+ "triggers": {
519
+ "extensions": [
520
+ ".js",
521
+ ".ts",
522
+ ".env"
523
+ ],
524
+ "keywords": [
525
+ "secrets",
526
+ "env vars",
527
+ "config",
528
+ "credentials",
529
+ "api key",
530
+ "dotenv"
531
+ ]
532
+ },
533
+ "source": {
534
+ "type": "github",
535
+ "url": "https://raw.githubusercontent.com/goldbergyoni/nodebestpractices/master/sections/security/secretmanagement.md"
536
+ },
537
+ "trusted": true,
538
+ "roles": [
539
+ "security",
540
+ "devops"
541
+ ]
542
+ },
543
+ {
544
+ "name": "node-security-headers",
545
+ "description": "Secure HTTP headers in Node.js — helmet, HSTS, CSP, X-Frame-Options.",
546
+ "stars": 105000,
547
+ "specificity": 8,
548
+ "topic": "http-security-headers",
549
+ "languages": [
550
+ "javascript",
551
+ "typescript"
552
+ ],
553
+ "triggers": {
554
+ "extensions": [
555
+ ".js",
556
+ ".ts"
557
+ ],
558
+ "keywords": [
559
+ "security headers",
560
+ "helmet",
561
+ "hsts",
562
+ "csp",
563
+ "x-frame",
564
+ "cors",
565
+ "http headers"
566
+ ]
567
+ },
568
+ "source": {
569
+ "type": "github",
570
+ "url": "https://raw.githubusercontent.com/goldbergyoni/nodebestpractices/master/sections/security/secureheaders.md"
571
+ },
572
+ "trusted": true,
573
+ "roles": [
574
+ "security",
575
+ "devops"
576
+ ]
577
+ },
578
+ {
579
+ "name": "node-security-validation",
580
+ "description": "Input validation in Node.js — joi, zod, sanitization, injection prevention.",
581
+ "stars": 105000,
582
+ "specificity": 5,
583
+ "topic": "input-sanitization",
584
+ "languages": [
585
+ "javascript",
586
+ "typescript"
587
+ ],
588
+ "triggers": {
589
+ "extensions": [
590
+ ".js",
591
+ ".ts"
592
+ ],
593
+ "keywords": [
594
+ "input validation",
595
+ "sanitization",
596
+ "joi",
597
+ "zod",
598
+ "injection",
599
+ "sql injection",
600
+ "xss"
601
+ ]
602
+ },
603
+ "source": {
604
+ "type": "github",
605
+ "url": "https://raw.githubusercontent.com/goldbergyoni/nodebestpractices/master/sections/security/validation.md"
606
+ },
607
+ "trusted": true,
608
+ "roles": [
609
+ "security",
610
+ "coder"
611
+ ]
612
+ },
613
+ {
614
+ "name": "node-docker-best-practices",
615
+ "description": "Docker best practices for Node.js — layer caching, non-root user, multi-stage builds.",
616
+ "stars": 105000,
617
+ "specificity": 7,
618
+ "topic": "docker",
619
+ "languages": [
620
+ "javascript",
621
+ "typescript"
622
+ ],
623
+ "triggers": {
624
+ "extensions": [],
625
+ "keywords": [
626
+ "docker",
627
+ "dockerfile",
628
+ "container",
629
+ "multi-stage",
630
+ "non-root",
631
+ "docker build"
632
+ ]
633
+ },
634
+ "source": {
635
+ "type": "github",
636
+ "url": "https://raw.githubusercontent.com/goldbergyoni/nodebestpractices/master/sections/docker/use-cache-for-shorter-build-time.md"
637
+ },
638
+ "trusted": true,
639
+ "roles": [
640
+ "devops"
641
+ ]
642
+ },
643
+ {
644
+ "name": "ddd-hexagonal",
645
+ "description": "Domain-Driven Design with Hexagonal Architecture — aggregates, value objects, ports, adapters.",
646
+ "stars": 14500,
647
+ "specificity": 8,
648
+ "topic": "ddd",
649
+ "languages": [
650
+ "typescript",
651
+ "javascript"
652
+ ],
653
+ "triggers": {
654
+ "extensions": [
655
+ ".ts",
656
+ ".java",
657
+ ".kt"
658
+ ],
659
+ "keywords": [
660
+ "ddd",
661
+ "domain driven",
662
+ "hexagonal",
663
+ "aggregate",
664
+ "value object",
665
+ "port",
666
+ "adapter",
667
+ "use case"
668
+ ]
669
+ },
670
+ "source": {
671
+ "type": "github",
672
+ "url": "https://raw.githubusercontent.com/Sairyss/domain-driven-hexagon/master/README.md"
673
+ },
674
+ "trusted": true,
675
+ "roles": [
676
+ "architect"
677
+ ]
678
+ },
679
+ {
680
+ "name": "system-design-fundamentals",
681
+ "description": "System design fundamentals — CAP theorem, consistency, scalability, databases, caching.",
682
+ "stars": 42500,
683
+ "specificity": 6,
684
+ "topic": "system-design",
685
+ "languages": [
686
+ "all"
687
+ ],
688
+ "triggers": {
689
+ "extensions": [],
690
+ "keywords": [
691
+ "system design",
692
+ "scalability",
693
+ "cap theorem",
694
+ "consistency",
695
+ "distributed",
696
+ "load balancer",
697
+ "caching"
698
+ ]
699
+ },
700
+ "source": {
701
+ "type": "github",
702
+ "url": "https://raw.githubusercontent.com/karanpratapsingh/system-design/main/README.md"
703
+ },
704
+ "trusted": true,
705
+ "roles": [
706
+ "architect"
707
+ ]
708
+ },
709
+ {
710
+ "name": "python-google-style",
711
+ "description": "Google Python style guide — naming, formatting, imports, docstrings, exceptions.",
712
+ "stars": 39000,
713
+ "specificity": 7,
714
+ "topic": "python-style",
715
+ "languages": [
716
+ "python"
717
+ ],
718
+ "triggers": {
719
+ "extensions": [
720
+ ".py"
721
+ ],
722
+ "keywords": [
723
+ "python style",
724
+ "google style",
725
+ "pep8",
726
+ "docstring",
727
+ "python conventions",
728
+ "pylint"
729
+ ]
730
+ },
731
+ "source": {
732
+ "type": "github",
733
+ "url": "https://raw.githubusercontent.com/google/styleguide/gh-pages/pyguide.md"
734
+ },
735
+ "trusted": true,
736
+ "roles": [
737
+ "coder",
738
+ "reviewer"
739
+ ]
740
+ },
741
+ {
742
+ "name": "api-design-rest",
743
+ "description": "Microsoft REST API Guidelines — versioning, errors, pagination, naming conventions.",
744
+ "stars": 23000,
745
+ "specificity": 7,
746
+ "topic": "rest-api-design",
747
+ "languages": [
748
+ "all"
749
+ ],
750
+ "triggers": {
751
+ "extensions": [
752
+ ".ts",
753
+ ".js",
754
+ ".py",
755
+ ".java"
756
+ ],
757
+ "keywords": [
758
+ "rest api",
759
+ "api design",
760
+ "endpoint",
761
+ "http method",
762
+ "status code",
763
+ "versioning",
764
+ "pagination"
765
+ ]
766
+ },
767
+ "source": {
768
+ "type": "github",
769
+ "url": "https://raw.githubusercontent.com/microsoft/api-guidelines/vNext/azure/Guidelines.md"
770
+ },
771
+ "trusted": true,
772
+ "roles": [
773
+ "architect",
774
+ "coder"
775
+ ]
776
+ },
777
+ {
778
+ "name": "naming-cheatsheet",
779
+ "description": "Naming things right — S-I-D, avoid context duplication, use opposites consistently.",
780
+ "stars": 14000,
781
+ "specificity": 5,
782
+ "topic": "naming",
783
+ "languages": [
784
+ "all"
785
+ ],
786
+ "triggers": {
787
+ "extensions": [
788
+ ".js",
789
+ ".ts",
790
+ ".py",
791
+ ".java",
792
+ ".kt"
793
+ ],
794
+ "keywords": [
795
+ "naming",
796
+ "variable names",
797
+ "identifier",
798
+ "s-i-d",
799
+ "naming convention"
800
+ ]
801
+ },
802
+ "source": {
803
+ "type": "github",
804
+ "url": "https://raw.githubusercontent.com/kettanaito/naming-cheatsheet/main/README.md"
805
+ },
806
+ "trusted": true,
807
+ "roles": [
808
+ "coder",
809
+ "reviewer"
810
+ ]
811
+ },
812
+ {
813
+ "name": "conventional-commits",
814
+ "description": "Conventional Commits — structured commit messages for changelogs and automation.",
815
+ "stars": 8700,
816
+ "specificity": 6,
817
+ "topic": "git-workflow",
818
+ "languages": [
819
+ "all"
820
+ ],
821
+ "triggers": {
822
+ "extensions": [],
823
+ "keywords": [
824
+ "commit",
825
+ "changelog",
826
+ "semantic versioning",
827
+ "git message",
828
+ "conventional"
829
+ ]
830
+ },
831
+ "source": {
832
+ "type": "github",
833
+ "url": "https://raw.githubusercontent.com/conventional-commits/conventionalcommits.org/master/content/v1.0.0/index.md"
834
+ },
835
+ "trusted": true,
836
+ "roles": [
837
+ "coder"
838
+ ]
839
+ },
840
+ {
841
+ "name": "system-design-primer",
842
+ "description": "System design primer — scalability, availability, consistency, load balancing, caching, databases, CDN, CAP theorem (280k stars).",
843
+ "stars": 340000,
844
+ "specificity": 8,
845
+ "topic": "system-design",
846
+ "languages": [
847
+ "all"
848
+ ],
849
+ "triggers": {
850
+ "extensions": [],
851
+ "keywords": [
852
+ "system design",
853
+ "scalability",
854
+ "availability",
855
+ "load balancing",
856
+ "caching",
857
+ "cdn",
858
+ "cap theorem",
859
+ "database",
860
+ "replication",
861
+ "sharding",
862
+ "microservices"
863
+ ]
864
+ },
865
+ "source": {
866
+ "type": "github",
867
+ "url": "https://raw.githubusercontent.com/donnemartin/system-design-primer/master/README.md"
868
+ },
869
+ "trusted": true,
870
+ "roles": [
871
+ "architect"
872
+ ]
873
+ },
874
+ {
875
+ "name": "system-design-twitter",
876
+ "description": "Design a Twitter-scale social feed — timeline generation, fan-out, tweet storage, search.",
877
+ "stars": 340000,
878
+ "specificity": 9,
879
+ "topic": "social-feed-design",
880
+ "languages": [
881
+ "all"
882
+ ],
883
+ "triggers": {
884
+ "extensions": [],
885
+ "keywords": [
886
+ "twitter design",
887
+ "social feed",
888
+ "fan-out",
889
+ "timeline",
890
+ "news feed",
891
+ "social graph"
892
+ ]
893
+ },
894
+ "source": {
895
+ "type": "github",
896
+ "url": "https://raw.githubusercontent.com/donnemartin/system-design-primer/master/solutions/system_design/twitter/README.md"
897
+ },
898
+ "trusted": true,
899
+ "roles": [
900
+ "architect"
901
+ ]
902
+ },
903
+ {
904
+ "name": "system-design-web-crawler",
905
+ "description": "Design a web crawler — politeness policies, URL dedup, distributed crawl, storage.",
906
+ "stars": 340000,
907
+ "specificity": 9,
908
+ "topic": "web-crawler-design",
909
+ "languages": [
910
+ "all"
911
+ ],
912
+ "triggers": {
913
+ "extensions": [],
914
+ "keywords": [
915
+ "web crawler",
916
+ "crawler design",
917
+ "url dedup",
918
+ "politeness",
919
+ "scraping",
920
+ "distributed crawl"
921
+ ]
922
+ },
923
+ "source": {
924
+ "type": "github",
925
+ "url": "https://raw.githubusercontent.com/donnemartin/system-design-primer/master/solutions/system_design/web_crawler/README.md"
926
+ },
927
+ "trusted": true,
928
+ "roles": [
929
+ "architect"
930
+ ]
931
+ },
932
+ {
933
+ "name": "system-design-scaling-aws",
934
+ "description": "Scaling an AWS-hosted app from startup to millions of users — step-by-step architecture evolution.",
935
+ "stars": 340000,
936
+ "specificity": 9,
937
+ "topic": "aws-scaling",
938
+ "languages": [
939
+ "all"
940
+ ],
941
+ "triggers": {
942
+ "extensions": [],
943
+ "keywords": [
944
+ "aws scaling",
945
+ "cloud architecture",
946
+ "scale startup",
947
+ "vertical scaling",
948
+ "horizontal scaling",
949
+ "rds",
950
+ "elasticache"
951
+ ]
952
+ },
953
+ "source": {
954
+ "type": "github",
955
+ "url": "https://raw.githubusercontent.com/donnemartin/system-design-primer/master/solutions/system_design/scaling_aws/README.md"
956
+ },
957
+ "trusted": true,
958
+ "roles": [
959
+ "architect",
960
+ "devops"
961
+ ]
962
+ },
963
+ {
964
+ "name": "owasp-sql-injection",
965
+ "description": "OWASP SQL Injection Prevention — parameterized queries, stored procedures, allow-lists, escaping.",
966
+ "stars": 31600,
967
+ "specificity": 9,
968
+ "topic": "sql-injection-defense",
969
+ "languages": [
970
+ "all"
971
+ ],
972
+ "triggers": {
973
+ "extensions": [
974
+ ".js",
975
+ ".ts",
976
+ ".py",
977
+ ".java",
978
+ ".php",
979
+ ".rb"
980
+ ],
981
+ "keywords": [
982
+ "sql injection",
983
+ "sqli",
984
+ "parameterized query",
985
+ "prepared statement",
986
+ "orm injection",
987
+ "database injection"
988
+ ]
989
+ },
990
+ "source": {
991
+ "type": "github",
992
+ "url": "https://raw.githubusercontent.com/OWASP/CheatSheetSeries/master/cheatsheets/SQL_Injection_Prevention_Cheat_Sheet.md"
993
+ },
994
+ "trusted": true,
995
+ "roles": [
996
+ "security"
997
+ ]
998
+ },
999
+ {
1000
+ "name": "owasp-xss-prevention",
1001
+ "description": "OWASP XSS Prevention — output encoding, CSP, safe sinks, dangerouslySetInnerHTML, trusted types.",
1002
+ "stars": 31600,
1003
+ "specificity": 9,
1004
+ "topic": "xss-defense",
1005
+ "languages": [
1006
+ "javascript",
1007
+ "typescript"
1008
+ ],
1009
+ "triggers": {
1010
+ "extensions": [
1011
+ ".js",
1012
+ ".ts",
1013
+ ".tsx",
1014
+ ".jsx",
1015
+ ".html"
1016
+ ],
1017
+ "keywords": [
1018
+ "xss",
1019
+ "cross site scripting",
1020
+ "output encoding",
1021
+ "csp",
1022
+ "trusted types",
1023
+ "innerhtml",
1024
+ "sanitize html"
1025
+ ]
1026
+ },
1027
+ "source": {
1028
+ "type": "github",
1029
+ "url": "https://raw.githubusercontent.com/OWASP/CheatSheetSeries/master/cheatsheets/Cross_Site_Scripting_Prevention_Cheat_Sheet.md"
1030
+ },
1031
+ "trusted": true,
1032
+ "roles": [
1033
+ "security",
1034
+ "frontend"
1035
+ ]
1036
+ },
1037
+ {
1038
+ "name": "owasp-authentication",
1039
+ "description": "OWASP Authentication Cheat Sheet — password requirements, MFA, account lockout, credential stuffing defenses.",
1040
+ "stars": 31600,
1041
+ "specificity": 8,
1042
+ "topic": "authentication",
1043
+ "languages": [
1044
+ "all"
1045
+ ],
1046
+ "triggers": {
1047
+ "extensions": [],
1048
+ "keywords": [
1049
+ "authentication",
1050
+ "login",
1051
+ "mfa",
1052
+ "account lockout",
1053
+ "credential stuffing",
1054
+ "brute force",
1055
+ "password policy"
1056
+ ]
1057
+ },
1058
+ "source": {
1059
+ "type": "github",
1060
+ "url": "https://raw.githubusercontent.com/OWASP/CheatSheetSeries/master/cheatsheets/Authentication_Cheat_Sheet.md"
1061
+ },
1062
+ "trusted": true,
1063
+ "roles": [
1064
+ "security"
1065
+ ]
1066
+ },
1067
+ {
1068
+ "name": "owasp-session-management",
1069
+ "description": "OWASP Session Management — session ID properties, cookies, fixation, expiry, logout.",
1070
+ "stars": 31600,
1071
+ "specificity": 8,
1072
+ "topic": "session-management",
1073
+ "languages": [
1074
+ "all"
1075
+ ],
1076
+ "triggers": {
1077
+ "extensions": [],
1078
+ "keywords": [
1079
+ "session management",
1080
+ "session token",
1081
+ "cookie",
1082
+ "session fixation",
1083
+ "session expiry",
1084
+ "logout",
1085
+ "jwt session"
1086
+ ]
1087
+ },
1088
+ "source": {
1089
+ "type": "github",
1090
+ "url": "https://raw.githubusercontent.com/OWASP/CheatSheetSeries/master/cheatsheets/Session_Management_Cheat_Sheet.md"
1091
+ },
1092
+ "trusted": true,
1093
+ "roles": [
1094
+ "security"
1095
+ ]
1096
+ },
1097
+ {
1098
+ "name": "owasp-csrf-prevention",
1099
+ "description": "OWASP CSRF Prevention — synchronizer tokens, SameSite cookies, custom request headers.",
1100
+ "stars": 31600,
1101
+ "specificity": 9,
1102
+ "topic": "csrf-defense",
1103
+ "languages": [
1104
+ "all"
1105
+ ],
1106
+ "triggers": {
1107
+ "extensions": [
1108
+ ".js",
1109
+ ".ts",
1110
+ ".py"
1111
+ ],
1112
+ "keywords": [
1113
+ "csrf",
1114
+ "cross site request forgery",
1115
+ "samesite",
1116
+ "csrf token",
1117
+ "double submit",
1118
+ "anti-csrf"
1119
+ ]
1120
+ },
1121
+ "source": {
1122
+ "type": "github",
1123
+ "url": "https://raw.githubusercontent.com/OWASP/CheatSheetSeries/master/cheatsheets/Cross-Site_Request_Forgery_Prevention_Cheat_Sheet.md"
1124
+ },
1125
+ "trusted": true,
1126
+ "roles": [
1127
+ "security",
1128
+ "frontend"
1129
+ ]
1130
+ },
1131
+ {
1132
+ "name": "owasp-input-validation",
1133
+ "description": "OWASP Input Validation — allow-lists, reject-lists, regex validation, file upload, length limits.",
1134
+ "stars": 31600,
1135
+ "specificity": 8,
1136
+ "topic": "input-sanitization",
1137
+ "languages": [
1138
+ "all"
1139
+ ],
1140
+ "triggers": {
1141
+ "extensions": [
1142
+ ".js",
1143
+ ".ts",
1144
+ ".py",
1145
+ ".java"
1146
+ ],
1147
+ "keywords": [
1148
+ "input validation",
1149
+ "allowlist",
1150
+ "whitelist",
1151
+ "regex validation",
1152
+ "file upload validation",
1153
+ "schema validation"
1154
+ ]
1155
+ },
1156
+ "source": {
1157
+ "type": "github",
1158
+ "url": "https://raw.githubusercontent.com/OWASP/CheatSheetSeries/master/cheatsheets/Input_Validation_Cheat_Sheet.md"
1159
+ },
1160
+ "trusted": true,
1161
+ "roles": [
1162
+ "security",
1163
+ "coder"
1164
+ ]
1165
+ },
1166
+ {
1167
+ "name": "owasp-password-storage",
1168
+ "description": "OWASP Password Storage — Argon2, bcrypt, scrypt work factors, salting, upgrading legacy hashes.",
1169
+ "stars": 31600,
1170
+ "specificity": 9,
1171
+ "topic": "password-hashing",
1172
+ "languages": [
1173
+ "all"
1174
+ ],
1175
+ "triggers": {
1176
+ "extensions": [],
1177
+ "keywords": [
1178
+ "password hashing",
1179
+ "bcrypt",
1180
+ "argon2",
1181
+ "scrypt",
1182
+ "pbkdf2",
1183
+ "password storage",
1184
+ "salt",
1185
+ "hash password"
1186
+ ]
1187
+ },
1188
+ "source": {
1189
+ "type": "github",
1190
+ "url": "https://raw.githubusercontent.com/OWASP/CheatSheetSeries/master/cheatsheets/Password_Storage_Cheat_Sheet.md"
1191
+ },
1192
+ "trusted": true,
1193
+ "roles": [
1194
+ "security"
1195
+ ]
1196
+ },
1197
+ {
1198
+ "name": "owasp-logging",
1199
+ "description": "OWASP Logging Cheat Sheet — what to log, log injection prevention, sensitive data in logs, centralized logging.",
1200
+ "stars": 31600,
1201
+ "specificity": 8,
1202
+ "topic": "security-logging",
1203
+ "languages": [
1204
+ "all"
1205
+ ],
1206
+ "triggers": {
1207
+ "extensions": [],
1208
+ "keywords": [
1209
+ "logging",
1210
+ "audit log",
1211
+ "log injection",
1212
+ "structured logging",
1213
+ "what to log",
1214
+ "security logging",
1215
+ "log sensitive data"
1216
+ ]
1217
+ },
1218
+ "source": {
1219
+ "type": "github",
1220
+ "url": "https://raw.githubusercontent.com/OWASP/CheatSheetSeries/master/cheatsheets/Logging_Cheat_Sheet.md"
1221
+ },
1222
+ "trusted": true,
1223
+ "roles": [
1224
+ "security",
1225
+ "devops"
1226
+ ]
1227
+ },
1228
+ {
1229
+ "name": "javascript-algorithms",
1230
+ "description": "JavaScript algorithms and data structures — Big-O complexity tables, sorting, graphs, dynamic programming, string algorithms.",
1231
+ "stars": 195000,
1232
+ "specificity": 6,
1233
+ "topic": "algorithms",
1234
+ "languages": [
1235
+ "javascript",
1236
+ "typescript"
1237
+ ],
1238
+ "triggers": {
1239
+ "extensions": [
1240
+ ".js",
1241
+ ".ts"
1242
+ ],
1243
+ "keywords": [
1244
+ "algorithm",
1245
+ "data structure",
1246
+ "big o",
1247
+ "complexity",
1248
+ "sorting",
1249
+ "graph",
1250
+ "dynamic programming",
1251
+ "binary search",
1252
+ "hash table"
1253
+ ]
1254
+ },
1255
+ "source": {
1256
+ "type": "github",
1257
+ "url": "https://raw.githubusercontent.com/trekhleb/javascript-algorithms/master/README.md"
1258
+ },
1259
+ "trusted": true,
1260
+ "roles": [
1261
+ "coder"
1262
+ ]
1263
+ },
1264
+ {
1265
+ "name": "prompt-engineering-fundamentals",
1266
+ "description": "Prompt engineering introduction — what prompting is, elements of a prompt, basic techniques, design tips.",
1267
+ "stars": 72000,
1268
+ "specificity": 6,
1269
+ "topic": "prompt-engineering-basics",
1270
+ "languages": [
1271
+ "all"
1272
+ ],
1273
+ "triggers": {
1274
+ "extensions": [],
1275
+ "keywords": [
1276
+ "prompt engineering",
1277
+ "prompting",
1278
+ "llm prompt",
1279
+ "prompt design",
1280
+ "language model",
1281
+ "ai prompt",
1282
+ "few shot",
1283
+ "zero shot"
1284
+ ]
1285
+ },
1286
+ "source": {
1287
+ "type": "github",
1288
+ "url": "https://raw.githubusercontent.com/dair-ai/Prompt-Engineering-Guide/main/guides/prompts-intro.md"
1289
+ },
1290
+ "trusted": true,
1291
+ "roles": [
1292
+ "ai-engineer"
1293
+ ]
1294
+ },
1295
+ {
1296
+ "name": "prompt-engineering-techniques",
1297
+ "description": "Advanced prompting techniques — chain-of-thought, self-consistency, tree of thoughts, ReAct, retrieval augmented generation.",
1298
+ "stars": 72000,
1299
+ "specificity": 8,
1300
+ "topic": "prompt-engineering-advanced",
1301
+ "languages": [
1302
+ "all"
1303
+ ],
1304
+ "triggers": {
1305
+ "extensions": [],
1306
+ "keywords": [
1307
+ "chain of thought",
1308
+ "cot prompting",
1309
+ "tree of thoughts",
1310
+ "react prompting",
1311
+ "rag",
1312
+ "self consistency",
1313
+ "prompt technique",
1314
+ "reasoning prompt"
1315
+ ]
1316
+ },
1317
+ "source": {
1318
+ "type": "github",
1319
+ "url": "https://raw.githubusercontent.com/dair-ai/Prompt-Engineering-Guide/main/guides/prompts-advanced-usage.md"
1320
+ },
1321
+ "trusted": true,
1322
+ "roles": [
1323
+ "ai-engineer"
1324
+ ]
1325
+ },
1326
+ {
1327
+ "name": "prompt-engineering-reliability",
1328
+ "description": "Making LLM outputs reliable — reducing hallucinations, calibration, self-evaluation, factuality, uncertainty.",
1329
+ "stars": 72000,
1330
+ "specificity": 8,
1331
+ "topic": "llm-reliability",
1332
+ "languages": [
1333
+ "all"
1334
+ ],
1335
+ "triggers": {
1336
+ "extensions": [],
1337
+ "keywords": [
1338
+ "llm hallucination",
1339
+ "prompt reliability",
1340
+ "factuality",
1341
+ "llm calibration",
1342
+ "self evaluation",
1343
+ "model uncertainty",
1344
+ "hallucination prevention"
1345
+ ]
1346
+ },
1347
+ "source": {
1348
+ "type": "github",
1349
+ "url": "https://raw.githubusercontent.com/dair-ai/Prompt-Engineering-Guide/main/guides/prompts-reliability.md"
1350
+ },
1351
+ "trusted": true,
1352
+ "roles": [
1353
+ "ai-engineer"
1354
+ ]
1355
+ },
1356
+ {
1357
+ "name": "prompt-engineering-adversarial",
1358
+ "description": "Adversarial prompting — prompt injection attacks, jailbreaking, defense strategies, robustness.",
1359
+ "stars": 72000,
1360
+ "specificity": 9,
1361
+ "topic": "prompt-injection-defense",
1362
+ "languages": [
1363
+ "all"
1364
+ ],
1365
+ "triggers": {
1366
+ "extensions": [],
1367
+ "keywords": [
1368
+ "prompt injection",
1369
+ "jailbreak",
1370
+ "adversarial prompt",
1371
+ "llm security",
1372
+ "prompt attack",
1373
+ "prompt defense",
1374
+ "llm robustness"
1375
+ ]
1376
+ },
1377
+ "source": {
1378
+ "type": "github",
1379
+ "url": "https://raw.githubusercontent.com/dair-ai/Prompt-Engineering-Guide/main/guides/prompts-adversarial.md"
1380
+ },
1381
+ "trusted": true,
1382
+ "roles": [
1383
+ "ai-engineer",
1384
+ "security"
1385
+ ]
1386
+ },
1387
+ {
1388
+ "name": "prompt-engineering-applications",
1389
+ "description": "Prompt engineering for real applications — classification, code generation, reasoning tasks, data extraction, conversation design.",
1390
+ "stars": 72000,
1391
+ "specificity": 7,
1392
+ "topic": "prompt-applications",
1393
+ "languages": [
1394
+ "all"
1395
+ ],
1396
+ "triggers": {
1397
+ "extensions": [],
1398
+ "keywords": [
1399
+ "llm classification",
1400
+ "code generation prompt",
1401
+ "llm data extraction",
1402
+ "structured output",
1403
+ "prompt for coding",
1404
+ "llm reasoning task"
1405
+ ]
1406
+ },
1407
+ "source": {
1408
+ "type": "github",
1409
+ "url": "https://raw.githubusercontent.com/dair-ai/Prompt-Engineering-Guide/main/guides/prompts-applications.md"
1410
+ },
1411
+ "trusted": true,
1412
+ "roles": [
1413
+ "ai-engineer"
1414
+ ]
1415
+ },
1416
+ {
1417
+ "name": "llm-production-patterns",
1418
+ "description": "Brex guide to production LLM patterns — history management, markdown usage, temperature settings, chain of thought, personas, and safety.",
1419
+ "stars": 9500,
1420
+ "specificity": 7,
1421
+ "topic": "prompt-engineering-basics",
1422
+ "languages": [
1423
+ "all"
1424
+ ],
1425
+ "triggers": {
1426
+ "extensions": [],
1427
+ "keywords": [
1428
+ "production llm",
1429
+ "llm history",
1430
+ "prompt persona",
1431
+ "llm temperature",
1432
+ "llm safety",
1433
+ "prompt context window",
1434
+ "llm in production"
1435
+ ]
1436
+ },
1437
+ "source": {
1438
+ "type": "github",
1439
+ "url": "https://raw.githubusercontent.com/brexhq/prompt-engineering/main/README.md"
1440
+ },
1441
+ "trusted": true,
1442
+ "roles": [
1443
+ "ai-engineer"
1444
+ ]
1445
+ },
1446
+ {
1447
+ "name": "engineering-management-glossary",
1448
+ "description": "Engineering management glossary — definitions for 1:1s, skip-levels, blameless post-mortems, DACI, OKRs, Dunbar's number, and 40+ leadership terms.",
1449
+ "stars": 8200,
1450
+ "specificity": 6,
1451
+ "topic": "engineering-leadership",
1452
+ "languages": [
1453
+ "all"
1454
+ ],
1455
+ "triggers": {
1456
+ "extensions": [],
1457
+ "keywords": [
1458
+ "engineering management",
1459
+ "1:1",
1460
+ "skip level",
1461
+ "post mortem",
1462
+ "okr",
1463
+ "tech lead",
1464
+ "engineering leader",
1465
+ "team lead",
1466
+ "daci"
1467
+ ]
1468
+ },
1469
+ "source": {
1470
+ "type": "github",
1471
+ "url": "https://raw.githubusercontent.com/charlax/engineering-management/master/glossary.md"
1472
+ },
1473
+ "trusted": true,
1474
+ "roles": [
1475
+ "manager"
1476
+ ]
1477
+ },
1478
+ {
1479
+ "name": "engineering-management-mistakes",
1480
+ "description": "25 years of engineering management mistakes — common failure modes in hiring, culture, communication, and technical decisions.",
1481
+ "stars": 8200,
1482
+ "specificity": 7,
1483
+ "topic": "engineering-leadership",
1484
+ "languages": [
1485
+ "all"
1486
+ ],
1487
+ "triggers": {
1488
+ "extensions": [],
1489
+ "keywords": [
1490
+ "management mistakes",
1491
+ "engineering culture",
1492
+ "technical leadership mistakes",
1493
+ "hiring mistakes",
1494
+ "manager antipatterns",
1495
+ "leadership failure"
1496
+ ]
1497
+ },
1498
+ "source": {
1499
+ "type": "github",
1500
+ "url": "https://raw.githubusercontent.com/charlax/engineering-management/master/articles/mistakes_25_years.md"
1501
+ },
1502
+ "trusted": true,
1503
+ "roles": [
1504
+ "manager"
1505
+ ]
1506
+ },
1507
+ {
1508
+ "name": "article-writing",
1509
+ "description": "Write articles, guides, blog posts, tutorials, newsletter issues, and other long-form content in a distinctive voice.",
1510
+ "stars": 0,
1511
+ "specificity": 5,
1512
+ "topic": "writing",
1513
+ "languages": ["none"],
1514
+ "triggers": {
1515
+ "extensions": [".md", ".txt"],
1516
+ "keywords": ["article", "blog post", "guide", "tutorial", "newsletter", "long-form", "editorial", "draft"]
1517
+ },
1518
+ "source": {
1519
+ "type": "github",
1520
+ "url": "https://raw.githubusercontent.com/affaan-m/everything-claude-code/main/skills/article-writing/SKILL.md"
1521
+ },
1522
+ "trusted": true,
1523
+ "roles": ["writer"]
1524
+ },
1525
+ {
1526
+ "name": "product-lens",
1527
+ "description": "Validate the 'why' before building, run product diagnostics, convert vague ideas into specs.",
1528
+ "stars": 0,
1529
+ "specificity": 5,
1530
+ "topic": "product-management",
1531
+ "languages": ["none"],
1532
+ "triggers": {
1533
+ "extensions": [".md", ".txt"],
1534
+ "keywords": ["product", "spec", "user research", "discovery", "prioritization", "jobs to be done", "JTBD", "why"]
1535
+ },
1536
+ "source": {
1537
+ "type": "github",
1538
+ "url": "https://raw.githubusercontent.com/affaan-m/everything-claude-code/main/skills/product-lens/SKILL.md"
1539
+ },
1540
+ "trusted": true,
1541
+ "roles": ["product"]
1542
+ },
1543
+ {
1544
+ "name": "market-research",
1545
+ "description": "Market research, competitive analysis, investor due diligence, and industry intelligence.",
1546
+ "stars": 0,
1547
+ "specificity": 5,
1548
+ "topic": "market-research",
1549
+ "languages": ["none"],
1550
+ "triggers": {
1551
+ "extensions": [".md", ".txt"],
1552
+ "keywords": ["market research", "competitive analysis", "TAM", "market sizing", "competitors", "positioning", "diligence"]
1553
+ },
1554
+ "source": {
1555
+ "type": "github",
1556
+ "url": "https://raw.githubusercontent.com/affaan-m/everything-claude-code/main/skills/market-research/SKILL.md"
1557
+ },
1558
+ "trusted": true,
1559
+ "roles": ["strategist", "product"]
1560
+ },
1561
+ {
1562
+ "name": "investor-materials",
1563
+ "description": "Pitch decks, one-pagers, investor memos, financial models, and fundraising materials.",
1564
+ "stars": 0,
1565
+ "specificity": 5,
1566
+ "topic": "fundraising",
1567
+ "languages": ["none"],
1568
+ "triggers": {
1569
+ "extensions": [".md", ".txt"],
1570
+ "keywords": ["pitch deck", "investor", "fundraising", "one-pager", "financial model", "accelerator"]
1571
+ },
1572
+ "source": {
1573
+ "type": "github",
1574
+ "url": "https://raw.githubusercontent.com/affaan-m/everything-claude-code/main/skills/investor-materials/SKILL.md"
1575
+ },
1576
+ "trusted": true,
1577
+ "roles": ["strategist", "product"]
1578
+ },
1579
+ {
1580
+ "name": "brand-guidelines",
1581
+ "description": "Apply brand colors, typography, and visual style to any artifact. Use when brand consistency matters.",
1582
+ "stars": 0,
1583
+ "specificity": 5,
1584
+ "topic": "brand-design",
1585
+ "languages": ["none"],
1586
+ "triggers": {
1587
+ "extensions": [".md", ".txt", ".css"],
1588
+ "keywords": ["brand", "logo", "typography", "color palette", "style guide", "visual identity"]
1589
+ },
1590
+ "source": {
1591
+ "type": "github",
1592
+ "url": "https://raw.githubusercontent.com/anthropics/skills/main/skills/brand-guidelines/SKILL.md"
1593
+ },
1594
+ "trusted": true,
1595
+ "roles": ["designer"]
1596
+ },
1597
+ {
1598
+ "name": "web-design-guidelines",
1599
+ "description": "Web platform design and accessibility — responsive layouts, a11y, interaction patterns.",
1600
+ "stars": 0,
1601
+ "specificity": 4,
1602
+ "topic": "web-design",
1603
+ "languages": ["none"],
1604
+ "triggers": {
1605
+ "extensions": [".md", ".css", ".html"],
1606
+ "keywords": ["web design", "layout", "typography", "accessibility", "a11y", "responsive", "UX"]
1607
+ },
1608
+ "source": {
1609
+ "type": "github",
1610
+ "url": "https://raw.githubusercontent.com/ehmo/platform-design-skills/main/skills/web/SKILL.md"
1611
+ },
1612
+ "trusted": true,
1613
+ "roles": ["designer", "frontend"]
1614
+ }
1615
+ ]
1616
+ }