claude-skill-lord 1.5.1 → 2.0.2

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 (1153) hide show
  1. package/.claude-plugin/plugin.json +28 -6
  2. package/CLAUDE.md +94 -16
  3. package/README.md +195 -44
  4. package/agents/brainstormer.md +0 -2
  5. package/agents/code-reviewer.md +145 -278
  6. package/agents/copywriter.md +0 -1
  7. package/agents/cpp-build-resolver.md +90 -0
  8. package/agents/cpp-reviewer.md +72 -0
  9. package/agents/database-admin.md +0 -1
  10. package/agents/database-reviewer.md +91 -0
  11. package/agents/debugger.md +0 -1
  12. package/agents/doc-updater.md +107 -0
  13. package/agents/docs-lookup.md +68 -0
  14. package/agents/docs-manager.md +0 -1
  15. package/agents/flutter-reviewer.md +243 -0
  16. package/agents/go-build-resolver.md +94 -0
  17. package/agents/go-reviewer.md +76 -0
  18. package/agents/java-build-resolver.md +153 -0
  19. package/agents/java-reviewer.md +92 -0
  20. package/agents/journal-writer.md +113 -0
  21. package/agents/kotlin-build-resolver.md +118 -0
  22. package/agents/kotlin-reviewer.md +159 -0
  23. package/agents/mcp-manager.md +93 -0
  24. package/agents/planner.md +22 -232
  25. package/agents/python-reviewer.md +98 -0
  26. package/agents/pytorch-build-resolver.md +120 -0
  27. package/agents/researcher.md +34 -0
  28. package/agents/rust-build-resolver.md +148 -0
  29. package/agents/rust-reviewer.md +94 -0
  30. package/agents/scout-external.md +131 -0
  31. package/agents/tester.md +102 -0
  32. package/agents/typescript-reviewer.md +112 -0
  33. package/agents/ui-ux-designer.md +1 -2
  34. package/commands/aside.md +164 -0
  35. package/commands/build-fix.md +0 -4
  36. package/commands/checkpoint.md +74 -0
  37. package/commands/claw.md +51 -0
  38. package/commands/code-review.md +0 -4
  39. package/commands/context-budget.md +29 -0
  40. package/commands/cpp-build.md +173 -0
  41. package/commands/cpp-review.md +132 -0
  42. package/commands/cpp-test.md +251 -0
  43. package/commands/devfleet.md +92 -0
  44. package/commands/docs.md +31 -0
  45. package/commands/eval.md +120 -0
  46. package/commands/git/cm.md +0 -6
  47. package/commands/git/cp.md +1 -6
  48. package/commands/go-build.md +183 -0
  49. package/commands/go-review.md +148 -0
  50. package/commands/go-test.md +268 -0
  51. package/commands/gradle-build.md +70 -0
  52. package/commands/harness-audit.md +71 -0
  53. package/commands/instinct-export.md +66 -0
  54. package/commands/instinct-import.md +114 -0
  55. package/commands/instinct-status.md +59 -0
  56. package/commands/kotlin-build.md +174 -0
  57. package/commands/kotlin-review.md +140 -0
  58. package/commands/kotlin-test.md +312 -0
  59. package/commands/learn-eval.md +116 -0
  60. package/commands/learn.md +0 -4
  61. package/commands/loop-start.md +0 -4
  62. package/commands/loop-status.md +0 -4
  63. package/commands/model-route.md +0 -4
  64. package/commands/multi-backend.md +158 -0
  65. package/commands/multi-execute.md +315 -0
  66. package/commands/multi-frontend.md +158 -0
  67. package/commands/multi-plan.md +268 -0
  68. package/commands/multi-workflow.md +191 -0
  69. package/commands/orchestrate.md +231 -0
  70. package/commands/plan/ci.md +18 -0
  71. package/commands/plan/cro.md +56 -0
  72. package/commands/plan/fast.md +46 -0
  73. package/commands/plan/hard.md +57 -0
  74. package/commands/plan/two.md +30 -0
  75. package/commands/plan.md +17 -109
  76. package/commands/pm2.md +272 -0
  77. package/commands/projects.md +39 -0
  78. package/commands/promote.md +41 -0
  79. package/commands/prune.md +31 -0
  80. package/commands/python-review.md +297 -0
  81. package/commands/quality-gate.md +0 -4
  82. package/commands/refactor-clean.md +0 -4
  83. package/commands/resume-session.md +155 -0
  84. package/commands/rules-distill.md +11 -0
  85. package/commands/rust-build.md +187 -0
  86. package/commands/rust-review.md +142 -0
  87. package/commands/rust-test.md +308 -0
  88. package/commands/save-session.md +275 -0
  89. package/commands/sessions.md +333 -0
  90. package/commands/setup-pm.md +80 -0
  91. package/commands/skill-health.md +54 -0
  92. package/commands/test-coverage.md +69 -0
  93. package/commands/update-codemaps.md +72 -0
  94. package/commands/update-docs.md +84 -0
  95. package/commands/use-mcp.md +34 -0
  96. package/commands/verify.md +0 -4
  97. package/contexts/dev.md +20 -0
  98. package/contexts/research.md +26 -0
  99. package/contexts/review.md +22 -0
  100. package/docs/ARCHITECTURE.md +113 -0
  101. package/docs/COMMAND-REFERENCE.md +57 -0
  102. package/docs/SKILL-CATALOG.md +79 -0
  103. package/examples/CLAUDE.md.fullstack +62 -0
  104. package/examples/CLAUDE.md.python +36 -0
  105. package/examples/CLAUDE.md.typescript +24 -0
  106. package/guide/AGENTS.md +64 -0
  107. package/guide/COMMANDS.md +128 -0
  108. package/guide/SKILLS.md +89 -0
  109. package/hooks/.env.example +18 -0
  110. package/hooks/README.md +93 -0
  111. package/hooks/discord-hook-setup.md +412 -0
  112. package/hooks/hooks.json +45 -0
  113. package/hooks/scripts/discord-notify.sh +72 -0
  114. package/hooks/scripts/discord_notify.sh +221 -0
  115. package/hooks/scripts/modularization-hook.js +49 -0
  116. package/hooks/scripts/scout-block.js +54 -0
  117. package/hooks/scripts/scout-block.ps1 +65 -0
  118. package/hooks/scripts/scout-block.sh +51 -0
  119. package/hooks/scripts/send-discord.sh +75 -0
  120. package/hooks/scripts/telegram-notify.sh +56 -0
  121. package/hooks/scripts/telegram_notify.sh +158 -0
  122. package/hooks/telegram-hook-setup.md +774 -0
  123. package/manifests/install-modules.json +30 -21
  124. package/manifests/install-profiles.json +12 -2
  125. package/mcp-configs/mcp-servers.json +153 -0
  126. package/package.json +9 -2
  127. package/rules/README.md +106 -0
  128. package/rules/common/agents.md +50 -0
  129. package/rules/common/coding-style.md +48 -0
  130. package/rules/common/development-workflow.md +38 -0
  131. package/rules/common/git-workflow.md +24 -0
  132. package/rules/common/hooks.md +30 -0
  133. package/rules/common/patterns.md +31 -0
  134. package/rules/common/performance.md +55 -0
  135. package/rules/common/security.md +29 -0
  136. package/rules/common/testing.md +29 -0
  137. package/rules/cpp/coding-style.md +44 -0
  138. package/rules/cpp/hooks.md +39 -0
  139. package/rules/cpp/patterns.md +51 -0
  140. package/rules/cpp/security.md +51 -0
  141. package/rules/cpp/testing.md +44 -0
  142. package/rules/csharp/coding-style.md +72 -0
  143. package/rules/csharp/hooks.md +25 -0
  144. package/rules/csharp/patterns.md +50 -0
  145. package/rules/csharp/security.md +58 -0
  146. package/rules/csharp/testing.md +46 -0
  147. package/rules/golang/coding-style.md +32 -0
  148. package/rules/golang/hooks.md +17 -0
  149. package/rules/golang/patterns.md +45 -0
  150. package/rules/golang/security.md +34 -0
  151. package/rules/golang/testing.md +31 -0
  152. package/rules/java/coding-style.md +114 -0
  153. package/rules/java/hooks.md +18 -0
  154. package/rules/java/patterns.md +146 -0
  155. package/rules/java/security.md +100 -0
  156. package/rules/java/testing.md +131 -0
  157. package/rules/kotlin/coding-style.md +86 -0
  158. package/rules/kotlin/hooks.md +17 -0
  159. package/rules/kotlin/patterns.md +146 -0
  160. package/rules/kotlin/security.md +82 -0
  161. package/rules/kotlin/testing.md +128 -0
  162. package/rules/perl/coding-style.md +46 -0
  163. package/rules/perl/hooks.md +22 -0
  164. package/rules/perl/patterns.md +76 -0
  165. package/rules/perl/security.md +69 -0
  166. package/rules/perl/testing.md +54 -0
  167. package/rules/php/coding-style.md +40 -0
  168. package/rules/php/hooks.md +24 -0
  169. package/rules/php/patterns.md +33 -0
  170. package/rules/php/security.md +37 -0
  171. package/rules/php/testing.md +39 -0
  172. package/rules/python/coding-style.md +42 -0
  173. package/rules/python/hooks.md +19 -0
  174. package/rules/python/patterns.md +39 -0
  175. package/rules/python/security.md +30 -0
  176. package/rules/python/testing.md +38 -0
  177. package/rules/rust/coding-style.md +151 -0
  178. package/rules/rust/hooks.md +16 -0
  179. package/rules/rust/patterns.md +168 -0
  180. package/rules/rust/security.md +141 -0
  181. package/rules/rust/testing.md +154 -0
  182. package/rules/swift/coding-style.md +47 -0
  183. package/rules/swift/hooks.md +20 -0
  184. package/rules/swift/patterns.md +66 -0
  185. package/rules/swift/security.md +33 -0
  186. package/rules/swift/testing.md +45 -0
  187. package/rules/typescript/coding-style.md +199 -0
  188. package/rules/typescript/hooks.md +22 -0
  189. package/rules/typescript/patterns.md +52 -0
  190. package/rules/typescript/security.md +28 -0
  191. package/rules/typescript/testing.md +18 -0
  192. package/schemas/hooks.schema.json +43 -0
  193. package/schemas/manifest.schema.json +34 -0
  194. package/schemas/plugin.schema.json +25 -0
  195. package/skills/INSTALLATION.md +280 -0
  196. package/skills/README.md +86 -0
  197. package/skills/SKILL.md +208 -0
  198. package/skills/STYLE_PRESETS.md +330 -0
  199. package/skills/THIRD_PARTY_NOTICES.md +405 -0
  200. package/skills/aesthetic/SKILL.md +121 -0
  201. package/skills/aesthetic/assets/design-guideline-template.md +163 -0
  202. package/skills/aesthetic/assets/design-story-template.md +135 -0
  203. package/skills/aesthetic/references/design-principles.md +62 -0
  204. package/skills/aesthetic/references/design-resources.md +75 -0
  205. package/skills/aesthetic/references/micro-interactions.md +53 -0
  206. package/skills/aesthetic/references/storytelling-design.md +50 -0
  207. package/skills/agent-eval/SKILL.md +145 -0
  208. package/skills/agent-harness-construction/SKILL.md +73 -0
  209. package/skills/agent_skills_spec.md +55 -0
  210. package/skills/ai-first-engineering/SKILL.md +51 -0
  211. package/skills/ai-regression-testing/SKILL.md +385 -0
  212. package/skills/android-clean-architecture/SKILL.md +339 -0
  213. package/skills/architecture-decision-records/SKILL.md +179 -0
  214. package/skills/article-writing/SKILL.md +85 -0
  215. package/skills/blueprint/SKILL.md +105 -0
  216. package/skills/bun-runtime/SKILL.md +84 -0
  217. package/skills/carrier-relationship-management/SKILL.md +212 -0
  218. package/skills/chrome-devtools/SKILL.md +360 -0
  219. package/skills/chrome-devtools/references/cdp-domains.md +694 -0
  220. package/skills/chrome-devtools/references/performance-guide.md +940 -0
  221. package/skills/chrome-devtools/references/puppeteer-reference.md +953 -0
  222. package/skills/chrome-devtools/scripts/README.md +213 -0
  223. package/skills/chrome-devtools/scripts/__tests__/selector.test.js +210 -0
  224. package/skills/chrome-devtools/scripts/click.js +79 -0
  225. package/skills/chrome-devtools/scripts/console.js +75 -0
  226. package/skills/chrome-devtools/scripts/evaluate.js +49 -0
  227. package/skills/chrome-devtools/scripts/fill.js +72 -0
  228. package/skills/chrome-devtools/scripts/install-deps.sh +181 -0
  229. package/skills/chrome-devtools/scripts/install.sh +83 -0
  230. package/skills/chrome-devtools/scripts/lib/browser.js +122 -0
  231. package/skills/chrome-devtools/scripts/lib/selector.js +178 -0
  232. package/skills/chrome-devtools/scripts/navigate.js +46 -0
  233. package/skills/chrome-devtools/scripts/network.js +102 -0
  234. package/skills/chrome-devtools/scripts/package.json +15 -0
  235. package/skills/chrome-devtools/scripts/performance.js +145 -0
  236. package/skills/chrome-devtools/scripts/screenshot.js +180 -0
  237. package/skills/chrome-devtools/scripts/snapshot.js +131 -0
  238. package/skills/claude-api/SKILL.md +337 -0
  239. package/skills/claude-devfleet/SKILL.md +103 -0
  240. package/skills/click-path-audit/SKILL.md +244 -0
  241. package/skills/clickhouse-io/SKILL.md +439 -0
  242. package/skills/common/README.md +120 -0
  243. package/skills/common/api_key_helper.py +300 -0
  244. package/skills/compose-multiplatform-patterns/SKILL.md +299 -0
  245. package/skills/config.json +18 -0
  246. package/skills/configure-ecc/SKILL.md +367 -0
  247. package/skills/content-engine/SKILL.md +88 -0
  248. package/skills/content-hash-cache-pattern/SKILL.md +161 -0
  249. package/skills/context-budget/SKILL.md +135 -0
  250. package/skills/continuous-agent-loop/SKILL.md +45 -0
  251. package/skills/continuous-learning/SKILL.md +119 -0
  252. package/skills/continuous-learning/config.json +18 -0
  253. package/skills/continuous-learning/evaluate-session.sh +69 -0
  254. package/skills/continuous-learning-v2/agents/observer-loop.sh +191 -0
  255. package/skills/continuous-learning-v2/agents/observer.md +198 -0
  256. package/skills/continuous-learning-v2/agents/session-guardian.sh +150 -0
  257. package/skills/continuous-learning-v2/agents/start-observer.sh +240 -0
  258. package/skills/cpp-coding-standards/SKILL.md +723 -0
  259. package/skills/cpp-testing/SKILL.md +324 -0
  260. package/skills/crosspost/SKILL.md +190 -0
  261. package/skills/customs-trade-compliance/SKILL.md +263 -0
  262. package/skills/data-scraper-agent/SKILL.md +764 -0
  263. package/skills/deep-research/SKILL.md +155 -0
  264. package/skills/design/SKILL.md +302 -0
  265. package/skills/django-security/SKILL.md +593 -0
  266. package/skills/django-tdd/SKILL.md +729 -0
  267. package/skills/django-verification/SKILL.md +469 -0
  268. package/skills/dmux-workflows/SKILL.md +191 -0
  269. package/skills/docs-seeker/SKILL.md +97 -0
  270. package/skills/docs-seeker/package.json +25 -0
  271. package/skills/docs-seeker/references/advanced.md +79 -0
  272. package/skills/docs-seeker/references/context7-patterns.md +68 -0
  273. package/skills/docs-seeker/references/errors.md +68 -0
  274. package/skills/docs-seeker/scripts/analyze-llms-txt.js +211 -0
  275. package/skills/docs-seeker/scripts/detect-topic.js +172 -0
  276. package/skills/docs-seeker/scripts/fetch-docs.js +213 -0
  277. package/skills/docs-seeker/scripts/tests/run-tests.js +72 -0
  278. package/skills/docs-seeker/scripts/tests/test-analyze-llms.js +119 -0
  279. package/skills/docs-seeker/scripts/tests/test-detect-topic.js +112 -0
  280. package/skills/docs-seeker/scripts/tests/test-fetch-docs.js +84 -0
  281. package/skills/docs-seeker/scripts/utils/env-loader.js +94 -0
  282. package/skills/docs-seeker/workflows/library-search.md +87 -0
  283. package/skills/docs-seeker/workflows/repo-analysis.md +91 -0
  284. package/skills/docs-seeker/workflows/topic-search.md +77 -0
  285. package/skills/document-skills/docx/LICENSE.txt +30 -0
  286. package/skills/document-skills/docx/SKILL.md +197 -0
  287. package/skills/document-skills/docx/docx-js.md +350 -0
  288. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  289. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  290. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  291. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  292. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  293. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  294. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  295. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  296. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  297. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  298. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  299. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  300. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  301. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  302. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  303. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  304. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  305. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  306. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  307. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  308. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  309. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  310. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  311. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  312. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  313. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  314. package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  315. package/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  316. package/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  317. package/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  318. package/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  319. package/skills/document-skills/docx/ooxml/schemas/mce/mc.xsd +75 -0
  320. package/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  321. package/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  322. package/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  323. package/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  324. package/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  325. package/skills/document-skills/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  326. package/skills/document-skills/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  327. package/skills/document-skills/docx/ooxml/scripts/pack.py +159 -0
  328. package/skills/document-skills/docx/ooxml/scripts/unpack.py +29 -0
  329. package/skills/document-skills/docx/ooxml/scripts/validate.py +69 -0
  330. package/skills/document-skills/docx/ooxml/scripts/validation/__init__.py +15 -0
  331. package/skills/document-skills/docx/ooxml/scripts/validation/base.py +951 -0
  332. package/skills/document-skills/docx/ooxml/scripts/validation/docx.py +274 -0
  333. package/skills/document-skills/docx/ooxml/scripts/validation/pptx.py +315 -0
  334. package/skills/document-skills/docx/ooxml/scripts/validation/redlining.py +279 -0
  335. package/skills/document-skills/docx/ooxml.md +610 -0
  336. package/skills/document-skills/docx/scripts/__init__.py +1 -0
  337. package/skills/document-skills/docx/scripts/document.py +1276 -0
  338. package/skills/document-skills/docx/scripts/templates/comments.xml +3 -0
  339. package/skills/document-skills/docx/scripts/templates/commentsExtended.xml +3 -0
  340. package/skills/document-skills/docx/scripts/templates/commentsExtensible.xml +3 -0
  341. package/skills/document-skills/docx/scripts/templates/commentsIds.xml +3 -0
  342. package/skills/document-skills/docx/scripts/templates/people.xml +3 -0
  343. package/skills/document-skills/docx/scripts/utilities.py +374 -0
  344. package/skills/document-skills/pdf/LICENSE.txt +30 -0
  345. package/skills/document-skills/pdf/SKILL.md +294 -0
  346. package/skills/document-skills/pdf/forms.md +205 -0
  347. package/skills/document-skills/pdf/reference.md +612 -0
  348. package/skills/document-skills/pdf/scripts/check_bounding_boxes.py +70 -0
  349. package/skills/document-skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
  350. package/skills/document-skills/pdf/scripts/check_fillable_fields.py +12 -0
  351. package/skills/document-skills/pdf/scripts/convert_pdf_to_images.py +35 -0
  352. package/skills/document-skills/pdf/scripts/create_validation_image.py +41 -0
  353. package/skills/document-skills/pdf/scripts/extract_form_field_info.py +152 -0
  354. package/skills/document-skills/pdf/scripts/fill_fillable_fields.py +114 -0
  355. package/skills/document-skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
  356. package/skills/document-skills/pptx/LICENSE.txt +30 -0
  357. package/skills/document-skills/pptx/SKILL.md +484 -0
  358. package/skills/document-skills/pptx/html2pptx.md +625 -0
  359. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  360. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  361. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  362. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  363. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  364. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  365. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  366. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  367. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  368. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  369. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  370. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  371. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  372. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  373. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  374. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  375. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  376. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  377. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  378. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  379. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  380. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  381. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  382. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  383. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  384. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  385. package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  386. package/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  387. package/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  388. package/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  389. package/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  390. package/skills/document-skills/pptx/ooxml/schemas/mce/mc.xsd +75 -0
  391. package/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  392. package/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  393. package/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  394. package/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  395. package/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  396. package/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  397. package/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  398. package/skills/document-skills/pptx/ooxml/scripts/pack.py +159 -0
  399. package/skills/document-skills/pptx/ooxml/scripts/unpack.py +29 -0
  400. package/skills/document-skills/pptx/ooxml/scripts/validate.py +69 -0
  401. package/skills/document-skills/pptx/ooxml/scripts/validation/__init__.py +15 -0
  402. package/skills/document-skills/pptx/ooxml/scripts/validation/base.py +951 -0
  403. package/skills/document-skills/pptx/ooxml/scripts/validation/docx.py +274 -0
  404. package/skills/document-skills/pptx/ooxml/scripts/validation/pptx.py +315 -0
  405. package/skills/document-skills/pptx/ooxml/scripts/validation/redlining.py +279 -0
  406. package/skills/document-skills/pptx/ooxml.md +427 -0
  407. package/skills/document-skills/pptx/scripts/html2pptx.js +979 -0
  408. package/skills/document-skills/pptx/scripts/inventory.py +1020 -0
  409. package/skills/document-skills/pptx/scripts/rearrange.py +231 -0
  410. package/skills/document-skills/pptx/scripts/replace.py +385 -0
  411. package/skills/document-skills/pptx/scripts/thumbnail.py +450 -0
  412. package/skills/document-skills/xlsx/LICENSE.txt +30 -0
  413. package/skills/document-skills/xlsx/SKILL.md +289 -0
  414. package/skills/document-skills/xlsx/recalc.py +178 -0
  415. package/skills/documentation-lookup/SKILL.md +90 -0
  416. package/skills/energy-procurement/SKILL.md +228 -0
  417. package/skills/enterprise-agent-ops/SKILL.md +50 -0
  418. package/skills/evaluate-session.sh +69 -0
  419. package/skills/exa-search/SKILL.md +103 -0
  420. package/skills/fal-ai-media/SKILL.md +284 -0
  421. package/skills/fixtures/compliant_trace.jsonl +5 -0
  422. package/skills/fixtures/noncompliant_trace.jsonl +3 -0
  423. package/skills/fixtures/tdd_spec.yaml +44 -0
  424. package/skills/flutter-dart-code-review/SKILL.md +435 -0
  425. package/skills/foundation-models-on-device/SKILL.md +243 -0
  426. package/skills/frontend-design/SKILL.md +42 -0
  427. package/skills/frontend-design/references/animejs.md +396 -0
  428. package/skills/frontend-slides/SKILL.md +184 -0
  429. package/skills/frontend-slides/STYLE_PRESETS.md +330 -0
  430. package/skills/golang-testing/SKILL.md +720 -0
  431. package/skills/google-adk-python/SKILL.md +237 -0
  432. package/skills/hooks/observe.sh +412 -0
  433. package/skills/inventory-demand-planning/SKILL.md +247 -0
  434. package/skills/investor-materials/SKILL.md +96 -0
  435. package/skills/investor-outreach/SKILL.md +76 -0
  436. package/skills/iterative-retrieval/SKILL.md +211 -0
  437. package/skills/java-coding-standards/SKILL.md +147 -0
  438. package/skills/jpa-patterns/SKILL.md +151 -0
  439. package/skills/kotlin-coroutines-flows/SKILL.md +284 -0
  440. package/skills/kotlin-exposed-patterns/SKILL.md +719 -0
  441. package/skills/kotlin-ktor-patterns/SKILL.md +689 -0
  442. package/skills/kotlin-testing/SKILL.md +824 -0
  443. package/skills/laravel-security/SKILL.md +285 -0
  444. package/skills/laravel-tdd/SKILL.md +283 -0
  445. package/skills/laravel-verification/SKILL.md +179 -0
  446. package/skills/liquid-glass-design/SKILL.md +279 -0
  447. package/skills/logistics-exception-management/SKILL.md +222 -0
  448. package/skills/manifest.json +779 -194
  449. package/skills/market-research/SKILL.md +75 -0
  450. package/skills/mcp-builder/SKILL.md +328 -0
  451. package/skills/mcp-builder/reference/evaluation.md +602 -0
  452. package/skills/mcp-builder/reference/mcp_best_practices.md +915 -0
  453. package/skills/mcp-builder/reference/node_mcp_server.md +916 -0
  454. package/skills/mcp-builder/reference/python_mcp_server.md +752 -0
  455. package/skills/mcp-builder/scripts/connections.py +151 -0
  456. package/skills/mcp-builder/scripts/evaluation.py +373 -0
  457. package/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
  458. package/skills/mcp-builder/scripts/requirements.txt +2 -0
  459. package/skills/nanoclaw-repl/SKILL.md +33 -0
  460. package/skills/nextjs-turbopack/SKILL.md +44 -0
  461. package/skills/nutrient-document-processing/SKILL.md +167 -0
  462. package/skills/nuxt4-patterns/SKILL.md +100 -0
  463. package/skills/payment-integration.tar.gz +0 -0
  464. package/skills/perl-patterns/SKILL.md +504 -0
  465. package/skills/perl-security/SKILL.md +503 -0
  466. package/skills/perl-testing/SKILL.md +475 -0
  467. package/skills/plan-preview/SKILL.md +64 -0
  468. package/skills/plankton-code-quality/SKILL.md +236 -0
  469. package/skills/production-scheduling/SKILL.md +238 -0
  470. package/skills/project-guidelines-example/SKILL.md +349 -0
  471. package/skills/prompts/classifier.md +24 -0
  472. package/skills/prompts/scenario_generator.md +62 -0
  473. package/skills/prompts/spec_generator.md +42 -0
  474. package/skills/pyproject.toml +15 -0
  475. package/skills/python-testing/SKILL.md +816 -0
  476. package/skills/quality-nonconformance/SKILL.md +260 -0
  477. package/skills/ralphinho-rfc-pipeline/SKILL.md +67 -0
  478. package/skills/reference/api-reference.md +550 -0
  479. package/skills/reference/capture-reference.md +407 -0
  480. package/skills/reference/capture.md +101 -0
  481. package/skills/reference/editor.md +443 -0
  482. package/skills/reference/generative.md +331 -0
  483. package/skills/reference/rtstream-reference.md +564 -0
  484. package/skills/reference/rtstream.md +65 -0
  485. package/skills/reference/search.md +230 -0
  486. package/skills/reference/streaming.md +406 -0
  487. package/skills/reference/use-cases.md +118 -0
  488. package/skills/regex-vs-llm-structured-text/SKILL.md +220 -0
  489. package/skills/repomix/SKILL.md +247 -0
  490. package/skills/repomix/references/configuration.md +211 -0
  491. package/skills/repomix/references/usage-patterns.md +232 -0
  492. package/skills/repomix/scripts/README.md +179 -0
  493. package/skills/repomix/scripts/repomix_batch.py +455 -0
  494. package/skills/repomix/scripts/repos.example.json +15 -0
  495. package/skills/repomix/scripts/requirements.txt +15 -0
  496. package/skills/repomix/scripts/tests/test_repomix_batch.py +531 -0
  497. package/skills/returns-reverse-logistics/SKILL.md +240 -0
  498. package/skills/rules-distill/SKILL.md +264 -0
  499. package/skills/rules-distill/scripts/scan-rules.sh +58 -0
  500. package/skills/rules-distill/scripts/scan-skills.sh +129 -0
  501. package/skills/rust-testing/SKILL.md +500 -0
  502. package/skills/safety-guard/SKILL.md +90 -0
  503. package/skills/santa-method/SKILL.md +306 -0
  504. package/skills/scripts/classifier.py +85 -0
  505. package/skills/scripts/detect-project.sh +228 -0
  506. package/skills/scripts/grader.py +122 -0
  507. package/skills/scripts/instinct-cli.py +1426 -0
  508. package/skills/scripts/parser.py +107 -0
  509. package/skills/scripts/quick-diff.sh +87 -0
  510. package/skills/scripts/report.py +170 -0
  511. package/skills/scripts/run.py +127 -0
  512. package/skills/scripts/runner.py +161 -0
  513. package/skills/scripts/save-results.sh +56 -0
  514. package/skills/scripts/scan-rules.sh +58 -0
  515. package/skills/scripts/scan-skills.sh +129 -0
  516. package/skills/scripts/scan.sh +170 -0
  517. package/skills/scripts/scenario_generator.py +70 -0
  518. package/skills/scripts/spec_generator.py +72 -0
  519. package/skills/scripts/test_parse_instinct.py +984 -0
  520. package/skills/scripts/utils.py +13 -0
  521. package/skills/scripts/ws_listener.py +282 -0
  522. package/skills/search-first/SKILL.md +161 -0
  523. package/skills/security-review/cloud-infrastructure-security.md +361 -0
  524. package/skills/security-scan/SKILL.md +165 -0
  525. package/skills/skill-comply/SKILL.md +58 -0
  526. package/skills/skill-comply/fixtures/compliant_trace.jsonl +5 -0
  527. package/skills/skill-comply/fixtures/noncompliant_trace.jsonl +3 -0
  528. package/skills/skill-comply/fixtures/tdd_spec.yaml +44 -0
  529. package/skills/skill-comply/prompts/classifier.md +24 -0
  530. package/skills/skill-comply/prompts/scenario_generator.md +62 -0
  531. package/skills/skill-comply/prompts/spec_generator.md +42 -0
  532. package/skills/skill-comply/pyproject.toml +15 -0
  533. package/skills/skill-comply/scripts/__init__.py +0 -0
  534. package/skills/skill-comply/scripts/classifier.py +85 -0
  535. package/skills/skill-comply/scripts/grader.py +122 -0
  536. package/skills/skill-comply/scripts/parser.py +107 -0
  537. package/skills/skill-comply/scripts/report.py +170 -0
  538. package/skills/skill-comply/scripts/run.py +127 -0
  539. package/skills/skill-comply/scripts/runner.py +161 -0
  540. package/skills/skill-comply/scripts/scenario_generator.py +70 -0
  541. package/skills/skill-comply/scripts/spec_generator.py +72 -0
  542. package/skills/skill-comply/scripts/utils.py +13 -0
  543. package/skills/skill-comply/tests/test_grader.py +137 -0
  544. package/skills/skill-comply/tests/test_parser.py +90 -0
  545. package/skills/skill-creator/LICENSE.txt +202 -0
  546. package/skills/skill-creator/SKILL.md +255 -0
  547. package/skills/skill-creator/scripts/init_skill.py +303 -0
  548. package/skills/skill-creator/scripts/package_skill.py +110 -0
  549. package/skills/skill-creator/scripts/quick_validate.py +65 -0
  550. package/skills/skill-stocktake/SKILL.md +193 -0
  551. package/skills/skill-stocktake/scripts/quick-diff.sh +87 -0
  552. package/skills/skill-stocktake/scripts/save-results.sh +56 -0
  553. package/skills/skill-stocktake/scripts/scan.sh +170 -0
  554. package/skills/springboot-security/SKILL.md +272 -0
  555. package/skills/springboot-tdd/SKILL.md +158 -0
  556. package/skills/springboot-verification/SKILL.md +231 -0
  557. package/skills/suggest-compact.sh +54 -0
  558. package/skills/swift-actor-persistence/SKILL.md +143 -0
  559. package/skills/swift-concurrency-6-2/SKILL.md +216 -0
  560. package/skills/swift-protocol-di-testing/SKILL.md +190 -0
  561. package/skills/team-builder/SKILL.md +161 -0
  562. package/skills/template-skill/SKILL.md +6 -0
  563. package/skills/tests/test_grader.py +137 -0
  564. package/skills/tests/test_parser.py +90 -0
  565. package/skills/ui-styling/LICENSE.txt +202 -0
  566. package/skills/ui-styling/canvas-fonts/ArsenalSC-OFL.txt +93 -0
  567. package/skills/ui-styling/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  568. package/skills/ui-styling/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  569. package/skills/ui-styling/canvas-fonts/BigShoulders-OFL.txt +93 -0
  570. package/skills/ui-styling/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  571. package/skills/ui-styling/canvas-fonts/Boldonse-OFL.txt +93 -0
  572. package/skills/ui-styling/canvas-fonts/Boldonse-Regular.ttf +0 -0
  573. package/skills/ui-styling/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  574. package/skills/ui-styling/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
  575. package/skills/ui-styling/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  576. package/skills/ui-styling/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  577. package/skills/ui-styling/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  578. package/skills/ui-styling/canvas-fonts/CrimsonPro-OFL.txt +93 -0
  579. package/skills/ui-styling/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  580. package/skills/ui-styling/canvas-fonts/DMMono-OFL.txt +93 -0
  581. package/skills/ui-styling/canvas-fonts/DMMono-Regular.ttf +0 -0
  582. package/skills/ui-styling/canvas-fonts/EricaOne-OFL.txt +94 -0
  583. package/skills/ui-styling/canvas-fonts/EricaOne-Regular.ttf +0 -0
  584. package/skills/ui-styling/canvas-fonts/GeistMono-Bold.ttf +0 -0
  585. package/skills/ui-styling/canvas-fonts/GeistMono-OFL.txt +93 -0
  586. package/skills/ui-styling/canvas-fonts/GeistMono-Regular.ttf +0 -0
  587. package/skills/ui-styling/canvas-fonts/Gloock-OFL.txt +93 -0
  588. package/skills/ui-styling/canvas-fonts/Gloock-Regular.ttf +0 -0
  589. package/skills/ui-styling/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  590. package/skills/ui-styling/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
  591. package/skills/ui-styling/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  592. package/skills/ui-styling/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  593. package/skills/ui-styling/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  594. package/skills/ui-styling/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  595. package/skills/ui-styling/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  596. package/skills/ui-styling/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  597. package/skills/ui-styling/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  598. package/skills/ui-styling/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  599. package/skills/ui-styling/canvas-fonts/InstrumentSans-OFL.txt +93 -0
  600. package/skills/ui-styling/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  601. package/skills/ui-styling/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  602. package/skills/ui-styling/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  603. package/skills/ui-styling/canvas-fonts/Italiana-OFL.txt +93 -0
  604. package/skills/ui-styling/canvas-fonts/Italiana-Regular.ttf +0 -0
  605. package/skills/ui-styling/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  606. package/skills/ui-styling/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
  607. package/skills/ui-styling/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  608. package/skills/ui-styling/canvas-fonts/Jura-Light.ttf +0 -0
  609. package/skills/ui-styling/canvas-fonts/Jura-Medium.ttf +0 -0
  610. package/skills/ui-styling/canvas-fonts/Jura-OFL.txt +93 -0
  611. package/skills/ui-styling/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
  612. package/skills/ui-styling/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  613. package/skills/ui-styling/canvas-fonts/Lora-Bold.ttf +0 -0
  614. package/skills/ui-styling/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  615. package/skills/ui-styling/canvas-fonts/Lora-Italic.ttf +0 -0
  616. package/skills/ui-styling/canvas-fonts/Lora-OFL.txt +93 -0
  617. package/skills/ui-styling/canvas-fonts/Lora-Regular.ttf +0 -0
  618. package/skills/ui-styling/canvas-fonts/NationalPark-Bold.ttf +0 -0
  619. package/skills/ui-styling/canvas-fonts/NationalPark-OFL.txt +93 -0
  620. package/skills/ui-styling/canvas-fonts/NationalPark-Regular.ttf +0 -0
  621. package/skills/ui-styling/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
  622. package/skills/ui-styling/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  623. package/skills/ui-styling/canvas-fonts/Outfit-Bold.ttf +0 -0
  624. package/skills/ui-styling/canvas-fonts/Outfit-OFL.txt +93 -0
  625. package/skills/ui-styling/canvas-fonts/Outfit-Regular.ttf +0 -0
  626. package/skills/ui-styling/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  627. package/skills/ui-styling/canvas-fonts/PixelifySans-OFL.txt +93 -0
  628. package/skills/ui-styling/canvas-fonts/PoiretOne-OFL.txt +93 -0
  629. package/skills/ui-styling/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  630. package/skills/ui-styling/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  631. package/skills/ui-styling/canvas-fonts/RedHatMono-OFL.txt +93 -0
  632. package/skills/ui-styling/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  633. package/skills/ui-styling/canvas-fonts/Silkscreen-OFL.txt +93 -0
  634. package/skills/ui-styling/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  635. package/skills/ui-styling/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  636. package/skills/ui-styling/canvas-fonts/SmoochSans-OFL.txt +93 -0
  637. package/skills/ui-styling/canvas-fonts/Tektur-Medium.ttf +0 -0
  638. package/skills/ui-styling/canvas-fonts/Tektur-OFL.txt +93 -0
  639. package/skills/ui-styling/canvas-fonts/Tektur-Regular.ttf +0 -0
  640. package/skills/ui-styling/canvas-fonts/WorkSans-Bold.ttf +0 -0
  641. package/skills/ui-styling/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  642. package/skills/ui-styling/canvas-fonts/WorkSans-Italic.ttf +0 -0
  643. package/skills/ui-styling/canvas-fonts/WorkSans-OFL.txt +93 -0
  644. package/skills/ui-styling/canvas-fonts/WorkSans-Regular.ttf +0 -0
  645. package/skills/ui-styling/canvas-fonts/YoungSerif-OFL.txt +93 -0
  646. package/skills/ui-styling/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  647. package/skills/ui-styling/references/canvas-design-system.md +320 -0
  648. package/skills/ui-ux-pro-max/SKILL.md +659 -0
  649. package/skills/video-editing/SKILL.md +310 -0
  650. package/skills/videodb/SKILL.md +374 -0
  651. package/skills/videodb/reference/api-reference.md +550 -0
  652. package/skills/videodb/reference/capture-reference.md +407 -0
  653. package/skills/videodb/reference/capture.md +101 -0
  654. package/skills/videodb/reference/editor.md +443 -0
  655. package/skills/videodb/reference/generative.md +331 -0
  656. package/skills/videodb/reference/rtstream-reference.md +564 -0
  657. package/skills/videodb/reference/rtstream.md +65 -0
  658. package/skills/videodb/reference/search.md +230 -0
  659. package/skills/videodb/reference/streaming.md +406 -0
  660. package/skills/videodb/reference/use-cases.md +118 -0
  661. package/skills/videodb/scripts/ws_listener.py +282 -0
  662. package/skills/visa-doc-translate/README.md +86 -0
  663. package/skills/visa-doc-translate/SKILL.md +117 -0
  664. package/skills/web-design-guidelines/SKILL.md +34 -0
  665. package/skills/web-frameworks/scripts/__init__.py +0 -0
  666. package/skills/x-api/SKILL.md +208 -0
  667. package/workflows/development-rules.md +0 -7
  668. package/workflows/documentation-management.md +28 -0
  669. package/workflows/primary-workflow.md +0 -7
  670. package/skills/tier-1/databases/scripts/.coverage +0 -0
  671. package/skills/tier-1/devops/.env.example +0 -76
  672. package/skills/tier-1/sequential-thinking/.env.example +0 -8
  673. package/skills/tier-1/ui-styling/references/canvas-design-system.md +0 -320
  674. package/skills/tier-1/ui-styling/scripts/.coverage +0 -0
  675. package/skills/tier-1/ui-ux-pro-max/SKILL.md +0 -659
  676. package/skills/tier-1/web-frameworks/scripts/.coverage +0 -0
  677. package/skills/tier-2/ai-multimodal/.env.example +0 -97
  678. package/skills/tier-2/ai-multimodal/scripts/.coverage +0 -0
  679. package/skills/tier-2/ai-multimodal/scripts/tests/.coverage +0 -0
  680. package/skills/tier-2/ai-multimodal/scripts/tests/test_failures.log +0 -258
  681. package/skills/tier-2/better-auth/scripts/.coverage +0 -0
  682. package/skills/tier-2/better-auth/scripts/tests/.coverage +0 -0
  683. package/skills/tier-2/design/SKILL.md +0 -302
  684. package/skills/tier-2/google-adk-python/SKILL.md +0 -242
  685. package/skills/tier-2/media-processing/scripts/tests/.coverage +0 -0
  686. package/skills/tier-2/payment-integration/scripts/.env.example +0 -20
  687. package/skills/tier-3/shopify/scripts/.coverage +0 -0
  688. package/skills/tier-3/shopify/scripts/tests/.coverage +0 -0
  689. /package/skills/{tier-3/agentic-engineering → agentic-engineering}/SKILL.md +0 -0
  690. /package/skills/{tier-2/continuous-learning/agents → agents}/observer-loop.sh +0 -0
  691. /package/skills/{tier-2/continuous-learning/agents → agents}/observer.md +0 -0
  692. /package/skills/{tier-2/continuous-learning/agents → agents}/session-guardian.sh +0 -0
  693. /package/skills/{tier-2/continuous-learning/agents → agents}/start-observer.sh +0 -0
  694. /package/skills/{tier-2/ai-multimodal → ai-multimodal}/SKILL.md +0 -0
  695. /package/skills/{tier-2/ai-multimodal → ai-multimodal}/references/audio-processing.md +0 -0
  696. /package/skills/{tier-2/ai-multimodal → ai-multimodal}/references/image-generation.md +0 -0
  697. /package/skills/{tier-2/ai-multimodal → ai-multimodal}/references/video-analysis.md +0 -0
  698. /package/skills/{tier-2/ai-multimodal → ai-multimodal}/references/vision-understanding.md +0 -0
  699. /package/skills/{tier-2/ai-multimodal → ai-multimodal}/scripts/document_converter.py +0 -0
  700. /package/skills/{tier-2/ai-multimodal → ai-multimodal}/scripts/gemini_batch_process.py +0 -0
  701. /package/skills/{tier-2/ai-multimodal → ai-multimodal}/scripts/media_optimizer.py +0 -0
  702. /package/skills/{tier-2/ai-multimodal → ai-multimodal}/scripts/requirements.txt +0 -0
  703. /package/skills/{tier-2/ai-multimodal → ai-multimodal}/scripts/tests/requirements.txt +0 -0
  704. /package/skills/{tier-2/ai-multimodal → ai-multimodal}/scripts/tests/test_document_converter.py +0 -0
  705. /package/skills/{tier-2/ai-multimodal → ai-multimodal}/scripts/tests/test_gemini_batch_process.py +0 -0
  706. /package/skills/{tier-2/ai-multimodal → ai-multimodal}/scripts/tests/test_media_optimizer.py +0 -0
  707. /package/skills/{tier-1/api-design → api-design}/SKILL.md +0 -0
  708. /package/skills/{tier-2/autonomous-loops → autonomous-loops}/SKILL.md +0 -0
  709. /package/skills/{tier-1/backend-development → backend-development}/SKILL.md +0 -0
  710. /package/skills/{tier-1/backend-development → backend-development}/references/backend-api-design.md +0 -0
  711. /package/skills/{tier-1/backend-development → backend-development}/references/backend-architecture.md +0 -0
  712. /package/skills/{tier-1/backend-development → backend-development}/references/backend-authentication.md +0 -0
  713. /package/skills/{tier-1/backend-development → backend-development}/references/backend-code-quality.md +0 -0
  714. /package/skills/{tier-1/backend-development → backend-development}/references/backend-debugging.md +0 -0
  715. /package/skills/{tier-1/backend-development → backend-development}/references/backend-devops.md +0 -0
  716. /package/skills/{tier-1/backend-development → backend-development}/references/backend-mindset.md +0 -0
  717. /package/skills/{tier-1/backend-development → backend-development}/references/backend-performance.md +0 -0
  718. /package/skills/{tier-1/backend-development → backend-development}/references/backend-security.md +0 -0
  719. /package/skills/{tier-1/backend-development → backend-development}/references/backend-technologies.md +0 -0
  720. /package/skills/{tier-1/backend-development → backend-development}/references/backend-testing.md +0 -0
  721. /package/skills/{tier-2/backend-patterns → backend-patterns}/SKILL.md +0 -0
  722. /package/skills/{tier-3/banner-design → banner-design}/SKILL.md +0 -0
  723. /package/skills/{tier-2/design → banner-design}/references/banner-sizes-and-styles.md +0 -0
  724. /package/skills/{tier-2/better-auth → better-auth}/SKILL.md +0 -0
  725. /package/skills/{tier-2/better-auth → better-auth}/references/advanced-features.md +0 -0
  726. /package/skills/{tier-2/better-auth → better-auth}/references/database-integration.md +0 -0
  727. /package/skills/{tier-2/better-auth → better-auth}/references/email-password-auth.md +0 -0
  728. /package/skills/{tier-2/better-auth → better-auth}/references/oauth-providers.md +0 -0
  729. /package/skills/{tier-2/better-auth → better-auth}/scripts/better_auth_init.py +0 -0
  730. /package/skills/{tier-2/better-auth → better-auth}/scripts/requirements.txt +0 -0
  731. /package/skills/{tier-2/better-auth → better-auth}/scripts/tests/test_better_auth_init.py +0 -0
  732. /package/skills/{tier-2/brand → brand}/SKILL.md +0 -0
  733. /package/skills/{tier-2/brand → brand}/references/approval-checklist.md +0 -0
  734. /package/skills/{tier-2/brand → brand}/references/asset-organization.md +0 -0
  735. /package/skills/{tier-2/brand → brand}/references/brand-guideline-template.md +0 -0
  736. /package/skills/{tier-2/brand → brand}/references/color-palette-management.md +0 -0
  737. /package/skills/{tier-2/brand → brand}/references/consistency-checklist.md +0 -0
  738. /package/skills/{tier-2/brand → brand}/references/logo-usage-rules.md +0 -0
  739. /package/skills/{tier-2/brand → brand}/references/messaging-framework.md +0 -0
  740. /package/skills/{tier-2/brand → brand}/references/typography-specifications.md +0 -0
  741. /package/skills/{tier-2/brand → brand}/references/update.md +0 -0
  742. /package/skills/{tier-2/brand → brand}/references/visual-identity.md +0 -0
  743. /package/skills/{tier-2/brand → brand}/references/voice-framework.md +0 -0
  744. /package/skills/{tier-2/brand → brand}/scripts/extract-colors.cjs +0 -0
  745. /package/skills/{tier-2/brand → brand}/scripts/inject-brand-context.cjs +0 -0
  746. /package/skills/{tier-2/brand → brand}/scripts/sync-brand-to-tokens.cjs +0 -0
  747. /package/skills/{tier-2/brand → brand}/scripts/validate-asset.cjs +0 -0
  748. /package/skills/{tier-2/brand → brand}/templates/brand-guidelines-starter.md +0 -0
  749. /package/skills/{tier-2/claude-code → claude-code}/SKILL.md +0 -0
  750. /package/skills/{tier-2/claude-code → claude-code}/references/advanced-features.md +0 -0
  751. /package/skills/{tier-2/claude-code → claude-code}/references/agent-skills.md +0 -0
  752. /package/skills/{tier-2/claude-code → claude-code}/references/api-reference.md +0 -0
  753. /package/skills/{tier-2/claude-code → claude-code}/references/best-practices.md +0 -0
  754. /package/skills/{tier-2/claude-code → claude-code}/references/cicd-integration.md +0 -0
  755. /package/skills/{tier-2/claude-code → claude-code}/references/configuration.md +0 -0
  756. /package/skills/{tier-2/claude-code → claude-code}/references/enterprise-features.md +0 -0
  757. /package/skills/{tier-2/claude-code → claude-code}/references/getting-started.md +0 -0
  758. /package/skills/{tier-2/claude-code → claude-code}/references/hooks-and-plugins.md +0 -0
  759. /package/skills/{tier-2/claude-code → claude-code}/references/ide-integration.md +0 -0
  760. /package/skills/{tier-2/claude-code → claude-code}/references/mcp-integration.md +0 -0
  761. /package/skills/{tier-2/claude-code → claude-code}/references/slash-commands.md +0 -0
  762. /package/skills/{tier-2/claude-code → claude-code}/references/troubleshooting.md +0 -0
  763. /package/skills/{tier-1/security-review/cloud-infrastructure-security.md → cloud-infrastructure-security.md} +0 -0
  764. /package/skills/{tier-1/code-review → code-review}/SKILL.md +0 -0
  765. /package/skills/{tier-1/code-review → code-review}/references/code-review-reception.md +0 -0
  766. /package/skills/{tier-1/code-review → code-review}/references/requesting-code-review.md +0 -0
  767. /package/skills/{tier-1/code-review → code-review}/references/verification-before-completion.md +0 -0
  768. /package/skills/{tier-2/codebase-onboarding → codebase-onboarding}/SKILL.md +0 -0
  769. /package/skills/{tier-2/coding-standards → coding-standards}/SKILL.md +0 -0
  770. /package/skills/{tier-2/continuous-learning → continuous-learning-v2}/SKILL.md +0 -0
  771. /package/skills/{tier-2/continuous-learning → continuous-learning-v2}/config.json +0 -0
  772. /package/skills/{tier-2/continuous-learning → continuous-learning-v2}/hooks/observe.sh +0 -0
  773. /package/skills/{tier-2/continuous-learning → continuous-learning-v2}/scripts/detect-project.sh +0 -0
  774. /package/skills/{tier-2/continuous-learning → continuous-learning-v2}/scripts/instinct-cli.py +0 -0
  775. /package/skills/{tier-2/continuous-learning → continuous-learning-v2}/scripts/test_parse_instinct.py +0 -0
  776. /package/skills/{tier-3/cost-aware-llm-pipeline → cost-aware-llm-pipeline}/SKILL.md +0 -0
  777. /package/skills/{tier-2/database-migrations → database-migrations}/SKILL.md +0 -0
  778. /package/skills/{tier-1/databases → databases}/SKILL.md +0 -0
  779. /package/skills/{tier-1/databases → databases}/references/mongodb-aggregation.md +0 -0
  780. /package/skills/{tier-1/databases → databases}/references/mongodb-atlas.md +0 -0
  781. /package/skills/{tier-1/databases → databases}/references/mongodb-crud.md +0 -0
  782. /package/skills/{tier-1/databases → databases}/references/mongodb-indexing.md +0 -0
  783. /package/skills/{tier-1/databases → databases}/references/postgresql-administration.md +0 -0
  784. /package/skills/{tier-1/databases → databases}/references/postgresql-performance.md +0 -0
  785. /package/skills/{tier-1/databases → databases}/references/postgresql-psql-cli.md +0 -0
  786. /package/skills/{tier-1/databases → databases}/references/postgresql-queries.md +0 -0
  787. /package/skills/{tier-1/databases → databases}/scripts/db_backup.py +0 -0
  788. /package/skills/{tier-1/databases → databases}/scripts/db_migrate.py +0 -0
  789. /package/skills/{tier-1/databases → databases}/scripts/db_performance_check.py +0 -0
  790. /package/skills/{tier-1/databases → databases}/scripts/requirements.txt +0 -0
  791. /package/skills/{tier-1/databases → databases}/scripts/tests/coverage-db.json +0 -0
  792. /package/skills/{tier-1/databases → databases}/scripts/tests/requirements.txt +0 -0
  793. /package/skills/{tier-1/databases → databases}/scripts/tests/test_db_backup.py +0 -0
  794. /package/skills/{tier-1/databases → databases}/scripts/tests/test_db_migrate.py +0 -0
  795. /package/skills/{tier-1/databases → databases}/scripts/tests/test_db_performance_check.py +0 -0
  796. /package/skills/{tier-1/debugging → debugging}/SKILL.md +0 -0
  797. /package/skills/{tier-1/debugging → debugging}/references/defense-in-depth.md +0 -0
  798. /package/skills/{tier-1/debugging → debugging}/references/root-cause-tracing.md +0 -0
  799. /package/skills/{tier-1/debugging → debugging}/references/systematic-debugging.md +0 -0
  800. /package/skills/{tier-1/debugging → debugging}/references/verification.md +0 -0
  801. /package/skills/{tier-1/debugging → debugging}/scripts/find-polluter.sh +0 -0
  802. /package/skills/{tier-1/debugging → debugging}/scripts/find-polluter.test.md +0 -0
  803. /package/skills/{tier-2/deployment-patterns → deployment-patterns}/SKILL.md +0 -0
  804. /package/skills/{tier-2/design → design}/data/cip/deliverables.csv +0 -0
  805. /package/skills/{tier-2/design → design}/data/cip/industries.csv +0 -0
  806. /package/skills/{tier-2/design → design}/data/cip/mockup-contexts.csv +0 -0
  807. /package/skills/{tier-2/design → design}/data/cip/styles.csv +0 -0
  808. /package/skills/{tier-2/design → design}/data/icon/styles.csv +0 -0
  809. /package/skills/{tier-2/design → design}/data/logo/colors.csv +0 -0
  810. /package/skills/{tier-2/design → design}/data/logo/industries.csv +0 -0
  811. /package/skills/{tier-2/design → design}/data/logo/styles.csv +0 -0
  812. /package/skills/{tier-3/banner-design → design}/references/banner-sizes-and-styles.md +0 -0
  813. /package/skills/{tier-2/design → design}/references/cip-deliverable-guide.md +0 -0
  814. /package/skills/{tier-2/design → design}/references/cip-design.md +0 -0
  815. /package/skills/{tier-2/design → design}/references/cip-prompt-engineering.md +0 -0
  816. /package/skills/{tier-2/design → design}/references/cip-style-guide.md +0 -0
  817. /package/skills/{tier-2/design → design}/references/design-routing.md +0 -0
  818. /package/skills/{tier-2/design → design}/references/icon-design.md +0 -0
  819. /package/skills/{tier-2/design → design}/references/logo-color-psychology.md +0 -0
  820. /package/skills/{tier-2/design → design}/references/logo-design.md +0 -0
  821. /package/skills/{tier-2/design → design}/references/logo-prompt-engineering.md +0 -0
  822. /package/skills/{tier-2/design → design}/references/logo-style-guide.md +0 -0
  823. /package/skills/{tier-2/design → design}/references/slides-copywriting-formulas.md +0 -0
  824. /package/skills/{tier-2/design → design}/references/slides-create.md +0 -0
  825. /package/skills/{tier-2/design → design}/references/slides-html-template.md +0 -0
  826. /package/skills/{tier-2/design → design}/references/slides-layout-patterns.md +0 -0
  827. /package/skills/{tier-2/design → design}/references/slides-strategies.md +0 -0
  828. /package/skills/{tier-2/design → design}/references/slides.md +0 -0
  829. /package/skills/{tier-2/design → design}/references/social-photos-design.md +0 -0
  830. /package/skills/{tier-2/design → design}/scripts/cip/core.py +0 -0
  831. /package/skills/{tier-2/design → design}/scripts/cip/generate.py +0 -0
  832. /package/skills/{tier-2/design → design}/scripts/cip/render-html.py +0 -0
  833. /package/skills/{tier-2/design → design}/scripts/cip/search.py +0 -0
  834. /package/skills/{tier-2/design → design}/scripts/icon/generate.py +0 -0
  835. /package/skills/{tier-2/design → design}/scripts/logo/core.py +0 -0
  836. /package/skills/{tier-2/design → design}/scripts/logo/generate.py +0 -0
  837. /package/skills/{tier-2/design → design}/scripts/logo/search.py +0 -0
  838. /package/skills/{tier-2/design-system → design-system}/SKILL.md +0 -0
  839. /package/skills/{tier-2/design-system → design-system}/data/slide-backgrounds.csv +0 -0
  840. /package/skills/{tier-2/design-system → design-system}/data/slide-charts.csv +0 -0
  841. /package/skills/{tier-2/design-system → design-system}/data/slide-color-logic.csv +0 -0
  842. /package/skills/{tier-2/design-system → design-system}/data/slide-copy.csv +0 -0
  843. /package/skills/{tier-2/design-system → design-system}/data/slide-layout-logic.csv +0 -0
  844. /package/skills/{tier-2/design-system → design-system}/data/slide-layouts.csv +0 -0
  845. /package/skills/{tier-2/design-system → design-system}/data/slide-strategies.csv +0 -0
  846. /package/skills/{tier-2/design-system → design-system}/data/slide-typography.csv +0 -0
  847. /package/skills/{tier-2/design-system → design-system}/references/component-specs.md +0 -0
  848. /package/skills/{tier-2/design-system → design-system}/references/component-tokens.md +0 -0
  849. /package/skills/{tier-2/design-system → design-system}/references/primitive-tokens.md +0 -0
  850. /package/skills/{tier-2/design-system → design-system}/references/semantic-tokens.md +0 -0
  851. /package/skills/{tier-2/design-system → design-system}/references/states-and-variants.md +0 -0
  852. /package/skills/{tier-2/design-system → design-system}/references/tailwind-integration.md +0 -0
  853. /package/skills/{tier-2/design-system → design-system}/references/token-architecture.md +0 -0
  854. /package/skills/{tier-2/design-system → design-system}/scripts/embed-tokens.cjs +0 -0
  855. /package/skills/{tier-2/design-system → design-system}/scripts/fetch-background.py +0 -0
  856. /package/skills/{tier-2/design-system → design-system}/scripts/generate-slide.py +0 -0
  857. /package/skills/{tier-2/design-system → design-system}/scripts/generate-tokens.cjs +0 -0
  858. /package/skills/{tier-2/design-system → design-system}/scripts/html-token-validator.py +0 -0
  859. /package/skills/{tier-2/design-system → design-system}/scripts/search-slides.py +0 -0
  860. /package/skills/{tier-2/design-system → design-system}/scripts/slide-token-validator.py +0 -0
  861. /package/skills/{tier-2/design-system → design-system}/scripts/slide_search_core.py +0 -0
  862. /package/skills/{tier-2/design-system → design-system}/scripts/validate-tokens.cjs +0 -0
  863. /package/skills/{tier-2/design-system → design-system}/templates/design-tokens-starter.json +0 -0
  864. /package/skills/{tier-1/devops → devops}/SKILL.md +0 -0
  865. /package/skills/{tier-1/devops → devops}/references/browser-rendering.md +0 -0
  866. /package/skills/{tier-1/devops → devops}/references/cloudflare-d1-kv.md +0 -0
  867. /package/skills/{tier-1/devops → devops}/references/cloudflare-platform.md +0 -0
  868. /package/skills/{tier-1/devops → devops}/references/cloudflare-r2-storage.md +0 -0
  869. /package/skills/{tier-1/devops → devops}/references/cloudflare-workers-advanced.md +0 -0
  870. /package/skills/{tier-1/devops → devops}/references/cloudflare-workers-apis.md +0 -0
  871. /package/skills/{tier-1/devops → devops}/references/cloudflare-workers-basics.md +0 -0
  872. /package/skills/{tier-1/devops → devops}/references/docker-basics.md +0 -0
  873. /package/skills/{tier-1/devops → devops}/references/docker-compose.md +0 -0
  874. /package/skills/{tier-1/devops → devops}/references/gcloud-platform.md +0 -0
  875. /package/skills/{tier-1/devops → devops}/references/gcloud-services.md +0 -0
  876. /package/skills/{tier-1/devops → devops}/scripts/cloudflare_deploy.py +0 -0
  877. /package/skills/{tier-1/devops → devops}/scripts/docker_optimize.py +0 -0
  878. /package/skills/{tier-1/devops → devops}/scripts/requirements.txt +0 -0
  879. /package/skills/{tier-1/devops → devops}/scripts/tests/requirements.txt +0 -0
  880. /package/skills/{tier-1/devops → devops}/scripts/tests/test_cloudflare_deploy.py +0 -0
  881. /package/skills/{tier-1/devops → devops}/scripts/tests/test_docker_optimize.py +0 -0
  882. /package/skills/{tier-3/django-patterns → django-patterns}/SKILL.md +0 -0
  883. /package/skills/{tier-2/docker-patterns → docker-patterns}/SKILL.md +0 -0
  884. /package/skills/{tier-2/e2e-testing → e2e-testing}/SKILL.md +0 -0
  885. /package/skills/{tier-2/eval-harness → eval-harness}/SKILL.md +0 -0
  886. /package/skills/{tier-1/frontend-development → frontend-development}/SKILL.md +0 -0
  887. /package/skills/{tier-1/frontend-development → frontend-development}/resources/common-patterns.md +0 -0
  888. /package/skills/{tier-1/frontend-development → frontend-development}/resources/complete-examples.md +0 -0
  889. /package/skills/{tier-1/frontend-development → frontend-development}/resources/component-patterns.md +0 -0
  890. /package/skills/{tier-1/frontend-development → frontend-development}/resources/data-fetching.md +0 -0
  891. /package/skills/{tier-1/frontend-development → frontend-development}/resources/file-organization.md +0 -0
  892. /package/skills/{tier-1/frontend-development → frontend-development}/resources/loading-and-error-states.md +0 -0
  893. /package/skills/{tier-1/frontend-development → frontend-development}/resources/performance.md +0 -0
  894. /package/skills/{tier-1/frontend-development → frontend-development}/resources/routing-guide.md +0 -0
  895. /package/skills/{tier-1/frontend-development → frontend-development}/resources/styling-guide.md +0 -0
  896. /package/skills/{tier-1/frontend-development → frontend-development}/resources/typescript-standards.md +0 -0
  897. /package/skills/{tier-2/frontend-patterns → frontend-patterns}/SKILL.md +0 -0
  898. /package/skills/{tier-3/golang-patterns → golang-patterns}/SKILL.md +0 -0
  899. /package/skills/{tier-3/kotlin-patterns → kotlin-patterns}/SKILL.md +0 -0
  900. /package/skills/{tier-3/laravel-patterns → laravel-patterns}/SKILL.md +0 -0
  901. /package/skills/{tier-1/ui-styling → mcp-builder}/LICENSE.txt +0 -0
  902. /package/skills/{tier-2/mcp-management → mcp-management}/README.md +0 -0
  903. /package/skills/{tier-2/mcp-management → mcp-management}/SKILL.md +0 -0
  904. /package/skills/{tier-2/mcp-management → mcp-management}/assets/tools.json +0 -0
  905. /package/skills/{tier-2/mcp-management → mcp-management}/references/configuration.md +0 -0
  906. /package/skills/{tier-2/mcp-management → mcp-management}/references/gemini-cli-integration.md +0 -0
  907. /package/skills/{tier-2/mcp-management → mcp-management}/references/mcp-protocol.md +0 -0
  908. /package/skills/{tier-2/mcp-management → mcp-management}/scripts/.env.example +0 -0
  909. /package/skills/{tier-2/mcp-management → mcp-management}/scripts/cli.ts +0 -0
  910. /package/skills/{tier-2/mcp-management → mcp-management}/scripts/dist/analyze-tools.js +0 -0
  911. /package/skills/{tier-2/mcp-management → mcp-management}/scripts/dist/cli.js +0 -0
  912. /package/skills/{tier-2/mcp-management → mcp-management}/scripts/dist/mcp-client.js +0 -0
  913. /package/skills/{tier-2/mcp-management → mcp-management}/scripts/mcp-client.ts +0 -0
  914. /package/skills/{tier-2/mcp-management → mcp-management}/scripts/package.json +0 -0
  915. /package/skills/{tier-2/mcp-management → mcp-management}/scripts/tsconfig.json +0 -0
  916. /package/skills/{tier-2/mcp-server-patterns → mcp-server-patterns}/SKILL.md +0 -0
  917. /package/skills/{tier-2/media-processing → media-processing}/SKILL.md +0 -0
  918. /package/skills/{tier-2/media-processing → media-processing}/references/ffmpeg-encoding.md +0 -0
  919. /package/skills/{tier-2/media-processing → media-processing}/references/ffmpeg-filters.md +0 -0
  920. /package/skills/{tier-2/media-processing → media-processing}/references/ffmpeg-streaming.md +0 -0
  921. /package/skills/{tier-2/media-processing → media-processing}/references/format-compatibility.md +0 -0
  922. /package/skills/{tier-2/media-processing → media-processing}/references/imagemagick-batch.md +0 -0
  923. /package/skills/{tier-2/media-processing → media-processing}/references/imagemagick-editing.md +0 -0
  924. /package/skills/{tier-2/media-processing → media-processing}/scripts/batch_resize.py +0 -0
  925. /package/skills/{tier-2/media-processing → media-processing}/scripts/media_convert.py +0 -0
  926. /package/skills/{tier-2/media-processing → media-processing}/scripts/requirements.txt +0 -0
  927. /package/skills/{tier-2/media-processing → media-processing}/scripts/tests/requirements.txt +0 -0
  928. /package/skills/{tier-2/media-processing → media-processing}/scripts/tests/test_batch_resize.py +0 -0
  929. /package/skills/{tier-2/media-processing → media-processing}/scripts/tests/test_media_convert.py +0 -0
  930. /package/skills/{tier-2/media-processing → media-processing}/scripts/tests/test_video_optimize.py +0 -0
  931. /package/skills/{tier-2/media-processing → media-processing}/scripts/video_optimize.py +0 -0
  932. /package/skills/{tier-2/mobile-development → mobile-development}/SKILL.md +0 -0
  933. /package/skills/{tier-2/mobile-development → mobile-development}/references/mobile-android.md +0 -0
  934. /package/skills/{tier-2/mobile-development → mobile-development}/references/mobile-best-practices.md +0 -0
  935. /package/skills/{tier-2/mobile-development → mobile-development}/references/mobile-debugging.md +0 -0
  936. /package/skills/{tier-2/mobile-development → mobile-development}/references/mobile-frameworks.md +0 -0
  937. /package/skills/{tier-2/mobile-development → mobile-development}/references/mobile-ios.md +0 -0
  938. /package/skills/{tier-2/mobile-development → mobile-development}/references/mobile-mindset.md +0 -0
  939. /package/skills/{tier-2/payment-integration → payment-integration}/README.md +0 -0
  940. /package/skills/{tier-2/payment-integration → payment-integration}/SKILL.md +0 -0
  941. /package/skills/{tier-2/payment-integration → payment-integration}/references/polar/benefits.md +0 -0
  942. /package/skills/{tier-2/payment-integration → payment-integration}/references/polar/best-practices.md +0 -0
  943. /package/skills/{tier-2/payment-integration → payment-integration}/references/polar/checkouts.md +0 -0
  944. /package/skills/{tier-2/payment-integration → payment-integration}/references/polar/overview.md +0 -0
  945. /package/skills/{tier-2/payment-integration → payment-integration}/references/polar/products.md +0 -0
  946. /package/skills/{tier-2/payment-integration → payment-integration}/references/polar/sdk.md +0 -0
  947. /package/skills/{tier-2/payment-integration → payment-integration}/references/polar/subscriptions.md +0 -0
  948. /package/skills/{tier-2/payment-integration → payment-integration}/references/polar/webhooks.md +0 -0
  949. /package/skills/{tier-2/payment-integration → payment-integration}/references/sepay/api.md +0 -0
  950. /package/skills/{tier-2/payment-integration → payment-integration}/references/sepay/best-practices.md +0 -0
  951. /package/skills/{tier-2/payment-integration → payment-integration}/references/sepay/overview.md +0 -0
  952. /package/skills/{tier-2/payment-integration → payment-integration}/references/sepay/qr-codes.md +0 -0
  953. /package/skills/{tier-2/payment-integration → payment-integration}/references/sepay/sdk.md +0 -0
  954. /package/skills/{tier-2/payment-integration → payment-integration}/references/sepay/webhooks.md +0 -0
  955. /package/skills/{tier-2/payment-integration → payment-integration}/scripts/checkout-helper.js +0 -0
  956. /package/skills/{tier-2/payment-integration → payment-integration}/scripts/package.json +0 -0
  957. /package/skills/{tier-2/payment-integration → payment-integration}/scripts/polar-webhook-verify.js +0 -0
  958. /package/skills/{tier-2/payment-integration → payment-integration}/scripts/sepay-webhook-verify.js +0 -0
  959. /package/skills/{tier-2/payment-integration → payment-integration}/scripts/test-scripts.js +0 -0
  960. /package/skills/{tier-2/planning → planning}/SKILL.md +0 -0
  961. /package/skills/{tier-2/planning → planning}/references/codebase-understanding.md +0 -0
  962. /package/skills/{tier-2/planning → planning}/references/output-standards.md +0 -0
  963. /package/skills/{tier-2/planning → planning}/references/plan-organization.md +0 -0
  964. /package/skills/{tier-2/planning → planning}/references/research-phase.md +0 -0
  965. /package/skills/{tier-2/planning → planning}/references/solution-design.md +0 -0
  966. /package/skills/{tier-2/postgres-patterns → postgres-patterns}/SKILL.md +0 -0
  967. /package/skills/{tier-2/problem-solving → problem-solving}/SKILL.md +0 -0
  968. /package/skills/{tier-2/problem-solving → problem-solving}/references/attribution.md +0 -0
  969. /package/skills/{tier-2/problem-solving → problem-solving}/references/collision-zone-thinking.md +0 -0
  970. /package/skills/{tier-2/problem-solving → problem-solving}/references/inversion-exercise.md +0 -0
  971. /package/skills/{tier-2/problem-solving → problem-solving}/references/meta-pattern-recognition.md +0 -0
  972. /package/skills/{tier-2/problem-solving → problem-solving}/references/scale-game.md +0 -0
  973. /package/skills/{tier-2/problem-solving → problem-solving}/references/simplification-cascades.md +0 -0
  974. /package/skills/{tier-2/problem-solving → problem-solving}/references/when-stuck.md +0 -0
  975. /package/skills/{tier-3/prompt-optimizer → prompt-optimizer}/SKILL.md +0 -0
  976. /package/skills/{tier-3/python-patterns → python-patterns}/SKILL.md +0 -0
  977. /package/skills/{tier-3/pytorch-patterns → pytorch-patterns}/SKILL.md +0 -0
  978. /package/skills/{tier-1/react-best-practices → react-best-practices}/AGENTS.md +0 -0
  979. /package/skills/{tier-1/react-best-practices → react-best-practices}/README.md +0 -0
  980. /package/skills/{tier-1/react-best-practices → react-best-practices}/SKILL.md +0 -0
  981. /package/skills/{tier-1/react-best-practices → react-best-practices}/metadata.json +0 -0
  982. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/_sections.md +0 -0
  983. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/_template.md +0 -0
  984. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/advanced-event-handler-refs.md +0 -0
  985. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/advanced-use-latest.md +0 -0
  986. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/async-api-routes.md +0 -0
  987. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/async-defer-await.md +0 -0
  988. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/async-dependencies.md +0 -0
  989. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/async-parallel.md +0 -0
  990. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/async-suspense-boundaries.md +0 -0
  991. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/bundle-barrel-imports.md +0 -0
  992. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/bundle-conditional.md +0 -0
  993. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/bundle-defer-third-party.md +0 -0
  994. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/bundle-dynamic-imports.md +0 -0
  995. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/bundle-preload.md +0 -0
  996. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/client-event-listeners.md +0 -0
  997. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/client-localstorage-schema.md +0 -0
  998. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/client-passive-event-listeners.md +0 -0
  999. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/client-swr-dedup.md +0 -0
  1000. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-batch-dom-css.md +0 -0
  1001. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-cache-function-results.md +0 -0
  1002. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-cache-property-access.md +0 -0
  1003. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-cache-storage.md +0 -0
  1004. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-combine-iterations.md +0 -0
  1005. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-early-exit.md +0 -0
  1006. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-hoist-regexp.md +0 -0
  1007. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-index-maps.md +0 -0
  1008. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-length-check-first.md +0 -0
  1009. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-min-max-loop.md +0 -0
  1010. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-set-map-lookups.md +0 -0
  1011. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-tosorted-immutable.md +0 -0
  1012. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rendering-activity.md +0 -0
  1013. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rendering-animate-svg-wrapper.md +0 -0
  1014. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rendering-conditional-render.md +0 -0
  1015. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rendering-content-visibility.md +0 -0
  1016. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rendering-hoist-jsx.md +0 -0
  1017. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rendering-hydration-no-flicker.md +0 -0
  1018. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rendering-svg-precision.md +0 -0
  1019. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rerender-defer-reads.md +0 -0
  1020. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rerender-dependencies.md +0 -0
  1021. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rerender-derived-state.md +0 -0
  1022. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rerender-functional-setstate.md +0 -0
  1023. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rerender-lazy-state-init.md +0 -0
  1024. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rerender-memo.md +0 -0
  1025. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rerender-transitions.md +0 -0
  1026. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/server-after-nonblocking.md +0 -0
  1027. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/server-cache-lru.md +0 -0
  1028. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/server-cache-react.md +0 -0
  1029. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/server-parallel-fetching.md +0 -0
  1030. /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/server-serialization.md +0 -0
  1031. /package/skills/{tier-1/research → research}/SKILL.md +0 -0
  1032. /package/skills/{tier-3/rust-patterns → rust-patterns}/SKILL.md +0 -0
  1033. /package/skills/{tier-1/web-frameworks/scripts → scripts}/__init__.py +0 -0
  1034. /package/skills/{tier-1/security-review → security-review}/SKILL.md +0 -0
  1035. /package/skills/{tier-1/sequential-thinking → sequential-thinking}/README.md +0 -0
  1036. /package/skills/{tier-1/sequential-thinking → sequential-thinking}/SKILL.md +0 -0
  1037. /package/skills/{tier-1/sequential-thinking → sequential-thinking}/package.json +0 -0
  1038. /package/skills/{tier-1/sequential-thinking → sequential-thinking}/references/advanced-strategies.md +0 -0
  1039. /package/skills/{tier-1/sequential-thinking → sequential-thinking}/references/advanced-techniques.md +0 -0
  1040. /package/skills/{tier-1/sequential-thinking → sequential-thinking}/references/core-patterns.md +0 -0
  1041. /package/skills/{tier-1/sequential-thinking → sequential-thinking}/references/examples-api.md +0 -0
  1042. /package/skills/{tier-1/sequential-thinking → sequential-thinking}/references/examples-architecture.md +0 -0
  1043. /package/skills/{tier-1/sequential-thinking → sequential-thinking}/references/examples-debug.md +0 -0
  1044. /package/skills/{tier-1/sequential-thinking → sequential-thinking}/scripts/format-thought.js +0 -0
  1045. /package/skills/{tier-1/sequential-thinking → sequential-thinking}/scripts/process-thought.js +0 -0
  1046. /package/skills/{tier-1/sequential-thinking → sequential-thinking}/tests/format-thought.test.js +0 -0
  1047. /package/skills/{tier-1/sequential-thinking → sequential-thinking}/tests/process-thought.test.js +0 -0
  1048. /package/skills/{tier-3/shopify → shopify}/README.md +0 -0
  1049. /package/skills/{tier-3/shopify → shopify}/SKILL.md +0 -0
  1050. /package/skills/{tier-3/shopify → shopify}/references/app-development.md +0 -0
  1051. /package/skills/{tier-3/shopify → shopify}/references/extensions.md +0 -0
  1052. /package/skills/{tier-3/shopify → shopify}/references/themes.md +0 -0
  1053. /package/skills/{tier-3/shopify → shopify}/scripts/requirements.txt +0 -0
  1054. /package/skills/{tier-3/shopify → shopify}/scripts/shopify_init.py +0 -0
  1055. /package/skills/{tier-3/shopify → shopify}/scripts/tests/test_shopify_init.py +0 -0
  1056. /package/skills/{tier-3/slides → slides}/SKILL.md +0 -0
  1057. /package/skills/{tier-3/slides → slides}/references/copywriting-formulas.md +0 -0
  1058. /package/skills/{tier-3/slides → slides}/references/create.md +0 -0
  1059. /package/skills/{tier-3/slides → slides}/references/html-template.md +0 -0
  1060. /package/skills/{tier-3/slides → slides}/references/layout-patterns.md +0 -0
  1061. /package/skills/{tier-3/slides → slides}/references/slide-strategies.md +0 -0
  1062. /package/skills/{tier-3/springboot-patterns → springboot-patterns}/SKILL.md +0 -0
  1063. /package/skills/{tier-2/strategic-compact → strategic-compact}/SKILL.md +0 -0
  1064. /package/skills/{tier-2/strategic-compact → strategic-compact}/suggest-compact.sh +0 -0
  1065. /package/skills/{tier-3/swiftui-patterns → swiftui-patterns}/SKILL.md +0 -0
  1066. /package/skills/{tier-1/tdd-workflow → tdd-workflow}/SKILL.md +0 -0
  1067. /package/skills/{tier-1/testing → testing}/SKILL.md +0 -0
  1068. /package/skills/{tier-3/threejs → threejs}/SKILL.md +0 -0
  1069. /package/skills/{tier-3/threejs → threejs}/references/01-getting-started.md +0 -0
  1070. /package/skills/{tier-3/threejs → threejs}/references/02-loaders.md +0 -0
  1071. /package/skills/{tier-3/threejs → threejs}/references/03-textures.md +0 -0
  1072. /package/skills/{tier-3/threejs → threejs}/references/04-cameras.md +0 -0
  1073. /package/skills/{tier-3/threejs → threejs}/references/05-lights.md +0 -0
  1074. /package/skills/{tier-3/threejs → threejs}/references/06-animations.md +0 -0
  1075. /package/skills/{tier-3/threejs → threejs}/references/07-math.md +0 -0
  1076. /package/skills/{tier-3/threejs → threejs}/references/08-interaction.md +0 -0
  1077. /package/skills/{tier-3/threejs → threejs}/references/09-postprocessing.md +0 -0
  1078. /package/skills/{tier-3/threejs → threejs}/references/10-controls.md +0 -0
  1079. /package/skills/{tier-3/threejs → threejs}/references/11-materials-advanced.md +0 -0
  1080. /package/skills/{tier-3/threejs → threejs}/references/12-performance.md +0 -0
  1081. /package/skills/{tier-3/threejs → threejs}/references/13-node-materials.md +0 -0
  1082. /package/skills/{tier-3/threejs → threejs}/references/14-physics-vr.md +0 -0
  1083. /package/skills/{tier-3/threejs → threejs}/references/15-specialized-loaders.md +0 -0
  1084. /package/skills/{tier-3/threejs → threejs}/references/16-webgpu.md +0 -0
  1085. /package/skills/{tier-1/ui-styling → ui-styling}/SKILL.md +0 -0
  1086. /package/skills/{tier-1/ui-styling → ui-styling}/references/shadcn-accessibility.md +0 -0
  1087. /package/skills/{tier-1/ui-styling → ui-styling}/references/shadcn-components.md +0 -0
  1088. /package/skills/{tier-1/ui-styling → ui-styling}/references/shadcn-theming.md +0 -0
  1089. /package/skills/{tier-1/ui-styling → ui-styling}/references/tailwind-customization.md +0 -0
  1090. /package/skills/{tier-1/ui-styling → ui-styling}/references/tailwind-responsive.md +0 -0
  1091. /package/skills/{tier-1/ui-styling → ui-styling}/references/tailwind-utilities.md +0 -0
  1092. /package/skills/{tier-1/ui-styling → ui-styling}/scripts/requirements.txt +0 -0
  1093. /package/skills/{tier-1/ui-styling → ui-styling}/scripts/shadcn_add.py +0 -0
  1094. /package/skills/{tier-1/ui-styling → ui-styling}/scripts/tailwind_config_gen.py +0 -0
  1095. /package/skills/{tier-1/ui-styling → ui-styling}/scripts/tests/coverage-ui.json +0 -0
  1096. /package/skills/{tier-1/ui-styling → ui-styling}/scripts/tests/requirements.txt +0 -0
  1097. /package/skills/{tier-1/ui-styling → ui-styling}/scripts/tests/test_shadcn_add.py +0 -0
  1098. /package/skills/{tier-1/ui-styling → ui-styling}/scripts/tests/test_tailwind_config_gen.py +0 -0
  1099. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/_sync_all.py +0 -0
  1100. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/app-interface.csv +0 -0
  1101. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/charts.csv +0 -0
  1102. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/colors.csv +0 -0
  1103. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/design.csv +0 -0
  1104. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/draft.csv +0 -0
  1105. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/google-fonts.csv +0 -0
  1106. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/icons.csv +0 -0
  1107. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/landing.csv +0 -0
  1108. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/products.csv +0 -0
  1109. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/react-performance.csv +0 -0
  1110. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/react-native.csv +0 -0
  1111. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/styles.csv +0 -0
  1112. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/typography.csv +0 -0
  1113. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/ui-reasoning.csv +0 -0
  1114. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/ux-guidelines.csv +0 -0
  1115. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/scripts/core.py +0 -0
  1116. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/scripts/design_system.py +0 -0
  1117. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/scripts/search.py +0 -0
  1118. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/base/quick-reference.md +0 -0
  1119. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/base/skill-content.md +0 -0
  1120. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/agent.json +0 -0
  1121. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/claude.json +0 -0
  1122. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/codebuddy.json +0 -0
  1123. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/codex.json +0 -0
  1124. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/continue.json +0 -0
  1125. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/copilot.json +0 -0
  1126. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/cursor.json +0 -0
  1127. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/droid.json +0 -0
  1128. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/gemini.json +0 -0
  1129. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/kiro.json +0 -0
  1130. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/opencode.json +0 -0
  1131. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/qoder.json +0 -0
  1132. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/roocode.json +0 -0
  1133. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/trae.json +0 -0
  1134. /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/windsurf.json +0 -0
  1135. /package/skills/{tier-3/vercel-deploy → vercel-deploy}/SKILL.md +0 -0
  1136. /package/skills/{tier-3/vercel-deploy → vercel-deploy}/scripts/deploy.sh +0 -0
  1137. /package/skills/{tier-2/verification-loop → verification-loop}/SKILL.md +0 -0
  1138. /package/skills/{tier-1/web-frameworks → web-frameworks}/SKILL.md +0 -0
  1139. /package/skills/{tier-1/web-frameworks → web-frameworks}/references/nextjs-app-router.md +0 -0
  1140. /package/skills/{tier-1/web-frameworks → web-frameworks}/references/nextjs-data-fetching.md +0 -0
  1141. /package/skills/{tier-1/web-frameworks → web-frameworks}/references/nextjs-optimization.md +0 -0
  1142. /package/skills/{tier-1/web-frameworks → web-frameworks}/references/nextjs-server-components.md +0 -0
  1143. /package/skills/{tier-1/web-frameworks → web-frameworks}/references/remix-icon-integration.md +0 -0
  1144. /package/skills/{tier-1/web-frameworks → web-frameworks}/references/turborepo-caching.md +0 -0
  1145. /package/skills/{tier-1/web-frameworks → web-frameworks}/references/turborepo-pipelines.md +0 -0
  1146. /package/skills/{tier-1/web-frameworks → web-frameworks}/references/turborepo-setup.md +0 -0
  1147. /package/skills/{tier-1/web-frameworks → web-frameworks}/scripts/nextjs_init.py +0 -0
  1148. /package/skills/{tier-1/web-frameworks → web-frameworks}/scripts/requirements.txt +0 -0
  1149. /package/skills/{tier-1/web-frameworks → web-frameworks}/scripts/tests/coverage-web.json +0 -0
  1150. /package/skills/{tier-1/web-frameworks → web-frameworks}/scripts/tests/requirements.txt +0 -0
  1151. /package/skills/{tier-1/web-frameworks → web-frameworks}/scripts/tests/test_nextjs_init.py +0 -0
  1152. /package/skills/{tier-1/web-frameworks → web-frameworks}/scripts/tests/test_turborepo_migrate.py +0 -0
  1153. /package/skills/{tier-1/web-frameworks → web-frameworks}/scripts/turborepo_migrate.py +0 -0
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "claude-skill-lord",
3
- "version": "1.5.1",
4
- "description": "Curated Claude Code plugin — 22 agents, 61 skills, 40+ commands with intelligent skill routing and UI/UX design intelligence",
3
+ "version": "2.0.2",
4
+ "description": "Curated Claude Code plugin — 44 agents, 170 skills, 115 commands, 13 language rules with intelligent skill routing",
5
5
  "author": {
6
6
  "name": "Dong Anh",
7
7
  "email": "donganhvu20@gmail.com"
@@ -18,7 +18,9 @@
18
18
  "quality-gate",
19
19
  "tdd",
20
20
  "code-review",
21
- "developer-tools"
21
+ "developer-tools",
22
+ "multi-language",
23
+ "rules"
22
24
  ],
23
25
  "agents": [
24
26
  "./agents/architect.md",
@@ -27,29 +29,49 @@
27
29
  "./agents/chief-of-staff.md",
28
30
  "./agents/code-reviewer.md",
29
31
  "./agents/copywriter.md",
32
+ "./agents/cpp-build-resolver.md",
33
+ "./agents/cpp-reviewer.md",
30
34
  "./agents/database-admin.md",
35
+ "./agents/database-reviewer.md",
31
36
  "./agents/debugger.md",
37
+ "./agents/doc-updater.md",
38
+ "./agents/docs-lookup.md",
32
39
  "./agents/docs-manager.md",
33
40
  "./agents/e2e-runner.md",
41
+ "./agents/flutter-reviewer.md",
34
42
  "./agents/git-manager.md",
43
+ "./agents/go-build-resolver.md",
44
+ "./agents/go-reviewer.md",
35
45
  "./agents/harness-optimizer.md",
46
+ "./agents/java-build-resolver.md",
47
+ "./agents/java-reviewer.md",
48
+ "./agents/journal-writer.md",
49
+ "./agents/kotlin-build-resolver.md",
50
+ "./agents/kotlin-reviewer.md",
36
51
  "./agents/loop-operator.md",
52
+ "./agents/mcp-manager.md",
37
53
  "./agents/planner.md",
38
54
  "./agents/project-manager.md",
55
+ "./agents/python-reviewer.md",
56
+ "./agents/pytorch-build-resolver.md",
39
57
  "./agents/quality-gate.md",
40
58
  "./agents/refactor-cleaner.md",
59
+ "./agents/researcher.md",
60
+ "./agents/rust-build-resolver.md",
61
+ "./agents/rust-reviewer.md",
62
+ "./agents/scout-external.md",
41
63
  "./agents/scout.md",
42
64
  "./agents/security-reviewer.md",
43
65
  "./agents/skill-router.md",
44
66
  "./agents/tdd-guide.md",
67
+ "./agents/tester.md",
68
+ "./agents/typescript-reviewer.md",
45
69
  "./agents/ui-ux-designer.md"
46
70
  ],
47
71
  "commands": [
48
72
  "./commands/"
49
73
  ],
50
74
  "skills": [
51
- "./skills/tier-1/",
52
- "./skills/tier-2/",
53
- "./skills/tier-3/"
75
+ "./skills/"
54
76
  ]
55
77
  }
package/CLAUDE.md CHANGED
@@ -1,17 +1,19 @@
1
1
  # SkillLord — Claude Code Plugin
2
2
 
3
- Curated best-of-both plugin merging ECC and ClaudeKit with intelligent skill routing.
3
+ Curated best-of-both plugin merging ClaudeKit Engineer (base) + Everything Claude Code (cherry-picked) with intelligent skill routing.
4
4
 
5
5
  ## Workflows
6
6
 
7
7
  - Primary workflow: `./workflows/primary-workflow.md`
8
8
  - Development rules: `./workflows/development-rules.md`
9
9
  - Orchestration protocols: `./workflows/orchestration-protocol.md`
10
+ - Documentation management: `./workflows/documentation-management.md`
10
11
 
11
12
  **IMPORTANT:** Follow development rules strictly. Research & Reuse is mandatory FIRST step before implementation.
12
13
 
13
- ## Agents (22)
14
+ ## Agents (44)
14
15
 
16
+ ### Core Agents
15
17
  | Agent | Role |
16
18
  |-------|------|
17
19
  | planner | Technical planning with mental models |
@@ -25,51 +27,127 @@ Curated best-of-both plugin merging ECC and ClaudeKit with intelligent skill rou
25
27
  | refactor-cleaner | Dead code cleanup |
26
28
  | git-manager | Version control operations |
27
29
  | docs-manager | Documentation management |
30
+ | doc-updater | Documentation specialist |
31
+ | docs-lookup | Documentation researcher |
28
32
  | project-manager | Progress tracking |
29
33
  | ui-ux-designer | UI/UX design |
30
34
  | database-admin | Database optimization |
31
35
  | brainstormer | Solution ideation (YAGNI/KISS/DRY) |
32
36
  | copywriter | Conversion-focused content |
33
37
  | scout | Parallel codebase exploration |
38
+ | scout-external | External tool-based exploration |
34
39
  | loop-operator | Autonomous workflows |
35
40
  | chief-of-staff | Multi-channel coordination |
36
41
  | harness-optimizer | Self-optimization |
37
42
  | skill-router | Advisory skill recommendation |
38
43
  | quality-gate | Output validation |
44
+ | researcher | Deep research agent |
45
+ | tester | Test execution agent |
46
+ | mcp-manager | MCP server management |
47
+ | journal-writer | Session journaling |
48
+ | database-reviewer | Database review specialist |
39
49
 
40
- ## Skills (61, 3 Tiers)
50
+ ### Language-Specific Reviewers
51
+ | Agent | Language |
52
+ |-------|----------|
53
+ | typescript-reviewer | TypeScript |
54
+ | python-reviewer | Python |
55
+ | rust-reviewer | Rust |
56
+ | go-reviewer | Go |
57
+ | kotlin-reviewer | Kotlin |
58
+ | java-reviewer | Java |
59
+ | cpp-reviewer | C++ |
60
+ | flutter-reviewer | Flutter/Dart |
41
61
 
42
- ### Tier 1 — Core (always loaded)
43
- debugging, code-review, tdd-workflow, testing, backend-development, frontend-development, web-frameworks, ui-styling, ui-ux-pro-max, react-best-practices, databases, api-design, devops, security-patterns, sequential-thinking, research
62
+ ### Language-Specific Build Resolvers
63
+ | Agent | Language |
64
+ |-------|----------|
65
+ | cpp-build-resolver | C++ |
66
+ | rust-build-resolver | Rust |
67
+ | java-build-resolver | Java |
68
+ | kotlin-build-resolver | Kotlin |
69
+ | go-build-resolver | Go |
70
+ | pytorch-build-resolver | PyTorch |
44
71
 
45
- ### Tier 2 — On-Demand
46
- ai-multimodal, better-auth, payment-integration, continuous-learning, codebase-onboarding, autonomous-loops, mcp-management, frontend-patterns, backend-patterns, coding-standards, e2e-testing, deployment-patterns, docker-patterns, postgres-patterns, database-migrations, mcp-server-patterns, eval-harness, verification-loop, strategic-compact, mobile-development, claude-code, planning, problem-solving, google-adk-python, media-processing, design-system, design, brand
72
+ ## Skills (170)
47
73
 
48
- ### Tier 3Specialty
49
- python-patterns, golang-patterns, rust-patterns, kotlin-patterns, django-patterns, laravel-patterns, springboot-patterns, swiftui-patterns, pytorch-patterns, shopify, threejs, vercel-deploy, agentic-engineering, prompt-optimizer, cost-aware-llm-pipeline, banner-design, slides
74
+ All skills live in `./skills/<name>/SKILL.md` flat structure, no tiers.
50
75
 
51
- ## Key Commands
76
+ ## Commands (115)
52
77
 
78
+ ### Core Commands
53
79
  | Command | Description |
54
80
  |---------|-------------|
55
- | /plan | Create implementation plan |
81
+ | /plan | Create implementation plan (variants: fast, hard, two, cro, ci) |
56
82
  | /code | Start coding |
57
83
  | /test | Run tests |
58
84
  | /fix | Fix issues (variants: fast, hard, ci, test, types, ui, logs) |
59
- | /cook | Implement features end-to-end |
85
+ | /cook | Implement features end-to-end (variants: auto, auto/fast) |
60
86
  | /tdd | Test-driven development workflow |
61
87
  | /debug | Deep issue analysis |
62
- | /review | Code review |
88
+ | /code-review | Code review |
63
89
  | /route | Get skill recommendations for your task |
64
90
  | /audit | Run quality checks |
65
- | /scout | Search codebase |
66
- | /bootstrap | Initialize new projects |
67
- | /design | Create UI designs |
91
+ | /scout | Search codebase (variants: ext) |
92
+ | /bootstrap | Initialize new projects (variants: auto, auto/fast) |
93
+ | /design | Create UI designs (variants: 3d, describe, fast, good, screenshot, video) |
68
94
  | /brainstorm | Explore solutions |
69
95
  | /e2e | E2E testing |
70
96
  | /build-fix | Fix build errors |
71
97
  | /evolve | Iterative feature development |
72
98
  | /learn | Extract patterns from session |
99
+ | /verify | Verify implementation |
100
+ | /quality-gate | Run quality validation |
101
+
102
+ ### Multi-Agent Commands (from ECC)
103
+ | Command | Description |
104
+ |---------|-------------|
105
+ | /multi-plan | Multi-agent planning |
106
+ | /multi-workflow | Multi-agent workflow |
107
+ | /multi-backend | Multi-agent backend |
108
+ | /multi-frontend | Multi-agent frontend |
109
+ | /multi-execute | Multi-agent execution |
110
+ | /orchestrate | Agent orchestration |
111
+
112
+ ### Session Management (from ECC)
113
+ | Command | Description |
114
+ |---------|-------------|
115
+ | /save-session | Save current session |
116
+ | /resume-session | Resume saved session |
117
+ | /sessions | List sessions |
118
+ | /checkpoint | Create checkpoint |
119
+
120
+ ### Language-Specific Commands (from ECC)
121
+ | Command | Description |
122
+ |---------|-------------|
123
+ | /cpp-build, /cpp-review, /cpp-test | C++ workflows |
124
+ | /go-build, /go-review, /go-test | Go workflows |
125
+ | /kotlin-build, /kotlin-review, /kotlin-test | Kotlin workflows |
126
+ | /rust-build, /rust-review, /rust-test | Rust workflows |
127
+ | /python-review | Python review |
128
+ | /gradle-build | Gradle build |
129
+
130
+ ### Content & Design Commands (from CEK)
131
+ | Command | Description |
132
+ |---------|-------------|
133
+ | /content | Content creation (variants: fast, good, cro, enhance) |
134
+ | /docs | Documentation (variants: init, update, summarize) |
135
+ | /git | Git operations (variants: pr, cp, cm) |
136
+ | /integrate | Integrations (variants: sepay, polar) |
137
+ | /skill | Skill management (variants: add, create, fix-logs, optimize) |
138
+
139
+ ## Rules (13 languages)
140
+
141
+ Language-specific coding rules in `./rules/`:
142
+ - Common (agents, coding-style, development-workflow, git-workflow, hooks, patterns, performance, security, testing)
143
+ - TypeScript, Python, Go, Rust, Java, Kotlin, C++, C#, PHP, Perl, Swift
144
+
145
+ ## Contexts
146
+
147
+ Development contexts in `./contexts/`:
148
+ - `dev.md` — Development context
149
+ - `research.md` — Research context
150
+ - `review.md` — Code review context
73
151
 
74
152
  ## Principles
75
153
 
package/README.md CHANGED
@@ -4,18 +4,20 @@
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/claude-skill-lord)](https://www.npmjs.com/package/claude-skill-lord)
6
6
  ![License](https://img.shields.io/badge/license-MIT-green)
7
- ![Agents](https://img.shields.io/badge/agents-22-purple)
8
- ![Skills](https://img.shields.io/badge/skills-61-orange)
9
- ![Commands](https://img.shields.io/badge/commands-40%2B-red)
7
+ ![Agents](https://img.shields.io/badge/agents-44-purple)
8
+ ![Skills](https://img.shields.io/badge/skills-170-orange)
9
+ ![Commands](https://img.shields.io/badge/commands-115-red)
10
+ ![Rules](https://img.shields.io/badge/rules-13%20languages-blue)
10
11
 
11
12
  ---
12
13
 
13
14
  ## Why Claude Skill Lord?
14
15
 
15
- - **Stop configuring, start building** — 61 skills, 22 agents, 40+ commands work out of the box
16
- - **Only load what you need** — 3-tier system keeps context lean; specialty skills activate on demand
16
+ - **Stop configuring, start building** — 170 skills, 44 agents, 115 commands work out of the box
17
+ - **Multi-language support** — 13 language-specific rule sets (TypeScript, Python, Go, Rust, Java, Kotlin, C++, C#, PHP, Perl, Swift)
18
+ - **Language-specific agents** — dedicated reviewers and build resolvers for 8 languages
17
19
  - **Design intelligence built-in** — 67 UI styles, 161 color palettes, reasoning engine for production-grade design decisions
18
- - **Battle-tested foundations** — curated from [Everything Claude Code](https://github.com/affaan-m/everything-claude-code) + [ClaudeKit Engineer](https://github.com/claudekit/claudekit-engineer) + [UI/UX Pro Max](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill)
20
+ - **Battle-tested foundations** — curated from [ClaudeKit Engineer](https://github.com/claudekit/claudekit-engineer) (base) + [Everything Claude Code](https://github.com/affaan-m/everything-claude-code) (cherry-picked)
19
21
 
20
22
  ---
21
23
 
@@ -41,7 +43,7 @@ That's it. `csl init` copies skills, agents, and commands into `.claude/` and ge
41
43
 
42
44
  ```bash
43
45
  csl init # interactive setup (asks profile + target)
44
- csl init full # install everything (61 skills + canvas fonts)
46
+ csl init full # install everything (170 skills + canvas fonts)
45
47
  csl init --dry-run # preview without copying
46
48
  csl init --fresh # clean reinstall
47
49
  csl upgrade full # upgrade to full profile (additive, no overwrites)
@@ -73,10 +75,11 @@ node scripts/sl.js init full --target /path/to/your/project
73
75
 
74
76
  ## Install Profiles
75
77
 
76
- | Profile | Skills | Agents | Best For |
77
- |---------|--------|--------|----------|
78
- | `developer` | 44 (Tier 1+2) | 22 all | Recommended for all projects (default) |
79
- | `full` | 61 (all tiers) | 22 all + canvas fonts | Multi-language, design, enterprise |
78
+ | Profile | Skills | Agents | Rules | Best For |
79
+ |---------|--------|--------|-------|----------|
80
+ | `core` | 170 | 44 | | Minimal setup |
81
+ | `developer` | 170 | 44 | 13 languages | Recommended for all projects (default) |
82
+ | `full` | 170 | 44 + canvas fonts | 13 languages + MCP configs | Multi-language, design, enterprise |
80
83
 
81
84
  ---
82
85
 
@@ -85,9 +88,10 @@ node scripts/sl.js init full --target /path/to/your/project
85
88
  ```mermaid
86
89
  graph TD
87
90
  subgraph Plugin["Claude Skill Lord Plugin"]
88
- A["Agents (22)"]
89
- B["Commands (40+)"]
90
- C["Skills (61, 3 Tiers)"]
91
+ A["Agents (44)"]
92
+ B["Commands (115)"]
93
+ C["Skills (170)"]
94
+ R["Rules (13 langs)"]
91
95
  end
92
96
 
93
97
  subgraph Intelligence["Intelligence Layer"]
@@ -99,15 +103,18 @@ graph TD
99
103
  F["Hooks"]
100
104
  G["Workflows"]
101
105
  H["Manifests"]
106
+ CTX["Contexts"]
102
107
  end
103
108
 
104
109
  A --> D
105
110
  B --> D
106
111
  C --> D
112
+ R --> D
107
113
  D --> E
108
114
  E --> F
109
115
  E --> G
110
116
  E --> H
117
+ CTX --> D
111
118
  ```
112
119
 
113
120
  ---
@@ -157,37 +164,70 @@ The most common workflow — plan first, then implement, then validate:
157
164
  /bootstrap:auto Next.js SaaS starter with auth and payments
158
165
  ```
159
166
 
167
+ ### Multi-agent workflows (new)
168
+
169
+ ```
170
+ /multi-plan Complex feature requiring multiple perspectives
171
+ /multi-backend Microservice architecture implementation
172
+ /orchestrate Coordinate multiple agents on a large task
173
+ ```
174
+
175
+ ### Session management (new)
176
+
177
+ ```
178
+ /save-session # save current work context
179
+ /resume-session # resume where you left off
180
+ /checkpoint # create a recovery point
181
+ ```
182
+
183
+ ### Language-specific workflows (new)
184
+
185
+ ```
186
+ /rust-build # build Rust project
187
+ /go-review # review Go code
188
+ /kotlin-test # test Kotlin project
189
+ /cpp-build # build C++ project
190
+ /python-review # review Python code
191
+ ```
192
+
160
193
  ---
161
194
 
162
195
  ## Key Commands
163
196
 
164
197
  | Command | Description |
165
198
  |---------|-------------|
166
- | `/plan` | Create implementation plan |
199
+ | `/plan` | Create implementation plan (variants: `fast`, `hard`, `two`, `cro`, `ci`) |
167
200
  | `/code` | Start coding from plan |
168
201
  | `/test` | Run and validate tests |
169
202
  | `/fix` | Fix issues (variants: `fast`, `hard`, `ci`, `test`, `types`, `ui`, `logs`) |
170
203
  | `/cook` | Implement features end-to-end |
171
204
  | `/tdd` | Test-driven development workflow |
172
205
  | `/debug` | Deep root-cause investigation |
173
- | `/design` | Create UI designs (variants: `fast`, `good`, `3d`) |
206
+ | `/design` | Create UI designs (variants: `fast`, `good`, `3d`, `screenshot`, `video`, `describe`) |
174
207
  | `/route` | Get skill recommendations for your task |
175
208
  | `/audit` | Run quality gate checks |
176
209
 
177
210
  <details>
178
- <summary><strong>All commands (40+)</strong></summary>
179
-
180
- | Command | Description |
181
- |---------|-------------|
182
- | `/review` | Code review with confidence filtering |
183
- | `/scout` | Search and explore codebase |
184
- | `/bootstrap` | Initialize new projects |
185
- | `/e2e` | Generate and run E2E tests |
186
- | `/brainstorm` | Explore solutions and trade-offs |
187
- | `/learn` | Extract patterns from session |
188
- | `/evolve` | Iterative feature development |
189
- | `/build-fix` | Fix build/compile errors |
190
- | `/refactor-clean` | Dead code cleanup |
211
+ <summary><strong>All commands (115)</strong></summary>
212
+
213
+ | Category | Commands |
214
+ |----------|----------|
215
+ | **Core** | `/plan`, `/code`, `/test`, `/fix`, `/cook`, `/debug`, `/tdd`, `/verify` |
216
+ | **Review** | `/code-review`, `/python-review`, `/rust-review`, `/go-review`, `/cpp-review`, `/kotlin-review` |
217
+ | **Build** | `/build-fix`, `/cpp-build`, `/go-build`, `/kotlin-build`, `/rust-build`, `/gradle-build` |
218
+ | **Test** | `/test-coverage`, `/e2e`, `/cpp-test`, `/go-test`, `/kotlin-test`, `/rust-test` |
219
+ | **Design** | `/design:fast`, `/design:good`, `/design:3d`, `/design:screenshot`, `/design:video`, `/design:describe` |
220
+ | **Content** | `/content:fast`, `/content:good`, `/content:cro`, `/content:enhance` |
221
+ | **Docs** | `/docs:init`, `/docs:update`, `/docs:summarize`, `/update-docs` |
222
+ | **Git** | `/git:pr`, `/git:cp`, `/git:cm`, `/commit_gen` |
223
+ | **Multi-agent** | `/multi-plan`, `/multi-workflow`, `/multi-backend`, `/multi-frontend`, `/multi-execute`, `/orchestrate` |
224
+ | **Session** | `/save-session`, `/resume-session`, `/sessions`, `/checkpoint` |
225
+ | **Scout** | `/scout`, `/scout:ext` |
226
+ | **Bootstrap** | `/bootstrap`, `/bootstrap:auto`, `/bootstrap:auto/fast` |
227
+ | **Skills** | `/skill:add`, `/skill:create`, `/skill:optimize`, `/skill:fix-logs`, `/skill-create`, `/skill-health` |
228
+ | **Quality** | `/quality-gate`, `/audit`, `/refactor-clean`, `/prompt-optimize` |
229
+ | **Loop** | `/loop-start`, `/loop-status` |
230
+ | **Other** | `/brainstorm`, `/learn`, `/evolve`, `/model-route`, `/route`, `/ask`, `/journal`, `/watzup` |
191
231
 
192
232
  See [commands/](commands/) for the full list.
193
233
 
@@ -198,7 +238,9 @@ See [commands/](commands/) for the full list.
198
238
  ## Agents
199
239
 
200
240
  <details>
201
- <summary><strong>22 agents — click to expand</strong></summary>
241
+ <summary><strong>44 agents — click to expand</strong></summary>
242
+
243
+ ### Core Agents
202
244
 
203
245
  | Agent | Role |
204
246
  |-------|------|
@@ -213,57 +255,166 @@ See [commands/](commands/) for the full list.
213
255
  | refactor-cleaner | Dead code cleanup |
214
256
  | git-manager | Version control operations |
215
257
  | docs-manager | Documentation management |
258
+ | doc-updater | Documentation specialist |
259
+ | docs-lookup | Documentation researcher |
216
260
  | project-manager | Progress tracking |
217
261
  | ui-ux-designer | UI/UX design |
218
262
  | database-admin | Database optimization |
263
+ | database-reviewer | Database review specialist |
219
264
  | brainstormer | Solution ideation (YAGNI/KISS/DRY) |
220
265
  | copywriter | Conversion-focused content |
221
266
  | scout | Parallel codebase exploration |
267
+ | scout-external | External tool-based exploration |
222
268
  | loop-operator | Autonomous development loops |
223
269
  | chief-of-staff | Multi-channel coordination |
224
270
  | harness-optimizer | Agent self-optimization |
225
271
  | skill-router | Advisory skill recommendations |
226
272
  | quality-gate | Output validation |
273
+ | researcher | Deep research agent |
274
+ | tester | Test execution agent |
275
+ | mcp-manager | MCP server management |
276
+ | journal-writer | Session journaling |
277
+
278
+ ### Language-Specific Reviewers
279
+
280
+ | Agent | Language |
281
+ |-------|----------|
282
+ | typescript-reviewer | TypeScript |
283
+ | python-reviewer | Python |
284
+ | rust-reviewer | Rust |
285
+ | go-reviewer | Go |
286
+ | kotlin-reviewer | Kotlin |
287
+ | java-reviewer | Java |
288
+ | cpp-reviewer | C++ |
289
+ | flutter-reviewer | Flutter/Dart |
290
+
291
+ ### Language-Specific Build Resolvers
292
+
293
+ | Agent | Language |
294
+ |-------|----------|
295
+ | cpp-build-resolver | C++ |
296
+ | rust-build-resolver | Rust |
297
+ | java-build-resolver | Java |
298
+ | kotlin-build-resolver | Kotlin |
299
+ | go-build-resolver | Go |
300
+ | pytorch-build-resolver | PyTorch |
227
301
 
228
302
  </details>
229
303
 
230
304
  ---
231
305
 
232
- ## Skills (61, 3 Tiers)
306
+ ## Skills (170)
233
307
 
234
- ### Tier 1 Core (16, always loaded)
308
+ All skills live in `./skills/<name>/SKILL.md` flat structure.
235
309
 
236
- debugging, code-review, tdd-workflow, testing, backend-development, frontend-development, web-frameworks, ui-styling, **ui-ux-pro-max**, react-best-practices, databases, api-design, devops, security-patterns, sequential-thinking, research
310
+ <details>
311
+ <summary><strong>Click to expand full skill list</strong></summary>
237
312
 
238
- ### Tier 2 — On-Demand (28)
313
+ ### Development Core
314
+ debugging, code-review, tdd-workflow, testing, backend-development, frontend-development, web-frameworks, ui-styling, databases, api-design, devops, sequential-thinking, research, planning, problem-solving, coding-standards
239
315
 
240
- <details>
241
- <summary>Click to expand</summary>
316
+ ### Frontend & Design
317
+ ui-ux-pro-max, react-best-practices, frontend-patterns, frontend-design, frontend-slides, design, design-system, brand, banner-design, slides, aesthetic, web-design-guidelines, liquid-glass-design, threejs
242
318
 
243
- ai-multimodal, better-auth, payment-integration, continuous-learning, codebase-onboarding, autonomous-loops, mcp-management, frontend-patterns, backend-patterns, coding-standards, e2e-testing, deployment-patterns, docker-patterns, postgres-patterns, database-migrations, mcp-server-patterns, eval-harness, verification-loop, strategic-compact, mobile-development, claude-code, planning, problem-solving, google-adk-python, media-processing, **design-system**, **design**, **brand**
319
+ ### Backend & API
320
+ backend-patterns, api-design, api-versioning, graphql-patterns, rest-api-security, microservice-patterns, mcp-server-patterns, mcp-management, mcp-builder
244
321
 
245
- </details>
322
+ ### Language Patterns
323
+ python-patterns, golang-patterns, rust-patterns, kotlin-patterns, java-patterns, cpp-patterns, perl-patterns, swift-patterns, django-patterns, laravel-patterns, springboot-patterns, swiftui-patterns, nuxt4-patterns
246
324
 
247
- ### Tier 3 Specialty (17)
325
+ ### Language Testing & Security
326
+ python-testing, golang-testing, rust-testing, kotlin-testing, cpp-testing, django-tdd, laravel-tdd, springboot-tdd, django-security, laravel-security, springboot-security, django-verification, laravel-verification, springboot-verification
248
327
 
249
- <details>
250
- <summary>Click to expand</summary>
328
+ ### Language Specialized
329
+ kotlin-coroutines-flows, kotlin-exposed-patterns, kotlin-ktor-patterns, java-coding-standards, cpp-coding-standards, swift-actor-persistence, swift-concurrency-6-2, swift-protocol-di-testing, jpa-patterns, compose-multiplatform-patterns
251
330
 
252
- python-patterns, golang-patterns, rust-patterns, kotlin-patterns, django-patterns, laravel-patterns, springboot-patterns, swiftui-patterns, pytorch-patterns, shopify, threejs, vercel-deploy, agentic-engineering, prompt-optimizer, cost-aware-llm-pipeline, **banner-design**, **slides**
331
+ ### Mobile
332
+ mobile-development, android-clean-architecture, flutter-riverpod, flutter-dart-code-review
333
+
334
+ ### DevOps & Infrastructure
335
+ deployment-patterns, docker-patterns, ci-cd-patterns, docker-optimization, kubernetes-patterns, terraform-patterns, vercel-deploy
336
+
337
+ ### Database
338
+ postgres-patterns, database-migrations, clickhouse-io
339
+
340
+ ### AI & ML
341
+ ai-multimodal, pytorch-patterns, google-adk-python, cost-aware-llm-pipeline, foundation-models-on-device, prompt-optimizer
342
+
343
+ ### Agentic Engineering
344
+ agentic-engineering, agent-harness-construction, agent-eval, autonomous-loops, continuous-agent-loop, continuous-learning, continuous-learning-v2, eval-harness, verification-loop, enterprise-agent-ops
345
+
346
+ ### Content & Business
347
+ article-writing, technical-writing, content-engine, crosspost, market-research, investor-outreach, investor-materials, shopify, ecommerce-patterns, saas-patterns
348
+
349
+ ### Security & Auth
350
+ security-review, security-scan, better-auth, payment-integration, safety-guard
351
+
352
+ ### Media & Processing
353
+ media-processing, video-editing, videodb, fal-ai-media, nutrient-document-processing
354
+
355
+ ### Tools & Utilities
356
+ repomix, chrome-devtools, docs-seeker, documentation-lookup, skill-creator, data-scraper-agent, exa-search, x-api, bun-runtime, nanoclaw-repl, dmux-workflows
357
+
358
+ ### Research & Strategy
359
+ deep-research, strategic-compact, search-first, iterative-retrieval, codebase-onboarding, blueprint, santa-method, team-builder
360
+
361
+ ### Domain-Specific
362
+ carrier-relationship-management, customs-trade-compliance, energy-procurement, inventory-demand-planning, logistics-exception-management, production-scheduling, quality-nonconformance, returns-reverse-logistics, visa-doc-translate
363
+
364
+ ### Meta & Config
365
+ claude-code, claude-api, claude-devfleet, configure-ecc, skill-comply, skill-stocktake, rules-distill, plankton-code-quality, ralphinho-rfc-pipeline, regex-vs-llm-structured-text, click-path-audit, context-budget, content-hash-cache-pattern, project-guidelines-example, plan-preview, template-skill, e2e-testing
253
366
 
254
367
  </details>
255
368
 
256
369
  ---
257
370
 
371
+ ## Rules (13 Languages)
372
+
373
+ Language-specific coding rules in `./rules/`:
374
+
375
+ | Language | Files |
376
+ |----------|-------|
377
+ | Common | agents, coding-style, development-workflow, git-workflow, hooks, patterns, performance, security, testing |
378
+ | TypeScript | coding-style, hooks, patterns, security, testing |
379
+ | Python | coding-style, hooks, patterns, security, testing |
380
+ | Go | coding-style, hooks, patterns, security, testing |
381
+ | Rust | coding-style, hooks, patterns, security, testing |
382
+ | Java | coding-style, hooks, patterns, security, testing |
383
+ | Kotlin | coding-style, hooks, patterns, security, testing |
384
+ | C++ | coding-style, hooks, patterns, security, testing |
385
+ | C# | coding-style, hooks, patterns, security, testing |
386
+ | PHP | coding-style, hooks, patterns, security, testing |
387
+ | Perl | coding-style, hooks, patterns, security, testing |
388
+ | Swift | coding-style, hooks, patterns, security, testing |
389
+
390
+ ---
391
+
258
392
  ## Hooks & Automation
259
393
 
260
394
  | Hook | Trigger | What it does |
261
395
  |------|---------|--------------|
396
+ | Block no-verify | PreToolUse | Prevents bypassing git hooks |
262
397
  | Config protection | PreToolUse | Prevents weakening linter/formatter configs |
398
+ | Scout block | PreToolUse | Controls scout command usage |
263
399
  | Auto-format | PostToolUse | Runs Biome or Prettier on edited JS/TS files |
264
400
  | Type check | PostToolUse | Validates TypeScript after edits |
265
401
  | Console.log check | Stop | Flags debug code left in modified files |
266
402
  | Quality gate | PostToolUse | Lint + types + tests + security checks |
403
+ | Modularization | PostToolUse | Suggests splitting files >200 LOC |
404
+ | Session management | Start/Stop | Save and restore session context |
405
+ | Discord/Telegram notify | Stop | Send notifications on session end |
406
+
407
+ ---
408
+
409
+ ## Contexts
410
+
411
+ Development contexts in `./contexts/` for specialized workflows:
412
+
413
+ | Context | Use Case |
414
+ |---------|----------|
415
+ | `dev.md` | Development context |
416
+ | `research.md` | Research context |
417
+ | `review.md` | Code review context |
267
418
 
268
419
  ---
269
420
 
@@ -279,9 +430,9 @@ node tests/run-all.js
279
430
 
280
431
  Built on the shoulders of giants:
281
432
 
282
- > [Everything Claude Code](https://github.com/affaan-m/everything-claude-code) by Affaan Mustafafoundation agents, skills, hooks
433
+ > [ClaudeKit Engineer](https://github.com/claudekit/claudekit-engineer) by Duy Nguyenbase architecture, mental models, strategic depth, unique agents
283
434
  >
284
- > [ClaudeKit Engineer](https://github.com/claudekit/claudekit-engineer) by Duy Nguyenmental models, strategic depth, unique agents
435
+ > [Everything Claude Code](https://github.com/affaan-m/everything-claude-code) by Affaan Mustafacherry-picked agents, skills, commands, rules
285
436
  >
286
437
  > [UI/UX Pro Max Skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) by Next Level Builder — design intelligence, 67 styles, 161 color palettes, brand & design-system skills (MIT)
287
438
 
@@ -1,7 +1,5 @@
1
1
  ---
2
2
  name: brainstormer
3
- tools: ["Read", "Grep", "Glob", "Bash"]
4
- model: sonnet
5
3
  description: >-
6
4
  Use this agent when you need to brainstorm software solutions, evaluate
7
5
  architectural approaches, or debate technical decisions before implementation.