cokit-cli 1.0.8 → 1.0.9

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 (1163) hide show
  1. package/.vscode/settings.json +70 -70
  2. package/AGENTS.md +103 -103
  3. package/FAQ.md +101 -102
  4. package/INIT.md +154 -154
  5. package/LICENSE +32 -32
  6. package/QUICK-START.md +37 -37
  7. package/README.FLOW.md +237 -237
  8. package/README.md +92 -171
  9. package/agents/brainstormer.agent.md +71 -71
  10. package/agents/code-reviewer.agent.md +136 -128
  11. package/agents/debugger.agent.md +128 -128
  12. package/agents/docs-manager.agent.md +121 -121
  13. package/agents/git-manager.agent.md +390 -390
  14. package/agents/planner.agent.md +94 -94
  15. package/agents/researcher.agent.md +32 -32
  16. package/agents/scout.agent.md +107 -107
  17. package/agents/tester.agent.md +117 -106
  18. package/bin/cokit.js +4 -4
  19. package/changelogs/1.0.8.md +77 -0
  20. package/changelogs/1.0.9.md +173 -0
  21. package/collections/ck-core.collection.yml +28 -30
  22. package/collections/ck-development-rules.collection.yml +18 -18
  23. package/collections/ck-documentation.collection.yml +14 -18
  24. package/collections/ck-git-workflow.collection.yml +12 -18
  25. package/collections/ck-orchestration.collection.yml +16 -22
  26. package/docs/README.md +108 -85
  27. package/docs/cokit-comprehensive-mapping-guide.md +374 -937
  28. package/docs/cokit-slides.md +222 -205
  29. package/docs/cokit-team-presentation.md +378 -319
  30. package/docs/copilot-processing-flow.md +212 -128
  31. package/docs/migration-guide.md +133 -120
  32. package/docs/project-roadmap.md +280 -257
  33. package/instructions/ck-backend.instructions.md +48 -48
  34. package/instructions/ck-development.instructions.md +54 -54
  35. package/instructions/ck-frontend.instructions.md +44 -44
  36. package/instructions/ck-research.instructions.md +167 -167
  37. package/instructions/ck-testing.instructions.md +36 -36
  38. package/package.json +42 -42
  39. package/plans/reports/docs-manager-260120-0854-documentation-update.md +323 -0
  40. package/prompts/ck-ask.prompt.md +57 -57
  41. package/prompts/ck-bootstrap.prompt.md +136 -136
  42. package/prompts/ck-brainstorm.prompt.md +105 -105
  43. package/prompts/ck-ck-help.prompt.md +112 -114
  44. package/prompts/ck-code.prompt.md +178 -178
  45. package/prompts/ck-cook.prompt.md +97 -97
  46. package/prompts/ck-debug.prompt.md +14 -14
  47. package/prompts/ck-docs.prompt.md +51 -0
  48. package/prompts/ck-fix.prompt.md +44 -44
  49. package/prompts/ck-git.prompt.md +79 -0
  50. package/prompts/ck-plan.prompt.md +80 -80
  51. package/prompts/ck-test.prompt.md +10 -10
  52. package/repomix-output.xml +40725 -0
  53. package/rules/README.agents.md +55 -55
  54. package/rules/README.collections.md +78 -78
  55. package/rules/README.copilot-instructions.md +66 -66
  56. package/rules/README.instructions.md +73 -73
  57. package/rules/README.md +39 -39
  58. package/rules/README.prompts.md +76 -76
  59. package/rules/README.skills.md +71 -71
  60. package/skills/ck-backend-development/SKILL.md +96 -93
  61. package/skills/ck-backend-development/references/backend-api-design.md +495 -495
  62. package/skills/ck-backend-development/references/backend-architecture.md +454 -454
  63. package/skills/ck-backend-development/references/backend-authentication.md +338 -338
  64. package/skills/ck-backend-development/references/backend-code-quality.md +659 -659
  65. package/skills/ck-backend-development/references/backend-debugging.md +904 -904
  66. package/skills/ck-backend-development/references/backend-devops.md +494 -494
  67. package/skills/ck-backend-development/references/backend-mindset.md +387 -387
  68. package/skills/ck-backend-development/references/backend-performance.md +397 -397
  69. package/skills/ck-backend-development/references/backend-security.md +290 -290
  70. package/skills/ck-backend-development/references/backend-technologies.md +290 -256
  71. package/skills/ck-backend-development/references/backend-testing.md +561 -429
  72. package/skills/ck-code-review/SKILL.md +143 -143
  73. package/skills/ck-code-review/references/code-review-reception.md +208 -208
  74. package/skills/ck-code-review/references/requesting-code-review.md +104 -104
  75. package/skills/ck-code-review/references/verification-before-completion.md +138 -138
  76. package/skills/ck-debugging/SKILL.md +82 -82
  77. package/skills/ck-debugging/references/defense-in-depth.md +124 -124
  78. package/skills/ck-debugging/references/root-cause-tracing.md +122 -122
  79. package/skills/ck-debugging/references/systematic-debugging.md +102 -102
  80. package/skills/ck-debugging/references/verification.md +123 -123
  81. package/skills/ck-debugging/scripts/find-polluter.sh +63 -63
  82. package/skills/ck-debugging/scripts/find-polluter.test.md +102 -102
  83. package/skills/ck-frontend-development/SKILL.md +399 -399
  84. package/skills/ck-frontend-development/resources/common-patterns.md +330 -330
  85. package/skills/ck-frontend-development/resources/complete-examples.md +871 -871
  86. package/skills/ck-frontend-development/resources/component-patterns.md +501 -501
  87. package/skills/ck-frontend-development/resources/data-fetching.md +766 -766
  88. package/skills/ck-frontend-development/resources/file-organization.md +501 -501
  89. package/skills/ck-frontend-development/resources/loading-and-error-states.md +500 -500
  90. package/skills/ck-frontend-development/resources/performance.md +405 -405
  91. package/skills/ck-frontend-development/resources/routing-guide.md +363 -363
  92. package/skills/ck-frontend-development/resources/styling-guide.md +427 -427
  93. package/skills/ck-frontend-development/resources/typescript-standards.md +417 -417
  94. package/skills/ck-planning/SKILL.md +112 -112
  95. package/skills/ck-planning/references/codebase-understanding.md +62 -62
  96. package/skills/ck-planning/references/output-standards.md +127 -127
  97. package/skills/ck-planning/references/plan-organization.md +150 -150
  98. package/skills/ck-planning/references/research-phase.md +49 -49
  99. package/skills/ck-planning/references/solution-design.md +63 -63
  100. package/skills/ck-problem-solving/SKILL.md +95 -95
  101. package/skills/ck-problem-solving/references/attribution.md +69 -69
  102. package/skills/ck-problem-solving/references/collision-zone-thinking.md +79 -79
  103. package/skills/ck-problem-solving/references/inversion-exercise.md +91 -91
  104. package/skills/ck-problem-solving/references/meta-pattern-recognition.md +87 -87
  105. package/skills/ck-problem-solving/references/scale-game.md +95 -95
  106. package/skills/ck-problem-solving/references/simplification-cascades.md +80 -80
  107. package/skills/ck-problem-solving/references/when-stuck.md +72 -72
  108. package/skills/ck-sequential-thinking/.env.example +8 -8
  109. package/skills/ck-sequential-thinking/README.md +183 -183
  110. package/skills/ck-sequential-thinking/SKILL.md +92 -92
  111. package/skills/ck-sequential-thinking/package.json +31 -31
  112. package/skills/ck-sequential-thinking/references/advanced-strategies.md +79 -79
  113. package/skills/ck-sequential-thinking/references/advanced-techniques.md +76 -76
  114. package/skills/ck-sequential-thinking/references/core-patterns.md +95 -95
  115. package/skills/ck-sequential-thinking/references/examples-api.md +88 -88
  116. package/skills/ck-sequential-thinking/references/examples-architecture.md +94 -94
  117. package/skills/ck-sequential-thinking/references/examples-debug.md +90 -90
  118. package/skills/ck-sequential-thinking/scripts/format-thought.js +159 -159
  119. package/skills/ck-sequential-thinking/scripts/process-thought.js +236 -236
  120. package/skills/ck-sequential-thinking/tests/format-thought.test.js +133 -133
  121. package/skills/ck-sequential-thinking/tests/process-thought.test.js +215 -215
  122. package/src/commands/add.js +93 -93
  123. package/src/commands/doctor.js +117 -117
  124. package/src/commands/init.js +183 -183
  125. package/src/commands/list.js +91 -91
  126. package/src/commands/update.js +22 -22
  127. package/src/index.js +35 -35
  128. package/src/utils/colors.js +14 -14
  129. package/src/utils/copy.js +122 -122
  130. package/src/utils/paths.js +66 -66
  131. package/src/utils/update-checker.js +126 -126
  132. package/templates/repo/.github/.cokit-version +4 -4
  133. package/templates/repo/.github/AGENTS.md +55 -55
  134. package/templates/repo/.github/agents/brainstormer.agent.md +71 -71
  135. package/templates/repo/.github/agents/code-reviewer.agent.md +136 -128
  136. package/templates/repo/.github/agents/debugger.agent.md +128 -128
  137. package/templates/repo/.github/agents/docs-manager.agent.md +121 -121
  138. package/templates/repo/.github/agents/git-manager.agent.md +390 -390
  139. package/templates/repo/.github/agents/planner.agent.md +94 -94
  140. package/templates/repo/.github/agents/researcher.agent.md +32 -32
  141. package/templates/repo/.github/agents/scout.agent.md +107 -107
  142. package/templates/repo/.github/agents/tester.agent.md +117 -106
  143. package/templates/repo/.github/collections/ck-core.collection.yml +28 -30
  144. package/templates/repo/.github/collections/ck-development-rules.collection.yml +18 -18
  145. package/templates/repo/.github/collections/ck-documentation.collection.yml +14 -18
  146. package/templates/repo/.github/collections/ck-git-workflow.collection.yml +12 -18
  147. package/templates/repo/.github/collections/ck-orchestration.collection.yml +16 -22
  148. package/templates/repo/.github/copilot-instructions.md +45 -45
  149. package/templates/repo/.github/instructions/ck-backend.instructions.md +48 -48
  150. package/templates/repo/.github/instructions/ck-development.instructions.md +54 -54
  151. package/templates/repo/.github/instructions/ck-frontend.instructions.md +44 -44
  152. package/templates/repo/.github/instructions/ck-research.instructions.md +167 -167
  153. package/templates/repo/.github/instructions/ck-testing.instructions.md +36 -36
  154. package/templates/repo/.github/prompts/ck-ask.prompt.md +57 -57
  155. package/templates/repo/.github/prompts/ck-bootstrap.prompt.md +136 -136
  156. package/templates/repo/.github/prompts/ck-brainstorm.prompt.md +105 -105
  157. package/templates/repo/.github/prompts/ck-ck-help.prompt.md +112 -114
  158. package/templates/repo/.github/prompts/ck-code.prompt.md +178 -178
  159. package/templates/repo/.github/prompts/ck-cook.prompt.md +97 -97
  160. package/templates/repo/.github/prompts/ck-debug.prompt.md +14 -14
  161. package/templates/repo/.github/prompts/ck-docs.prompt.md +51 -0
  162. package/templates/repo/.github/prompts/ck-fix.prompt.md +44 -44
  163. package/templates/repo/.github/prompts/ck-git.prompt.md +79 -0
  164. package/templates/repo/.github/prompts/ck-plan.prompt.md +80 -80
  165. package/templates/repo/.github/prompts/ck-test.prompt.md +10 -10
  166. package/templates/repo/.github/skills/ck-backend-development/SKILL.md +96 -93
  167. package/templates/repo/.github/skills/ck-backend-development/references/backend-api-design.md +495 -495
  168. package/templates/repo/.github/skills/ck-backend-development/references/backend-architecture.md +454 -454
  169. package/templates/repo/.github/skills/ck-backend-development/references/backend-authentication.md +338 -338
  170. package/templates/repo/.github/skills/ck-backend-development/references/backend-code-quality.md +659 -659
  171. package/templates/repo/.github/skills/ck-backend-development/references/backend-debugging.md +904 -904
  172. package/templates/repo/.github/skills/ck-backend-development/references/backend-devops.md +494 -494
  173. package/templates/repo/.github/skills/ck-backend-development/references/backend-mindset.md +387 -387
  174. package/templates/repo/.github/skills/ck-backend-development/references/backend-performance.md +397 -397
  175. package/templates/repo/.github/skills/ck-backend-development/references/backend-security.md +290 -290
  176. package/templates/repo/.github/skills/ck-backend-development/references/backend-technologies.md +290 -256
  177. package/templates/repo/.github/skills/ck-backend-development/references/backend-testing.md +561 -429
  178. package/templates/repo/.github/skills/ck-code-review/SKILL.md +143 -143
  179. package/templates/repo/.github/skills/ck-code-review/references/code-review-reception.md +208 -208
  180. package/templates/repo/.github/skills/ck-code-review/references/requesting-code-review.md +104 -104
  181. package/templates/repo/.github/skills/ck-code-review/references/verification-before-completion.md +138 -138
  182. package/templates/repo/.github/skills/ck-debugging/SKILL.md +82 -82
  183. package/templates/repo/.github/skills/ck-debugging/references/defense-in-depth.md +124 -124
  184. package/templates/repo/.github/skills/ck-debugging/references/root-cause-tracing.md +122 -122
  185. package/templates/repo/.github/skills/ck-debugging/references/systematic-debugging.md +102 -102
  186. package/templates/repo/.github/skills/ck-debugging/references/verification.md +123 -123
  187. package/templates/repo/.github/skills/ck-debugging/scripts/find-polluter.sh +63 -63
  188. package/templates/repo/.github/skills/ck-debugging/scripts/find-polluter.test.md +102 -102
  189. package/templates/repo/.github/skills/ck-frontend-development/SKILL.md +399 -399
  190. package/templates/repo/.github/skills/ck-frontend-development/resources/common-patterns.md +330 -330
  191. package/templates/repo/.github/skills/ck-frontend-development/resources/complete-examples.md +871 -871
  192. package/templates/repo/.github/skills/ck-frontend-development/resources/component-patterns.md +501 -501
  193. package/templates/repo/.github/skills/ck-frontend-development/resources/data-fetching.md +766 -766
  194. package/templates/repo/.github/skills/ck-frontend-development/resources/file-organization.md +501 -501
  195. package/templates/repo/.github/skills/ck-frontend-development/resources/loading-and-error-states.md +500 -500
  196. package/templates/repo/.github/skills/ck-frontend-development/resources/performance.md +405 -405
  197. package/templates/repo/.github/skills/ck-frontend-development/resources/routing-guide.md +363 -363
  198. package/templates/repo/.github/skills/ck-frontend-development/resources/styling-guide.md +427 -427
  199. package/templates/repo/.github/skills/ck-frontend-development/resources/typescript-standards.md +417 -417
  200. package/templates/repo/.github/skills/ck-planning/SKILL.md +112 -112
  201. package/templates/repo/.github/skills/ck-planning/references/codebase-understanding.md +62 -62
  202. package/templates/repo/.github/skills/ck-planning/references/output-standards.md +127 -127
  203. package/templates/repo/.github/skills/ck-planning/references/plan-organization.md +150 -150
  204. package/templates/repo/.github/skills/ck-planning/references/research-phase.md +49 -49
  205. package/templates/repo/.github/skills/ck-planning/references/solution-design.md +63 -63
  206. package/templates/repo/.github/skills/ck-problem-solving/SKILL.md +95 -95
  207. package/templates/repo/.github/skills/ck-problem-solving/references/attribution.md +69 -69
  208. package/templates/repo/.github/skills/ck-problem-solving/references/collision-zone-thinking.md +79 -79
  209. package/templates/repo/.github/skills/ck-problem-solving/references/inversion-exercise.md +91 -91
  210. package/templates/repo/.github/skills/ck-problem-solving/references/meta-pattern-recognition.md +87 -87
  211. package/templates/repo/.github/skills/ck-problem-solving/references/scale-game.md +95 -95
  212. package/templates/repo/.github/skills/ck-problem-solving/references/simplification-cascades.md +80 -80
  213. package/templates/repo/.github/skills/ck-problem-solving/references/when-stuck.md +72 -72
  214. package/templates/repo/.github/skills/ck-sequential-thinking/.env.example +8 -8
  215. package/templates/repo/.github/skills/ck-sequential-thinking/README.md +183 -183
  216. package/templates/repo/.github/skills/ck-sequential-thinking/SKILL.md +92 -92
  217. package/templates/repo/.github/skills/ck-sequential-thinking/package.json +31 -31
  218. package/templates/repo/.github/skills/ck-sequential-thinking/references/advanced-strategies.md +79 -79
  219. package/templates/repo/.github/skills/ck-sequential-thinking/references/advanced-techniques.md +76 -76
  220. package/templates/repo/.github/skills/ck-sequential-thinking/references/core-patterns.md +95 -95
  221. package/templates/repo/.github/skills/ck-sequential-thinking/references/examples-api.md +88 -88
  222. package/templates/repo/.github/skills/ck-sequential-thinking/references/examples-architecture.md +94 -94
  223. package/templates/repo/.github/skills/ck-sequential-thinking/references/examples-debug.md +90 -90
  224. package/templates/repo/.github/skills/ck-sequential-thinking/scripts/format-thought.js +159 -159
  225. package/templates/repo/.github/skills/ck-sequential-thinking/scripts/process-thought.js +236 -236
  226. package/templates/repo/.github/skills/ck-sequential-thinking/tests/format-thought.test.js +133 -133
  227. package/templates/repo/.github/skills/ck-sequential-thinking/tests/process-thought.test.js +215 -215
  228. package/templates/repo/.vscode/settings.json +70 -70
  229. package/agents/database-admin.agent.md +0 -91
  230. package/agents/fullstack-developer.agent.md +0 -96
  231. package/agents/mcp-manager.agent.md +0 -93
  232. package/agents/project-manager.agent.md +0 -124
  233. package/agents/scout-external.agent.md +0 -141
  234. package/agents/ui-ux-designer.agent.md +0 -225
  235. package/collections/ck-ui-design.collection.yml +0 -18
  236. package/instructions/ck-frontend-design-pro.instructions.md +0 -58
  237. package/instructions/ck-google-adk-python.instructions.md +0 -242
  238. package/plans/260106-1102-cokit-implementation/phases/phase-01-cli-tool.md +0 -151
  239. package/plans/260106-1102-cokit-implementation/phases/phase-02-repo-level-templates.md +0 -198
  240. package/plans/260106-1102-cokit-implementation/phases/phase-03-user-level-skills.md +0 -219
  241. package/plans/260106-1102-cokit-implementation/phases/phase-04-prompt-files.md +0 -328
  242. package/plans/260106-1102-cokit-implementation/phases/phase-05-documentation.md +0 -166
  243. package/plans/260106-1102-cokit-implementation/plan.md +0 -130
  244. package/plans/260106-1102-cokit-implementation/research/researcher-01-copilot-skills-spec.md +0 -182
  245. package/plans/260106-1102-cokit-implementation/research/researcher-02-copilot-instructions-prompts.md +0 -201
  246. package/plans/260108-0924-rebuild-cokit-awesome-copilot-format/phase-01-restructure-folders.md +0 -183
  247. package/plans/260108-0924-rebuild-cokit-awesome-copilot-format/phase-02-convert-agents.md +0 -206
  248. package/plans/260108-0924-rebuild-cokit-awesome-copilot-format/phase-03-convert-commands-to-prompts.md +0 -284
  249. package/plans/260108-0924-rebuild-cokit-awesome-copilot-format/phase-04-convert-skills-to-instructions.md +0 -349
  250. package/plans/260108-0924-rebuild-cokit-awesome-copilot-format/phase-05-create-collections.md +0 -320
  251. package/plans/260108-0924-rebuild-cokit-awesome-copilot-format/phase-06-update-cli-build-scripts.md +0 -450
  252. package/plans/260108-0924-rebuild-cokit-awesome-copilot-format/phase-07-update-documentation.md +0 -407
  253. package/plans/260108-0924-rebuild-cokit-awesome-copilot-format/plan.md +0 -136
  254. package/plans/reports/code-reviewer-260106-1718-phase2-repo-templates.md +0 -184
  255. package/plans/reports/code-reviewer-260106-1728-phase3-review.md +0 -486
  256. package/plans/reports/code-reviewer-260106-1742-phase4-prompts.md +0 -235
  257. package/plans/reports/code-reviewer-260106-1753-phase5-docs.md +0 -275
  258. package/plans/reports/docs-manager-260106-1217-phase1-completion.md +0 -45
  259. package/plans/reports/docs-manager-260106-1734-phase3-skills.md +0 -108
  260. package/plans/reports/docs-manager-260106-1746-phase4-prompt-files.md +0 -75
  261. package/plans/reports/project-manager-260106-1734-SUMMARY.md +0 -354
  262. package/plans/reports/project-manager-260106-1734-phase3-completion.md +0 -257
  263. package/plans/reports/project-manager-260106-1734-phase3-to-phase4-transition.md +0 -274
  264. package/plans/reports/project-manager-260106-1734-phase4-kickoff.md +0 -343
  265. package/plans/reports/project-manager-260106-1734-project-status.md +0 -355
  266. package/plans/reports/project-manager-260106-1746-phase4-completion.md +0 -249
  267. package/plans/reports/project-manager-260106-1746-phase4-deliverables.md +0 -350
  268. package/plans/reports/project-manager-260106-1804-project-complete.md +0 -297
  269. package/plans/reports/tester-260106-1717-phase2-templates.md +0 -216
  270. package/plans/reports/tester-260106-1726-phase3-user-skills.md +0 -256
  271. package/plans/reports/tester-260106-1741-phase4-prompts.md +0 -202
  272. package/plans/reports/tester-260106-1751-phase5-docs.md +0 -301
  273. package/prompts/ck-bootstrap-auto-fast.prompt.md +0 -108
  274. package/prompts/ck-bootstrap-auto-parallel.prompt.md +0 -66
  275. package/prompts/ck-bootstrap-auto.prompt.md +0 -114
  276. package/prompts/ck-code-auto.prompt.md +0 -172
  277. package/prompts/ck-code-no-test.prompt.md +0 -160
  278. package/prompts/ck-code-parallel.prompt.md +0 -57
  279. package/prompts/ck-coding-level.prompt.md +0 -54
  280. package/prompts/ck-cook-auto-fast.prompt.md +0 -26
  281. package/prompts/ck-cook-auto-parallel.prompt.md +0 -50
  282. package/prompts/ck-cook-auto.prompt.md +0 -17
  283. package/prompts/ck-design-3d.prompt.md +0 -84
  284. package/prompts/ck-design-describe.prompt.md +0 -24
  285. package/prompts/ck-design-fast.prompt.md +0 -32
  286. package/prompts/ck-design-good.prompt.md +0 -36
  287. package/prompts/ck-design-screenshot.prompt.md +0 -35
  288. package/prompts/ck-design-video.prompt.md +0 -35
  289. package/prompts/ck-docs-init.prompt.md +0 -27
  290. package/prompts/ck-docs-summarize.prompt.md +0 -23
  291. package/prompts/ck-docs-update.prompt.md +0 -36
  292. package/prompts/ck-fix-ci.prompt.md +0 -18
  293. package/prompts/ck-fix-fast.prompt.md +0 -18
  294. package/prompts/ck-fix-hard.prompt.md +0 -36
  295. package/prompts/ck-fix-logs.prompt.md +0 -27
  296. package/prompts/ck-fix-parallel.prompt.md +0 -54
  297. package/prompts/ck-fix-test.prompt.md +0 -19
  298. package/prompts/ck-fix-types.prompt.md +0 -11
  299. package/prompts/ck-fix-ui.prompt.md +0 -49
  300. package/prompts/ck-git-cm.prompt.md +0 -8
  301. package/prompts/ck-git-cp.prompt.md +0 -7
  302. package/prompts/ck-git-merge.prompt.md +0 -41
  303. package/prompts/ck-git-pr.prompt.md +0 -49
  304. package/prompts/ck-kanban.prompt.md +0 -77
  305. package/prompts/ck-plan-archive.prompt.md +0 -57
  306. package/prompts/ck-plan-ci.prompt.md +0 -35
  307. package/prompts/ck-plan-cro.prompt.md +0 -66
  308. package/prompts/ck-plan-fast.prompt.md +0 -103
  309. package/prompts/ck-plan-hard.prompt.md +0 -125
  310. package/prompts/ck-plan-parallel.prompt.md +0 -159
  311. package/prompts/ck-plan-two.prompt.md +0 -78
  312. package/prompts/ck-plan-validate.prompt.md +0 -117
  313. package/prompts/ck-preview.prompt.md +0 -65
  314. package/prompts/ck-scout-ext.prompt.md +0 -35
  315. package/prompts/ck-skill-add.prompt.md +0 -36
  316. package/prompts/ck-skill-create.prompt.md +0 -29
  317. package/prompts/ck-skill-fix-logs.prompt.md +0 -22
  318. package/prompts/ck-skill-optimize-auto.prompt.md +0 -25
  319. package/prompts/ck-skill-optimize.prompt.md +0 -34
  320. package/prompts/ck-skill-plan.prompt.md +0 -46
  321. package/prompts/ck-test-ui.prompt.md +0 -92
  322. package/prompts/ck-use-mcp.prompt.md +0 -27
  323. package/prompts/ck-watzup.prompt.md +0 -11
  324. package/prompts/ck-worktree.prompt.md +0 -127
  325. package/skills/ck-ai-artist/SKILL.md +0 -73
  326. package/skills/ck-ai-artist/references/advanced-techniques.md +0 -184
  327. package/skills/ck-ai-artist/references/domain-code.md +0 -66
  328. package/skills/ck-ai-artist/references/domain-data.md +0 -72
  329. package/skills/ck-ai-artist/references/domain-marketing.md +0 -66
  330. package/skills/ck-ai-artist/references/domain-patterns.md +0 -33
  331. package/skills/ck-ai-artist/references/domain-writing.md +0 -68
  332. package/skills/ck-ai-artist/references/image-prompting.md +0 -141
  333. package/skills/ck-ai-artist/references/llm-prompting.md +0 -165
  334. package/skills/ck-ai-artist/references/nano-banana.md +0 -59
  335. package/skills/ck-ai-artist/references/reasoning-techniques.md +0 -201
  336. package/skills/ck-better-auth/SKILL.md +0 -202
  337. package/skills/ck-better-auth/references/advanced-features.md +0 -553
  338. package/skills/ck-better-auth/references/database-integration.md +0 -577
  339. package/skills/ck-better-auth/references/email-password-auth.md +0 -416
  340. package/skills/ck-better-auth/references/oauth-providers.md +0 -430
  341. package/skills/ck-better-auth/scripts/.coverage +0 -0
  342. package/skills/ck-better-auth/scripts/better_auth_init.py +0 -521
  343. package/skills/ck-better-auth/scripts/requirements.txt +0 -15
  344. package/skills/ck-better-auth/scripts/tests/.coverage +0 -0
  345. package/skills/ck-better-auth/scripts/tests/test_better_auth_init.py +0 -421
  346. package/skills/ck-chrome-devtools/SKILL.md +0 -470
  347. package/skills/ck-chrome-devtools/references/cdp-domains.md +0 -694
  348. package/skills/ck-chrome-devtools/references/performance-guide.md +0 -940
  349. package/skills/ck-chrome-devtools/references/puppeteer-reference.md +0 -953
  350. package/skills/ck-chrome-devtools/scripts/README.md +0 -272
  351. package/skills/ck-chrome-devtools/scripts/__tests__/selector.test.js +0 -210
  352. package/skills/ck-chrome-devtools/scripts/aria-snapshot.js +0 -362
  353. package/skills/ck-chrome-devtools/scripts/click.js +0 -83
  354. package/skills/ck-chrome-devtools/scripts/console.js +0 -79
  355. package/skills/ck-chrome-devtools/scripts/evaluate.js +0 -53
  356. package/skills/ck-chrome-devtools/scripts/fill.js +0 -76
  357. package/skills/ck-chrome-devtools/scripts/inject-auth.js +0 -229
  358. package/skills/ck-chrome-devtools/scripts/install-deps.sh +0 -181
  359. package/skills/ck-chrome-devtools/scripts/install.sh +0 -83
  360. package/skills/ck-chrome-devtools/scripts/lib/browser.js +0 -318
  361. package/skills/ck-chrome-devtools/scripts/lib/selector.js +0 -178
  362. package/skills/ck-chrome-devtools/scripts/navigate.js +0 -54
  363. package/skills/ck-chrome-devtools/scripts/network.js +0 -106
  364. package/skills/ck-chrome-devtools/scripts/package-lock.json +0 -1589
  365. package/skills/ck-chrome-devtools/scripts/package.json +0 -16
  366. package/skills/ck-chrome-devtools/scripts/performance.js +0 -149
  367. package/skills/ck-chrome-devtools/scripts/screenshot.js +0 -198
  368. package/skills/ck-chrome-devtools/scripts/select-ref.js +0 -131
  369. package/skills/ck-chrome-devtools/scripts/snapshot.js +0 -135
  370. package/skills/ck-databases/SKILL.md +0 -231
  371. package/skills/ck-databases/references/mongodb-aggregation.md +0 -447
  372. package/skills/ck-databases/references/mongodb-atlas.md +0 -465
  373. package/skills/ck-databases/references/mongodb-crud.md +0 -408
  374. package/skills/ck-databases/references/mongodb-indexing.md +0 -442
  375. package/skills/ck-databases/references/postgresql-administration.md +0 -594
  376. package/skills/ck-databases/references/postgresql-performance.md +0 -527
  377. package/skills/ck-databases/references/postgresql-psql-cli.md +0 -467
  378. package/skills/ck-databases/references/postgresql-queries.md +0 -475
  379. package/skills/ck-databases/scripts/.coverage +0 -0
  380. package/skills/ck-databases/scripts/db_backup.py +0 -502
  381. package/skills/ck-databases/scripts/db_migrate.py +0 -425
  382. package/skills/ck-databases/scripts/db_performance_check.py +0 -456
  383. package/skills/ck-databases/scripts/requirements.txt +0 -20
  384. package/skills/ck-databases/scripts/tests/coverage-db.json +0 -1
  385. package/skills/ck-databases/scripts/tests/requirements.txt +0 -4
  386. package/skills/ck-databases/scripts/tests/test_db_backup.py +0 -340
  387. package/skills/ck-databases/scripts/tests/test_db_migrate.py +0 -277
  388. package/skills/ck-databases/scripts/tests/test_db_performance_check.py +0 -370
  389. package/skills/ck-devops/.env.example +0 -76
  390. package/skills/ck-devops/SKILL.md +0 -283
  391. package/skills/ck-devops/references/browser-rendering.md +0 -305
  392. package/skills/ck-devops/references/cloudflare-d1-kv.md +0 -123
  393. package/skills/ck-devops/references/cloudflare-platform.md +0 -271
  394. package/skills/ck-devops/references/cloudflare-r2-storage.md +0 -280
  395. package/skills/ck-devops/references/cloudflare-workers-advanced.md +0 -312
  396. package/skills/ck-devops/references/cloudflare-workers-apis.md +0 -309
  397. package/skills/ck-devops/references/cloudflare-workers-basics.md +0 -418
  398. package/skills/ck-devops/references/docker-basics.md +0 -297
  399. package/skills/ck-devops/references/docker-compose.md +0 -292
  400. package/skills/ck-devops/references/gcloud-platform.md +0 -297
  401. package/skills/ck-devops/references/gcloud-services.md +0 -304
  402. package/skills/ck-devops/scripts/cloudflare_deploy.py +0 -269
  403. package/skills/ck-devops/scripts/docker_optimize.py +0 -331
  404. package/skills/ck-devops/scripts/requirements.txt +0 -20
  405. package/skills/ck-devops/scripts/tests/requirements.txt +0 -3
  406. package/skills/ck-devops/scripts/tests/test_cloudflare_deploy.py +0 -285
  407. package/skills/ck-devops/scripts/tests/test_docker_optimize.py +0 -436
  408. package/skills/ck-docs-seeker/.env.example +0 -15
  409. package/skills/ck-docs-seeker/SKILL.md +0 -96
  410. package/skills/ck-docs-seeker/package.json +0 -25
  411. package/skills/ck-docs-seeker/references/advanced.md +0 -79
  412. package/skills/ck-docs-seeker/references/context7-patterns.md +0 -68
  413. package/skills/ck-docs-seeker/references/errors.md +0 -68
  414. package/skills/ck-docs-seeker/references/search-patterns.md +0 -93
  415. package/skills/ck-docs-seeker/references/source-evaluation.md +0 -77
  416. package/skills/ck-docs-seeker/scripts/analyze-llms-txt.js +0 -211
  417. package/skills/ck-docs-seeker/scripts/detect-topic.js +0 -172
  418. package/skills/ck-docs-seeker/scripts/fetch-docs.js +0 -213
  419. package/skills/ck-docs-seeker/scripts/tests/run-tests.js +0 -72
  420. package/skills/ck-docs-seeker/scripts/tests/test-analyze-llms.js +0 -119
  421. package/skills/ck-docs-seeker/scripts/tests/test-detect-topic.js +0 -112
  422. package/skills/ck-docs-seeker/scripts/tests/test-fetch-docs.js +0 -84
  423. package/skills/ck-docs-seeker/scripts/utils/env-loader.js +0 -94
  424. package/skills/ck-docs-seeker/workflows/library-search.md +0 -87
  425. package/skills/ck-docs-seeker/workflows/repo-analysis.md +0 -91
  426. package/skills/ck-docs-seeker/workflows/topic-search.md +0 -77
  427. package/skills/ck-frontend-design/SKILL.md +0 -79
  428. package/skills/ck-frontend-design/references/analysis-best-practices.md +0 -80
  429. package/skills/ck-frontend-design/references/analysis-prompts.md +0 -141
  430. package/skills/ck-frontend-design/references/analysis-techniques.md +0 -118
  431. package/skills/ck-frontend-design/references/animejs.md +0 -396
  432. package/skills/ck-frontend-design/references/design-extraction-overview.md +0 -71
  433. package/skills/ck-frontend-design/references/extraction-best-practices.md +0 -141
  434. package/skills/ck-frontend-design/references/extraction-output-templates.md +0 -162
  435. package/skills/ck-frontend-design/references/extraction-prompts.md +0 -127
  436. package/skills/ck-frontend-design/references/technical-accessibility.md +0 -119
  437. package/skills/ck-frontend-design/references/technical-best-practices.md +0 -97
  438. package/skills/ck-frontend-design/references/technical-optimization.md +0 -44
  439. package/skills/ck-frontend-design/references/technical-overview.md +0 -90
  440. package/skills/ck-frontend-design/references/technical-workflows.md +0 -150
  441. package/skills/ck-frontend-design/references/visual-analysis-overview.md +0 -95
  442. package/skills/ck-markdown-novel-viewer/SKILL.md +0 -190
  443. package/skills/ck-markdown-novel-viewer/assets/directory-browser.css +0 -215
  444. package/skills/ck-markdown-novel-viewer/assets/favicon.png +0 -0
  445. package/skills/ck-markdown-novel-viewer/assets/novel-theme.css +0 -818
  446. package/skills/ck-markdown-novel-viewer/assets/reader.js +0 -262
  447. package/skills/ck-markdown-novel-viewer/assets/template.html +0 -80
  448. package/skills/ck-markdown-novel-viewer/package.json +0 -15
  449. package/skills/ck-markdown-novel-viewer/scripts/lib/http-server.cjs +0 -434
  450. package/skills/ck-markdown-novel-viewer/scripts/lib/markdown-renderer.cjs +0 -272
  451. package/skills/ck-markdown-novel-viewer/scripts/lib/plan-navigator.cjs +0 -509
  452. package/skills/ck-markdown-novel-viewer/scripts/lib/port-finder.cjs +0 -48
  453. package/skills/ck-markdown-novel-viewer/scripts/lib/process-mgr.cjs +0 -150
  454. package/skills/ck-markdown-novel-viewer/scripts/server.cjs +0 -411
  455. package/skills/ck-markdown-novel-viewer/scripts/tests/server.test.cjs +0 -283
  456. package/skills/ck-markdown-novel-viewer/tests/dashboard-assets.test.cjs +0 -340
  457. package/skills/ck-markdown-novel-viewer/tests/dashboard-renderer.test.cjs +0 -404
  458. package/skills/ck-markdown-novel-viewer/tests/http-server.test.cjs +0 -271
  459. package/skills/ck-markdown-novel-viewer/tests/run-tests.cjs +0 -51
  460. package/skills/ck-markdown-novel-viewer/tests/test-framework.cjs +0 -154
  461. package/skills/ck-markdown-novel-viewer/tests/verify-xss.cjs +0 -90
  462. package/skills/ck-mcp-builder/LICENSE.txt +0 -202
  463. package/skills/ck-mcp-builder/SKILL.md +0 -327
  464. package/skills/ck-mcp-builder/reference/evaluation.md +0 -602
  465. package/skills/ck-mcp-builder/reference/mcp_best_practices.md +0 -915
  466. package/skills/ck-mcp-builder/reference/node_mcp_server.md +0 -916
  467. package/skills/ck-mcp-builder/reference/python_mcp_server.md +0 -752
  468. package/skills/ck-mcp-builder/scripts/connections.py +0 -151
  469. package/skills/ck-mcp-builder/scripts/evaluation.py +0 -373
  470. package/skills/ck-mcp-builder/scripts/example_evaluation.xml +0 -22
  471. package/skills/ck-mcp-builder/scripts/requirements.txt +0 -2
  472. package/skills/ck-mcp-management/README.md +0 -219
  473. package/skills/ck-mcp-management/SKILL.md +0 -209
  474. package/skills/ck-mcp-management/assets/tools.json +0 -3146
  475. package/skills/ck-mcp-management/references/configuration.md +0 -114
  476. package/skills/ck-mcp-management/references/gemini-cli-integration.md +0 -215
  477. package/skills/ck-mcp-management/references/mcp-protocol.md +0 -116
  478. package/skills/ck-mcp-management/scripts/.env.example +0 -10
  479. package/skills/ck-mcp-management/scripts/cli.ts +0 -195
  480. package/skills/ck-mcp-management/scripts/dist/analyze-tools.js +0 -70
  481. package/skills/ck-mcp-management/scripts/dist/cli.js +0 -160
  482. package/skills/ck-mcp-management/scripts/dist/mcp-client.js +0 -183
  483. package/skills/ck-mcp-management/scripts/mcp-client.ts +0 -230
  484. package/skills/ck-mcp-management/scripts/package.json +0 -20
  485. package/skills/ck-mcp-management/scripts/tsconfig.json +0 -15
  486. package/skills/ck-media-processing/SKILL.md +0 -90
  487. package/skills/ck-media-processing/references/common-workflows.md +0 -132
  488. package/skills/ck-media-processing/references/ffmpeg-encoding.md +0 -358
  489. package/skills/ck-media-processing/references/ffmpeg-filters.md +0 -503
  490. package/skills/ck-media-processing/references/ffmpeg-streaming.md +0 -403
  491. package/skills/ck-media-processing/references/format-compatibility.md +0 -375
  492. package/skills/ck-media-processing/references/imagemagick-batch.md +0 -612
  493. package/skills/ck-media-processing/references/imagemagick-editing.md +0 -623
  494. package/skills/ck-media-processing/references/rmbg-background-removal.md +0 -66
  495. package/skills/ck-media-processing/references/troubleshooting.md +0 -109
  496. package/skills/ck-media-processing/scripts/README.md +0 -111
  497. package/skills/ck-media-processing/scripts/batch-remove-background.sh +0 -124
  498. package/skills/ck-media-processing/scripts/batch_resize.py +0 -342
  499. package/skills/ck-media-processing/scripts/media_convert.py +0 -311
  500. package/skills/ck-media-processing/scripts/remove-background.sh +0 -96
  501. package/skills/ck-media-processing/scripts/remove-bg-node.js +0 -158
  502. package/skills/ck-media-processing/scripts/requirements.txt +0 -24
  503. package/skills/ck-media-processing/scripts/tests/.coverage +0 -0
  504. package/skills/ck-media-processing/scripts/tests/requirements.txt +0 -2
  505. package/skills/ck-media-processing/scripts/tests/test_batch_resize.py +0 -372
  506. package/skills/ck-media-processing/scripts/tests/test_media_convert.py +0 -259
  507. package/skills/ck-media-processing/scripts/tests/test_video_optimize.py +0 -397
  508. package/skills/ck-media-processing/scripts/video_optimize.py +0 -414
  509. package/skills/ck-mobile-development/SKILL.md +0 -210
  510. package/skills/ck-mobile-development/references/mobile-android.md +0 -604
  511. package/skills/ck-mobile-development/references/mobile-best-practices.md +0 -545
  512. package/skills/ck-mobile-development/references/mobile-debugging.md +0 -1089
  513. package/skills/ck-mobile-development/references/mobile-frameworks.md +0 -465
  514. package/skills/ck-mobile-development/references/mobile-ios.md +0 -496
  515. package/skills/ck-mobile-development/references/mobile-mindset.md +0 -544
  516. package/skills/ck-payment-integration/README.md +0 -185
  517. package/skills/ck-payment-integration/SKILL.md +0 -116
  518. package/skills/ck-payment-integration/references/polar/benefits.md +0 -396
  519. package/skills/ck-payment-integration/references/polar/best-practices.md +0 -482
  520. package/skills/ck-payment-integration/references/polar/checkouts.md +0 -266
  521. package/skills/ck-payment-integration/references/polar/overview.md +0 -184
  522. package/skills/ck-payment-integration/references/polar/products.md +0 -244
  523. package/skills/ck-payment-integration/references/polar/sdk.md +0 -436
  524. package/skills/ck-payment-integration/references/polar/subscriptions.md +0 -340
  525. package/skills/ck-payment-integration/references/polar/webhooks.md +0 -405
  526. package/skills/ck-payment-integration/references/sepay/api.md +0 -140
  527. package/skills/ck-payment-integration/references/sepay/best-practices.md +0 -337
  528. package/skills/ck-payment-integration/references/sepay/overview.md +0 -138
  529. package/skills/ck-payment-integration/references/sepay/qr-codes.md +0 -228
  530. package/skills/ck-payment-integration/references/sepay/sdk.md +0 -213
  531. package/skills/ck-payment-integration/references/sepay/webhooks.md +0 -208
  532. package/skills/ck-payment-integration/scripts/.env.example +0 -20
  533. package/skills/ck-payment-integration/scripts/checkout-helper.js +0 -244
  534. package/skills/ck-payment-integration/scripts/package.json +0 -17
  535. package/skills/ck-payment-integration/scripts/polar-webhook-verify.js +0 -202
  536. package/skills/ck-payment-integration/scripts/sepay-webhook-verify.js +0 -193
  537. package/skills/ck-payment-integration/scripts/test-scripts.js +0 -237
  538. package/skills/ck-repomix/SKILL.md +0 -247
  539. package/skills/ck-repomix/references/configuration.md +0 -211
  540. package/skills/ck-repomix/references/usage-patterns.md +0 -232
  541. package/skills/ck-repomix/scripts/.coverage +0 -0
  542. package/skills/ck-repomix/scripts/README.md +0 -179
  543. package/skills/ck-repomix/scripts/repomix_batch.py +0 -455
  544. package/skills/ck-repomix/scripts/repos.example.json +0 -15
  545. package/skills/ck-repomix/scripts/requirements.txt +0 -15
  546. package/skills/ck-repomix/scripts/tests/test_repomix_batch.py +0 -531
  547. package/skills/ck-shopify/README.md +0 -66
  548. package/skills/ck-shopify/SKILL.md +0 -319
  549. package/skills/ck-shopify/references/app-development.md +0 -470
  550. package/skills/ck-shopify/references/extensions.md +0 -493
  551. package/skills/ck-shopify/references/themes.md +0 -498
  552. package/skills/ck-shopify/scripts/.coverage +0 -0
  553. package/skills/ck-shopify/scripts/requirements.txt +0 -19
  554. package/skills/ck-shopify/scripts/shopify_init.py +0 -423
  555. package/skills/ck-shopify/scripts/tests/.coverage +0 -0
  556. package/skills/ck-shopify/scripts/tests/test_shopify_init.py +0 -385
  557. package/skills/ck-skill-creator/LICENSE.txt +0 -202
  558. package/skills/ck-skill-creator/SKILL.md +0 -263
  559. package/skills/ck-skill-creator/scripts/init_skill.py +0 -303
  560. package/skills/ck-skill-creator/scripts/package_skill.py +0 -110
  561. package/skills/ck-skill-creator/scripts/quick_validate.py +0 -65
  562. package/skills/ck-threejs/SKILL.md +0 -87
  563. package/skills/ck-threejs/references/01-getting-started.md +0 -177
  564. package/skills/ck-threejs/references/02-loaders.md +0 -169
  565. package/skills/ck-threejs/references/03-textures.md +0 -170
  566. package/skills/ck-threejs/references/04-cameras.md +0 -195
  567. package/skills/ck-threejs/references/05-lights.md +0 -183
  568. package/skills/ck-threejs/references/06-animations.md +0 -214
  569. package/skills/ck-threejs/references/07-math.md +0 -260
  570. package/skills/ck-threejs/references/08-interaction.md +0 -267
  571. package/skills/ck-threejs/references/09-postprocessing.md +0 -240
  572. package/skills/ck-threejs/references/10-controls.md +0 -259
  573. package/skills/ck-threejs/references/11-materials-advanced.md +0 -270
  574. package/skills/ck-threejs/references/12-performance.md +0 -269
  575. package/skills/ck-threejs/references/13-node-materials.md +0 -298
  576. package/skills/ck-threejs/references/14-physics-vr.md +0 -304
  577. package/skills/ck-threejs/references/15-specialized-loaders.md +0 -333
  578. package/skills/ck-threejs/references/16-webgpu.md +0 -302
  579. package/skills/ck-ui-styling/LICENSE.txt +0 -202
  580. package/skills/ck-ui-styling/SKILL.md +0 -319
  581. package/skills/ck-ui-styling/canvas-fonts/ArsenalSC-OFL.txt +0 -93
  582. package/skills/ck-ui-styling/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  583. package/skills/ck-ui-styling/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  584. package/skills/ck-ui-styling/canvas-fonts/BigShoulders-OFL.txt +0 -93
  585. package/skills/ck-ui-styling/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  586. package/skills/ck-ui-styling/canvas-fonts/Boldonse-OFL.txt +0 -93
  587. package/skills/ck-ui-styling/canvas-fonts/Boldonse-Regular.ttf +0 -0
  588. package/skills/ck-ui-styling/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  589. package/skills/ck-ui-styling/canvas-fonts/BricolageGrotesque-OFL.txt +0 -93
  590. package/skills/ck-ui-styling/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  591. package/skills/ck-ui-styling/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  592. package/skills/ck-ui-styling/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  593. package/skills/ck-ui-styling/canvas-fonts/CrimsonPro-OFL.txt +0 -93
  594. package/skills/ck-ui-styling/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  595. package/skills/ck-ui-styling/canvas-fonts/DMMono-OFL.txt +0 -93
  596. package/skills/ck-ui-styling/canvas-fonts/DMMono-Regular.ttf +0 -0
  597. package/skills/ck-ui-styling/canvas-fonts/EricaOne-OFL.txt +0 -94
  598. package/skills/ck-ui-styling/canvas-fonts/EricaOne-Regular.ttf +0 -0
  599. package/skills/ck-ui-styling/canvas-fonts/GeistMono-Bold.ttf +0 -0
  600. package/skills/ck-ui-styling/canvas-fonts/GeistMono-OFL.txt +0 -93
  601. package/skills/ck-ui-styling/canvas-fonts/GeistMono-Regular.ttf +0 -0
  602. package/skills/ck-ui-styling/canvas-fonts/Gloock-OFL.txt +0 -93
  603. package/skills/ck-ui-styling/canvas-fonts/Gloock-Regular.ttf +0 -0
  604. package/skills/ck-ui-styling/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  605. package/skills/ck-ui-styling/canvas-fonts/IBMPlexMono-OFL.txt +0 -93
  606. package/skills/ck-ui-styling/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  607. package/skills/ck-ui-styling/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  608. package/skills/ck-ui-styling/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  609. package/skills/ck-ui-styling/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  610. package/skills/ck-ui-styling/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  611. package/skills/ck-ui-styling/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  612. package/skills/ck-ui-styling/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  613. package/skills/ck-ui-styling/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  614. package/skills/ck-ui-styling/canvas-fonts/InstrumentSans-OFL.txt +0 -93
  615. package/skills/ck-ui-styling/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  616. package/skills/ck-ui-styling/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  617. package/skills/ck-ui-styling/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  618. package/skills/ck-ui-styling/canvas-fonts/Italiana-OFL.txt +0 -93
  619. package/skills/ck-ui-styling/canvas-fonts/Italiana-Regular.ttf +0 -0
  620. package/skills/ck-ui-styling/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  621. package/skills/ck-ui-styling/canvas-fonts/JetBrainsMono-OFL.txt +0 -93
  622. package/skills/ck-ui-styling/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  623. package/skills/ck-ui-styling/canvas-fonts/Jura-Light.ttf +0 -0
  624. package/skills/ck-ui-styling/canvas-fonts/Jura-Medium.ttf +0 -0
  625. package/skills/ck-ui-styling/canvas-fonts/Jura-OFL.txt +0 -93
  626. package/skills/ck-ui-styling/canvas-fonts/LibreBaskerville-OFL.txt +0 -93
  627. package/skills/ck-ui-styling/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  628. package/skills/ck-ui-styling/canvas-fonts/Lora-Bold.ttf +0 -0
  629. package/skills/ck-ui-styling/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  630. package/skills/ck-ui-styling/canvas-fonts/Lora-Italic.ttf +0 -0
  631. package/skills/ck-ui-styling/canvas-fonts/Lora-OFL.txt +0 -93
  632. package/skills/ck-ui-styling/canvas-fonts/Lora-Regular.ttf +0 -0
  633. package/skills/ck-ui-styling/canvas-fonts/NationalPark-Bold.ttf +0 -0
  634. package/skills/ck-ui-styling/canvas-fonts/NationalPark-OFL.txt +0 -93
  635. package/skills/ck-ui-styling/canvas-fonts/NationalPark-Regular.ttf +0 -0
  636. package/skills/ck-ui-styling/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -93
  637. package/skills/ck-ui-styling/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  638. package/skills/ck-ui-styling/canvas-fonts/Outfit-Bold.ttf +0 -0
  639. package/skills/ck-ui-styling/canvas-fonts/Outfit-OFL.txt +0 -93
  640. package/skills/ck-ui-styling/canvas-fonts/Outfit-Regular.ttf +0 -0
  641. package/skills/ck-ui-styling/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  642. package/skills/ck-ui-styling/canvas-fonts/PixelifySans-OFL.txt +0 -93
  643. package/skills/ck-ui-styling/canvas-fonts/PoiretOne-OFL.txt +0 -93
  644. package/skills/ck-ui-styling/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  645. package/skills/ck-ui-styling/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  646. package/skills/ck-ui-styling/canvas-fonts/RedHatMono-OFL.txt +0 -93
  647. package/skills/ck-ui-styling/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  648. package/skills/ck-ui-styling/canvas-fonts/Silkscreen-OFL.txt +0 -93
  649. package/skills/ck-ui-styling/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  650. package/skills/ck-ui-styling/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  651. package/skills/ck-ui-styling/canvas-fonts/SmoochSans-OFL.txt +0 -93
  652. package/skills/ck-ui-styling/canvas-fonts/Tektur-Medium.ttf +0 -0
  653. package/skills/ck-ui-styling/canvas-fonts/Tektur-OFL.txt +0 -93
  654. package/skills/ck-ui-styling/canvas-fonts/Tektur-Regular.ttf +0 -0
  655. package/skills/ck-ui-styling/canvas-fonts/WorkSans-Bold.ttf +0 -0
  656. package/skills/ck-ui-styling/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  657. package/skills/ck-ui-styling/canvas-fonts/WorkSans-Italic.ttf +0 -0
  658. package/skills/ck-ui-styling/canvas-fonts/WorkSans-OFL.txt +0 -93
  659. package/skills/ck-ui-styling/canvas-fonts/WorkSans-Regular.ttf +0 -0
  660. package/skills/ck-ui-styling/canvas-fonts/YoungSerif-OFL.txt +0 -93
  661. package/skills/ck-ui-styling/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  662. package/skills/ck-ui-styling/references/canvas-design-system.md +0 -320
  663. package/skills/ck-ui-styling/references/shadcn-accessibility.md +0 -471
  664. package/skills/ck-ui-styling/references/shadcn-components.md +0 -424
  665. package/skills/ck-ui-styling/references/shadcn-theming.md +0 -373
  666. package/skills/ck-ui-styling/references/tailwind-customization.md +0 -483
  667. package/skills/ck-ui-styling/references/tailwind-responsive.md +0 -382
  668. package/skills/ck-ui-styling/references/tailwind-utilities.md +0 -455
  669. package/skills/ck-ui-styling/scripts/.coverage +0 -0
  670. package/skills/ck-ui-styling/scripts/requirements.txt +0 -17
  671. package/skills/ck-ui-styling/scripts/shadcn_add.py +0 -292
  672. package/skills/ck-ui-styling/scripts/tailwind_config_gen.py +0 -456
  673. package/skills/ck-ui-styling/scripts/tests/coverage-ui.json +0 -1
  674. package/skills/ck-ui-styling/scripts/tests/requirements.txt +0 -3
  675. package/skills/ck-ui-styling/scripts/tests/test_shadcn_add.py +0 -266
  676. package/skills/ck-ui-styling/scripts/tests/test_tailwind_config_gen.py +0 -336
  677. package/skills/ck-ui-ux-pro-max/SKILL.md +0 -227
  678. package/skills/ck-ui-ux-pro-max/data/charts.csv +0 -26
  679. package/skills/ck-ui-ux-pro-max/data/colors.csv +0 -97
  680. package/skills/ck-ui-ux-pro-max/data/landing.csv +0 -31
  681. package/skills/ck-ui-ux-pro-max/data/products.csv +0 -97
  682. package/skills/ck-ui-ux-pro-max/data/prompts.csv +0 -24
  683. package/skills/ck-ui-ux-pro-max/data/stacks/flutter.csv +0 -53
  684. package/skills/ck-ui-ux-pro-max/data/stacks/html-tailwind.csv +0 -51
  685. package/skills/ck-ui-ux-pro-max/data/stacks/nextjs.csv +0 -53
  686. package/skills/ck-ui-ux-pro-max/data/stacks/react-native.csv +0 -52
  687. package/skills/ck-ui-ux-pro-max/data/stacks/react.csv +0 -54
  688. package/skills/ck-ui-ux-pro-max/data/stacks/svelte.csv +0 -54
  689. package/skills/ck-ui-ux-pro-max/data/stacks/swiftui.csv +0 -51
  690. package/skills/ck-ui-ux-pro-max/data/stacks/vue.csv +0 -50
  691. package/skills/ck-ui-ux-pro-max/data/styles.csv +0 -59
  692. package/skills/ck-ui-ux-pro-max/data/typography.csv +0 -58
  693. package/skills/ck-ui-ux-pro-max/data/ux-guidelines.csv +0 -100
  694. package/skills/ck-ui-ux-pro-max/scripts/core.py +0 -236
  695. package/skills/ck-ui-ux-pro-max/scripts/search.py +0 -76
  696. package/skills/ck-web-frameworks/SKILL.md +0 -322
  697. package/skills/ck-web-frameworks/references/nextjs-app-router.md +0 -465
  698. package/skills/ck-web-frameworks/references/nextjs-data-fetching.md +0 -459
  699. package/skills/ck-web-frameworks/references/nextjs-optimization.md +0 -511
  700. package/skills/ck-web-frameworks/references/nextjs-server-components.md +0 -495
  701. package/skills/ck-web-frameworks/references/remix-icon-integration.md +0 -603
  702. package/skills/ck-web-frameworks/references/turborepo-caching.md +0 -551
  703. package/skills/ck-web-frameworks/references/turborepo-pipelines.md +0 -517
  704. package/skills/ck-web-frameworks/references/turborepo-setup.md +0 -542
  705. package/skills/ck-web-frameworks/scripts/.coverage +0 -0
  706. package/skills/ck-web-frameworks/scripts/__init__.py +0 -0
  707. package/skills/ck-web-frameworks/scripts/nextjs_init.py +0 -547
  708. package/skills/ck-web-frameworks/scripts/requirements.txt +0 -16
  709. package/skills/ck-web-frameworks/scripts/tests/coverage-web.json +0 -1
  710. package/skills/ck-web-frameworks/scripts/tests/requirements.txt +0 -3
  711. package/skills/ck-web-frameworks/scripts/tests/test_nextjs_init.py +0 -319
  712. package/skills/ck-web-frameworks/scripts/tests/test_turborepo_migrate.py +0 -374
  713. package/skills/ck-web-frameworks/scripts/turborepo_migrate.py +0 -394
  714. package/templates/repo/.github/agents/database-admin.agent.md +0 -91
  715. package/templates/repo/.github/agents/fullstack-developer.agent.md +0 -96
  716. package/templates/repo/.github/agents/mcp-manager.agent.md +0 -93
  717. package/templates/repo/.github/agents/project-manager.agent.md +0 -124
  718. package/templates/repo/.github/agents/scout-external.agent.md +0 -141
  719. package/templates/repo/.github/agents/ui-ux-designer.agent.md +0 -225
  720. package/templates/repo/.github/collections/ck-ui-design.collection.yml +0 -18
  721. package/templates/repo/.github/instructions/ck-frontend-design-pro.instructions.md +0 -58
  722. package/templates/repo/.github/instructions/ck-google-adk-python.instructions.md +0 -242
  723. package/templates/repo/.github/prompts/ck-bootstrap-auto-fast.prompt.md +0 -108
  724. package/templates/repo/.github/prompts/ck-bootstrap-auto-parallel.prompt.md +0 -66
  725. package/templates/repo/.github/prompts/ck-bootstrap-auto.prompt.md +0 -114
  726. package/templates/repo/.github/prompts/ck-code-auto.prompt.md +0 -172
  727. package/templates/repo/.github/prompts/ck-code-no-test.prompt.md +0 -160
  728. package/templates/repo/.github/prompts/ck-code-parallel.prompt.md +0 -57
  729. package/templates/repo/.github/prompts/ck-coding-level.prompt.md +0 -54
  730. package/templates/repo/.github/prompts/ck-cook-auto-fast.prompt.md +0 -26
  731. package/templates/repo/.github/prompts/ck-cook-auto-parallel.prompt.md +0 -50
  732. package/templates/repo/.github/prompts/ck-cook-auto.prompt.md +0 -17
  733. package/templates/repo/.github/prompts/ck-design-3d.prompt.md +0 -84
  734. package/templates/repo/.github/prompts/ck-design-describe.prompt.md +0 -24
  735. package/templates/repo/.github/prompts/ck-design-fast.prompt.md +0 -32
  736. package/templates/repo/.github/prompts/ck-design-good.prompt.md +0 -36
  737. package/templates/repo/.github/prompts/ck-design-screenshot.prompt.md +0 -35
  738. package/templates/repo/.github/prompts/ck-design-video.prompt.md +0 -35
  739. package/templates/repo/.github/prompts/ck-docs-init.prompt.md +0 -27
  740. package/templates/repo/.github/prompts/ck-docs-summarize.prompt.md +0 -23
  741. package/templates/repo/.github/prompts/ck-docs-update.prompt.md +0 -36
  742. package/templates/repo/.github/prompts/ck-fix-ci.prompt.md +0 -18
  743. package/templates/repo/.github/prompts/ck-fix-fast.prompt.md +0 -18
  744. package/templates/repo/.github/prompts/ck-fix-hard.prompt.md +0 -36
  745. package/templates/repo/.github/prompts/ck-fix-logs.prompt.md +0 -27
  746. package/templates/repo/.github/prompts/ck-fix-parallel.prompt.md +0 -54
  747. package/templates/repo/.github/prompts/ck-fix-test.prompt.md +0 -19
  748. package/templates/repo/.github/prompts/ck-fix-types.prompt.md +0 -11
  749. package/templates/repo/.github/prompts/ck-fix-ui.prompt.md +0 -49
  750. package/templates/repo/.github/prompts/ck-git-cm.prompt.md +0 -8
  751. package/templates/repo/.github/prompts/ck-git-cp.prompt.md +0 -7
  752. package/templates/repo/.github/prompts/ck-git-merge.prompt.md +0 -41
  753. package/templates/repo/.github/prompts/ck-git-pr.prompt.md +0 -49
  754. package/templates/repo/.github/prompts/ck-kanban.prompt.md +0 -77
  755. package/templates/repo/.github/prompts/ck-plan-archive.prompt.md +0 -57
  756. package/templates/repo/.github/prompts/ck-plan-ci.prompt.md +0 -35
  757. package/templates/repo/.github/prompts/ck-plan-cro.prompt.md +0 -66
  758. package/templates/repo/.github/prompts/ck-plan-fast.prompt.md +0 -103
  759. package/templates/repo/.github/prompts/ck-plan-hard.prompt.md +0 -125
  760. package/templates/repo/.github/prompts/ck-plan-parallel.prompt.md +0 -159
  761. package/templates/repo/.github/prompts/ck-plan-two.prompt.md +0 -78
  762. package/templates/repo/.github/prompts/ck-plan-validate.prompt.md +0 -117
  763. package/templates/repo/.github/prompts/ck-preview.prompt.md +0 -65
  764. package/templates/repo/.github/prompts/ck-scout-ext.prompt.md +0 -35
  765. package/templates/repo/.github/prompts/ck-skill-add.prompt.md +0 -36
  766. package/templates/repo/.github/prompts/ck-skill-create.prompt.md +0 -29
  767. package/templates/repo/.github/prompts/ck-skill-fix-logs.prompt.md +0 -22
  768. package/templates/repo/.github/prompts/ck-skill-optimize-auto.prompt.md +0 -25
  769. package/templates/repo/.github/prompts/ck-skill-optimize.prompt.md +0 -34
  770. package/templates/repo/.github/prompts/ck-skill-plan.prompt.md +0 -46
  771. package/templates/repo/.github/prompts/ck-test-ui.prompt.md +0 -92
  772. package/templates/repo/.github/prompts/ck-use-mcp.prompt.md +0 -27
  773. package/templates/repo/.github/prompts/ck-watzup.prompt.md +0 -11
  774. package/templates/repo/.github/prompts/ck-worktree.prompt.md +0 -127
  775. package/templates/repo/.github/skills/ck-ai-artist/SKILL.md +0 -73
  776. package/templates/repo/.github/skills/ck-ai-artist/references/advanced-techniques.md +0 -184
  777. package/templates/repo/.github/skills/ck-ai-artist/references/domain-code.md +0 -66
  778. package/templates/repo/.github/skills/ck-ai-artist/references/domain-data.md +0 -72
  779. package/templates/repo/.github/skills/ck-ai-artist/references/domain-marketing.md +0 -66
  780. package/templates/repo/.github/skills/ck-ai-artist/references/domain-patterns.md +0 -33
  781. package/templates/repo/.github/skills/ck-ai-artist/references/domain-writing.md +0 -68
  782. package/templates/repo/.github/skills/ck-ai-artist/references/image-prompting.md +0 -141
  783. package/templates/repo/.github/skills/ck-ai-artist/references/llm-prompting.md +0 -165
  784. package/templates/repo/.github/skills/ck-ai-artist/references/nano-banana.md +0 -59
  785. package/templates/repo/.github/skills/ck-ai-artist/references/reasoning-techniques.md +0 -201
  786. package/templates/repo/.github/skills/ck-better-auth/SKILL.md +0 -202
  787. package/templates/repo/.github/skills/ck-better-auth/references/advanced-features.md +0 -553
  788. package/templates/repo/.github/skills/ck-better-auth/references/database-integration.md +0 -577
  789. package/templates/repo/.github/skills/ck-better-auth/references/email-password-auth.md +0 -416
  790. package/templates/repo/.github/skills/ck-better-auth/references/oauth-providers.md +0 -430
  791. package/templates/repo/.github/skills/ck-better-auth/scripts/.coverage +0 -0
  792. package/templates/repo/.github/skills/ck-better-auth/scripts/better_auth_init.py +0 -521
  793. package/templates/repo/.github/skills/ck-better-auth/scripts/requirements.txt +0 -15
  794. package/templates/repo/.github/skills/ck-better-auth/scripts/tests/.coverage +0 -0
  795. package/templates/repo/.github/skills/ck-better-auth/scripts/tests/test_better_auth_init.py +0 -421
  796. package/templates/repo/.github/skills/ck-chrome-devtools/SKILL.md +0 -470
  797. package/templates/repo/.github/skills/ck-chrome-devtools/references/cdp-domains.md +0 -694
  798. package/templates/repo/.github/skills/ck-chrome-devtools/references/performance-guide.md +0 -940
  799. package/templates/repo/.github/skills/ck-chrome-devtools/references/puppeteer-reference.md +0 -953
  800. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/README.md +0 -272
  801. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/__tests__/selector.test.js +0 -210
  802. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/aria-snapshot.js +0 -362
  803. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/click.js +0 -83
  804. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/console.js +0 -79
  805. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/evaluate.js +0 -53
  806. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/fill.js +0 -76
  807. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/inject-auth.js +0 -229
  808. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/install-deps.sh +0 -181
  809. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/install.sh +0 -83
  810. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/lib/browser.js +0 -318
  811. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/lib/selector.js +0 -178
  812. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/navigate.js +0 -54
  813. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/network.js +0 -106
  814. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/package-lock.json +0 -1589
  815. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/package.json +0 -16
  816. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/performance.js +0 -149
  817. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/screenshot.js +0 -198
  818. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/select-ref.js +0 -131
  819. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/snapshot.js +0 -135
  820. package/templates/repo/.github/skills/ck-databases/SKILL.md +0 -231
  821. package/templates/repo/.github/skills/ck-databases/references/mongodb-aggregation.md +0 -447
  822. package/templates/repo/.github/skills/ck-databases/references/mongodb-atlas.md +0 -465
  823. package/templates/repo/.github/skills/ck-databases/references/mongodb-crud.md +0 -408
  824. package/templates/repo/.github/skills/ck-databases/references/mongodb-indexing.md +0 -442
  825. package/templates/repo/.github/skills/ck-databases/references/postgresql-administration.md +0 -594
  826. package/templates/repo/.github/skills/ck-databases/references/postgresql-performance.md +0 -527
  827. package/templates/repo/.github/skills/ck-databases/references/postgresql-psql-cli.md +0 -467
  828. package/templates/repo/.github/skills/ck-databases/references/postgresql-queries.md +0 -475
  829. package/templates/repo/.github/skills/ck-databases/scripts/.coverage +0 -0
  830. package/templates/repo/.github/skills/ck-databases/scripts/db_backup.py +0 -502
  831. package/templates/repo/.github/skills/ck-databases/scripts/db_migrate.py +0 -425
  832. package/templates/repo/.github/skills/ck-databases/scripts/db_performance_check.py +0 -456
  833. package/templates/repo/.github/skills/ck-databases/scripts/requirements.txt +0 -20
  834. package/templates/repo/.github/skills/ck-databases/scripts/tests/coverage-db.json +0 -1
  835. package/templates/repo/.github/skills/ck-databases/scripts/tests/requirements.txt +0 -4
  836. package/templates/repo/.github/skills/ck-databases/scripts/tests/test_db_backup.py +0 -340
  837. package/templates/repo/.github/skills/ck-databases/scripts/tests/test_db_migrate.py +0 -277
  838. package/templates/repo/.github/skills/ck-databases/scripts/tests/test_db_performance_check.py +0 -370
  839. package/templates/repo/.github/skills/ck-devops/.env.example +0 -76
  840. package/templates/repo/.github/skills/ck-devops/SKILL.md +0 -283
  841. package/templates/repo/.github/skills/ck-devops/references/browser-rendering.md +0 -305
  842. package/templates/repo/.github/skills/ck-devops/references/cloudflare-d1-kv.md +0 -123
  843. package/templates/repo/.github/skills/ck-devops/references/cloudflare-platform.md +0 -271
  844. package/templates/repo/.github/skills/ck-devops/references/cloudflare-r2-storage.md +0 -280
  845. package/templates/repo/.github/skills/ck-devops/references/cloudflare-workers-advanced.md +0 -312
  846. package/templates/repo/.github/skills/ck-devops/references/cloudflare-workers-apis.md +0 -309
  847. package/templates/repo/.github/skills/ck-devops/references/cloudflare-workers-basics.md +0 -418
  848. package/templates/repo/.github/skills/ck-devops/references/docker-basics.md +0 -297
  849. package/templates/repo/.github/skills/ck-devops/references/docker-compose.md +0 -292
  850. package/templates/repo/.github/skills/ck-devops/references/gcloud-platform.md +0 -297
  851. package/templates/repo/.github/skills/ck-devops/references/gcloud-services.md +0 -304
  852. package/templates/repo/.github/skills/ck-devops/scripts/cloudflare_deploy.py +0 -269
  853. package/templates/repo/.github/skills/ck-devops/scripts/docker_optimize.py +0 -331
  854. package/templates/repo/.github/skills/ck-devops/scripts/requirements.txt +0 -20
  855. package/templates/repo/.github/skills/ck-devops/scripts/tests/requirements.txt +0 -3
  856. package/templates/repo/.github/skills/ck-devops/scripts/tests/test_cloudflare_deploy.py +0 -285
  857. package/templates/repo/.github/skills/ck-devops/scripts/tests/test_docker_optimize.py +0 -436
  858. package/templates/repo/.github/skills/ck-docs-seeker/.env.example +0 -15
  859. package/templates/repo/.github/skills/ck-docs-seeker/SKILL.md +0 -96
  860. package/templates/repo/.github/skills/ck-docs-seeker/package.json +0 -25
  861. package/templates/repo/.github/skills/ck-docs-seeker/references/advanced.md +0 -79
  862. package/templates/repo/.github/skills/ck-docs-seeker/references/context7-patterns.md +0 -68
  863. package/templates/repo/.github/skills/ck-docs-seeker/references/errors.md +0 -68
  864. package/templates/repo/.github/skills/ck-docs-seeker/references/search-patterns.md +0 -93
  865. package/templates/repo/.github/skills/ck-docs-seeker/references/source-evaluation.md +0 -77
  866. package/templates/repo/.github/skills/ck-docs-seeker/scripts/analyze-llms-txt.js +0 -211
  867. package/templates/repo/.github/skills/ck-docs-seeker/scripts/detect-topic.js +0 -172
  868. package/templates/repo/.github/skills/ck-docs-seeker/scripts/fetch-docs.js +0 -213
  869. package/templates/repo/.github/skills/ck-docs-seeker/scripts/tests/run-tests.js +0 -72
  870. package/templates/repo/.github/skills/ck-docs-seeker/scripts/tests/test-analyze-llms.js +0 -119
  871. package/templates/repo/.github/skills/ck-docs-seeker/scripts/tests/test-detect-topic.js +0 -112
  872. package/templates/repo/.github/skills/ck-docs-seeker/scripts/tests/test-fetch-docs.js +0 -84
  873. package/templates/repo/.github/skills/ck-docs-seeker/scripts/utils/env-loader.js +0 -94
  874. package/templates/repo/.github/skills/ck-docs-seeker/workflows/library-search.md +0 -87
  875. package/templates/repo/.github/skills/ck-docs-seeker/workflows/repo-analysis.md +0 -91
  876. package/templates/repo/.github/skills/ck-docs-seeker/workflows/topic-search.md +0 -77
  877. package/templates/repo/.github/skills/ck-frontend-design/SKILL.md +0 -79
  878. package/templates/repo/.github/skills/ck-frontend-design/references/analysis-best-practices.md +0 -80
  879. package/templates/repo/.github/skills/ck-frontend-design/references/analysis-prompts.md +0 -141
  880. package/templates/repo/.github/skills/ck-frontend-design/references/analysis-techniques.md +0 -118
  881. package/templates/repo/.github/skills/ck-frontend-design/references/animejs.md +0 -396
  882. package/templates/repo/.github/skills/ck-frontend-design/references/design-extraction-overview.md +0 -71
  883. package/templates/repo/.github/skills/ck-frontend-design/references/extraction-best-practices.md +0 -141
  884. package/templates/repo/.github/skills/ck-frontend-design/references/extraction-output-templates.md +0 -162
  885. package/templates/repo/.github/skills/ck-frontend-design/references/extraction-prompts.md +0 -127
  886. package/templates/repo/.github/skills/ck-frontend-design/references/technical-accessibility.md +0 -119
  887. package/templates/repo/.github/skills/ck-frontend-design/references/technical-best-practices.md +0 -97
  888. package/templates/repo/.github/skills/ck-frontend-design/references/technical-optimization.md +0 -44
  889. package/templates/repo/.github/skills/ck-frontend-design/references/technical-overview.md +0 -90
  890. package/templates/repo/.github/skills/ck-frontend-design/references/technical-workflows.md +0 -150
  891. package/templates/repo/.github/skills/ck-frontend-design/references/visual-analysis-overview.md +0 -95
  892. package/templates/repo/.github/skills/ck-markdown-novel-viewer/SKILL.md +0 -190
  893. package/templates/repo/.github/skills/ck-markdown-novel-viewer/assets/directory-browser.css +0 -215
  894. package/templates/repo/.github/skills/ck-markdown-novel-viewer/assets/favicon.png +0 -0
  895. package/templates/repo/.github/skills/ck-markdown-novel-viewer/assets/novel-theme.css +0 -818
  896. package/templates/repo/.github/skills/ck-markdown-novel-viewer/assets/reader.js +0 -262
  897. package/templates/repo/.github/skills/ck-markdown-novel-viewer/assets/template.html +0 -80
  898. package/templates/repo/.github/skills/ck-markdown-novel-viewer/package.json +0 -15
  899. package/templates/repo/.github/skills/ck-markdown-novel-viewer/scripts/lib/http-server.cjs +0 -434
  900. package/templates/repo/.github/skills/ck-markdown-novel-viewer/scripts/lib/markdown-renderer.cjs +0 -272
  901. package/templates/repo/.github/skills/ck-markdown-novel-viewer/scripts/lib/plan-navigator.cjs +0 -509
  902. package/templates/repo/.github/skills/ck-markdown-novel-viewer/scripts/lib/port-finder.cjs +0 -48
  903. package/templates/repo/.github/skills/ck-markdown-novel-viewer/scripts/lib/process-mgr.cjs +0 -150
  904. package/templates/repo/.github/skills/ck-markdown-novel-viewer/scripts/server.cjs +0 -411
  905. package/templates/repo/.github/skills/ck-markdown-novel-viewer/scripts/tests/server.test.cjs +0 -283
  906. package/templates/repo/.github/skills/ck-markdown-novel-viewer/tests/dashboard-assets.test.cjs +0 -340
  907. package/templates/repo/.github/skills/ck-markdown-novel-viewer/tests/dashboard-renderer.test.cjs +0 -404
  908. package/templates/repo/.github/skills/ck-markdown-novel-viewer/tests/http-server.test.cjs +0 -271
  909. package/templates/repo/.github/skills/ck-markdown-novel-viewer/tests/run-tests.cjs +0 -51
  910. package/templates/repo/.github/skills/ck-markdown-novel-viewer/tests/test-framework.cjs +0 -154
  911. package/templates/repo/.github/skills/ck-markdown-novel-viewer/tests/verify-xss.cjs +0 -90
  912. package/templates/repo/.github/skills/ck-mcp-builder/LICENSE.txt +0 -202
  913. package/templates/repo/.github/skills/ck-mcp-builder/SKILL.md +0 -327
  914. package/templates/repo/.github/skills/ck-mcp-builder/reference/evaluation.md +0 -602
  915. package/templates/repo/.github/skills/ck-mcp-builder/reference/mcp_best_practices.md +0 -915
  916. package/templates/repo/.github/skills/ck-mcp-builder/reference/node_mcp_server.md +0 -916
  917. package/templates/repo/.github/skills/ck-mcp-builder/reference/python_mcp_server.md +0 -752
  918. package/templates/repo/.github/skills/ck-mcp-builder/scripts/connections.py +0 -151
  919. package/templates/repo/.github/skills/ck-mcp-builder/scripts/evaluation.py +0 -373
  920. package/templates/repo/.github/skills/ck-mcp-builder/scripts/example_evaluation.xml +0 -22
  921. package/templates/repo/.github/skills/ck-mcp-builder/scripts/requirements.txt +0 -2
  922. package/templates/repo/.github/skills/ck-mcp-management/README.md +0 -219
  923. package/templates/repo/.github/skills/ck-mcp-management/SKILL.md +0 -209
  924. package/templates/repo/.github/skills/ck-mcp-management/assets/tools.json +0 -3146
  925. package/templates/repo/.github/skills/ck-mcp-management/references/configuration.md +0 -114
  926. package/templates/repo/.github/skills/ck-mcp-management/references/gemini-cli-integration.md +0 -215
  927. package/templates/repo/.github/skills/ck-mcp-management/references/mcp-protocol.md +0 -116
  928. package/templates/repo/.github/skills/ck-mcp-management/scripts/.env.example +0 -10
  929. package/templates/repo/.github/skills/ck-mcp-management/scripts/cli.ts +0 -195
  930. package/templates/repo/.github/skills/ck-mcp-management/scripts/dist/analyze-tools.js +0 -70
  931. package/templates/repo/.github/skills/ck-mcp-management/scripts/dist/cli.js +0 -160
  932. package/templates/repo/.github/skills/ck-mcp-management/scripts/dist/mcp-client.js +0 -183
  933. package/templates/repo/.github/skills/ck-mcp-management/scripts/mcp-client.ts +0 -230
  934. package/templates/repo/.github/skills/ck-mcp-management/scripts/package.json +0 -20
  935. package/templates/repo/.github/skills/ck-mcp-management/scripts/tsconfig.json +0 -15
  936. package/templates/repo/.github/skills/ck-media-processing/SKILL.md +0 -90
  937. package/templates/repo/.github/skills/ck-media-processing/references/common-workflows.md +0 -132
  938. package/templates/repo/.github/skills/ck-media-processing/references/ffmpeg-encoding.md +0 -358
  939. package/templates/repo/.github/skills/ck-media-processing/references/ffmpeg-filters.md +0 -503
  940. package/templates/repo/.github/skills/ck-media-processing/references/ffmpeg-streaming.md +0 -403
  941. package/templates/repo/.github/skills/ck-media-processing/references/format-compatibility.md +0 -375
  942. package/templates/repo/.github/skills/ck-media-processing/references/imagemagick-batch.md +0 -612
  943. package/templates/repo/.github/skills/ck-media-processing/references/imagemagick-editing.md +0 -623
  944. package/templates/repo/.github/skills/ck-media-processing/references/rmbg-background-removal.md +0 -66
  945. package/templates/repo/.github/skills/ck-media-processing/references/troubleshooting.md +0 -109
  946. package/templates/repo/.github/skills/ck-media-processing/scripts/README.md +0 -111
  947. package/templates/repo/.github/skills/ck-media-processing/scripts/batch-remove-background.sh +0 -124
  948. package/templates/repo/.github/skills/ck-media-processing/scripts/batch_resize.py +0 -342
  949. package/templates/repo/.github/skills/ck-media-processing/scripts/media_convert.py +0 -311
  950. package/templates/repo/.github/skills/ck-media-processing/scripts/remove-background.sh +0 -96
  951. package/templates/repo/.github/skills/ck-media-processing/scripts/remove-bg-node.js +0 -158
  952. package/templates/repo/.github/skills/ck-media-processing/scripts/requirements.txt +0 -24
  953. package/templates/repo/.github/skills/ck-media-processing/scripts/tests/.coverage +0 -0
  954. package/templates/repo/.github/skills/ck-media-processing/scripts/tests/requirements.txt +0 -2
  955. package/templates/repo/.github/skills/ck-media-processing/scripts/tests/test_batch_resize.py +0 -372
  956. package/templates/repo/.github/skills/ck-media-processing/scripts/tests/test_media_convert.py +0 -259
  957. package/templates/repo/.github/skills/ck-media-processing/scripts/tests/test_video_optimize.py +0 -397
  958. package/templates/repo/.github/skills/ck-media-processing/scripts/video_optimize.py +0 -414
  959. package/templates/repo/.github/skills/ck-mobile-development/SKILL.md +0 -210
  960. package/templates/repo/.github/skills/ck-mobile-development/references/mobile-android.md +0 -604
  961. package/templates/repo/.github/skills/ck-mobile-development/references/mobile-best-practices.md +0 -545
  962. package/templates/repo/.github/skills/ck-mobile-development/references/mobile-debugging.md +0 -1089
  963. package/templates/repo/.github/skills/ck-mobile-development/references/mobile-frameworks.md +0 -465
  964. package/templates/repo/.github/skills/ck-mobile-development/references/mobile-ios.md +0 -496
  965. package/templates/repo/.github/skills/ck-mobile-development/references/mobile-mindset.md +0 -544
  966. package/templates/repo/.github/skills/ck-payment-integration/README.md +0 -185
  967. package/templates/repo/.github/skills/ck-payment-integration/SKILL.md +0 -116
  968. package/templates/repo/.github/skills/ck-payment-integration/references/polar/benefits.md +0 -396
  969. package/templates/repo/.github/skills/ck-payment-integration/references/polar/best-practices.md +0 -482
  970. package/templates/repo/.github/skills/ck-payment-integration/references/polar/checkouts.md +0 -266
  971. package/templates/repo/.github/skills/ck-payment-integration/references/polar/overview.md +0 -184
  972. package/templates/repo/.github/skills/ck-payment-integration/references/polar/products.md +0 -244
  973. package/templates/repo/.github/skills/ck-payment-integration/references/polar/sdk.md +0 -436
  974. package/templates/repo/.github/skills/ck-payment-integration/references/polar/subscriptions.md +0 -340
  975. package/templates/repo/.github/skills/ck-payment-integration/references/polar/webhooks.md +0 -405
  976. package/templates/repo/.github/skills/ck-payment-integration/references/sepay/api.md +0 -140
  977. package/templates/repo/.github/skills/ck-payment-integration/references/sepay/best-practices.md +0 -337
  978. package/templates/repo/.github/skills/ck-payment-integration/references/sepay/overview.md +0 -138
  979. package/templates/repo/.github/skills/ck-payment-integration/references/sepay/qr-codes.md +0 -228
  980. package/templates/repo/.github/skills/ck-payment-integration/references/sepay/sdk.md +0 -213
  981. package/templates/repo/.github/skills/ck-payment-integration/references/sepay/webhooks.md +0 -208
  982. package/templates/repo/.github/skills/ck-payment-integration/scripts/.env.example +0 -20
  983. package/templates/repo/.github/skills/ck-payment-integration/scripts/checkout-helper.js +0 -244
  984. package/templates/repo/.github/skills/ck-payment-integration/scripts/package.json +0 -17
  985. package/templates/repo/.github/skills/ck-payment-integration/scripts/polar-webhook-verify.js +0 -202
  986. package/templates/repo/.github/skills/ck-payment-integration/scripts/sepay-webhook-verify.js +0 -193
  987. package/templates/repo/.github/skills/ck-payment-integration/scripts/test-scripts.js +0 -237
  988. package/templates/repo/.github/skills/ck-repomix/SKILL.md +0 -247
  989. package/templates/repo/.github/skills/ck-repomix/references/configuration.md +0 -211
  990. package/templates/repo/.github/skills/ck-repomix/references/usage-patterns.md +0 -232
  991. package/templates/repo/.github/skills/ck-repomix/scripts/.coverage +0 -0
  992. package/templates/repo/.github/skills/ck-repomix/scripts/README.md +0 -179
  993. package/templates/repo/.github/skills/ck-repomix/scripts/repomix_batch.py +0 -455
  994. package/templates/repo/.github/skills/ck-repomix/scripts/repos.example.json +0 -15
  995. package/templates/repo/.github/skills/ck-repomix/scripts/requirements.txt +0 -15
  996. package/templates/repo/.github/skills/ck-repomix/scripts/tests/test_repomix_batch.py +0 -531
  997. package/templates/repo/.github/skills/ck-shopify/README.md +0 -66
  998. package/templates/repo/.github/skills/ck-shopify/SKILL.md +0 -319
  999. package/templates/repo/.github/skills/ck-shopify/references/app-development.md +0 -470
  1000. package/templates/repo/.github/skills/ck-shopify/references/extensions.md +0 -493
  1001. package/templates/repo/.github/skills/ck-shopify/references/themes.md +0 -498
  1002. package/templates/repo/.github/skills/ck-shopify/scripts/.coverage +0 -0
  1003. package/templates/repo/.github/skills/ck-shopify/scripts/requirements.txt +0 -19
  1004. package/templates/repo/.github/skills/ck-shopify/scripts/shopify_init.py +0 -423
  1005. package/templates/repo/.github/skills/ck-shopify/scripts/tests/.coverage +0 -0
  1006. package/templates/repo/.github/skills/ck-shopify/scripts/tests/test_shopify_init.py +0 -385
  1007. package/templates/repo/.github/skills/ck-skill-creator/LICENSE.txt +0 -202
  1008. package/templates/repo/.github/skills/ck-skill-creator/SKILL.md +0 -263
  1009. package/templates/repo/.github/skills/ck-skill-creator/scripts/init_skill.py +0 -303
  1010. package/templates/repo/.github/skills/ck-skill-creator/scripts/package_skill.py +0 -110
  1011. package/templates/repo/.github/skills/ck-skill-creator/scripts/quick_validate.py +0 -65
  1012. package/templates/repo/.github/skills/ck-threejs/SKILL.md +0 -87
  1013. package/templates/repo/.github/skills/ck-threejs/references/01-getting-started.md +0 -177
  1014. package/templates/repo/.github/skills/ck-threejs/references/02-loaders.md +0 -169
  1015. package/templates/repo/.github/skills/ck-threejs/references/03-textures.md +0 -170
  1016. package/templates/repo/.github/skills/ck-threejs/references/04-cameras.md +0 -195
  1017. package/templates/repo/.github/skills/ck-threejs/references/05-lights.md +0 -183
  1018. package/templates/repo/.github/skills/ck-threejs/references/06-animations.md +0 -214
  1019. package/templates/repo/.github/skills/ck-threejs/references/07-math.md +0 -260
  1020. package/templates/repo/.github/skills/ck-threejs/references/08-interaction.md +0 -267
  1021. package/templates/repo/.github/skills/ck-threejs/references/09-postprocessing.md +0 -240
  1022. package/templates/repo/.github/skills/ck-threejs/references/10-controls.md +0 -259
  1023. package/templates/repo/.github/skills/ck-threejs/references/11-materials-advanced.md +0 -270
  1024. package/templates/repo/.github/skills/ck-threejs/references/12-performance.md +0 -269
  1025. package/templates/repo/.github/skills/ck-threejs/references/13-node-materials.md +0 -298
  1026. package/templates/repo/.github/skills/ck-threejs/references/14-physics-vr.md +0 -304
  1027. package/templates/repo/.github/skills/ck-threejs/references/15-specialized-loaders.md +0 -333
  1028. package/templates/repo/.github/skills/ck-threejs/references/16-webgpu.md +0 -302
  1029. package/templates/repo/.github/skills/ck-ui-styling/LICENSE.txt +0 -202
  1030. package/templates/repo/.github/skills/ck-ui-styling/SKILL.md +0 -319
  1031. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/ArsenalSC-OFL.txt +0 -93
  1032. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  1033. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  1034. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/BigShoulders-OFL.txt +0 -93
  1035. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  1036. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Boldonse-OFL.txt +0 -93
  1037. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Boldonse-Regular.ttf +0 -0
  1038. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  1039. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/BricolageGrotesque-OFL.txt +0 -93
  1040. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  1041. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  1042. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  1043. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/CrimsonPro-OFL.txt +0 -93
  1044. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  1045. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/DMMono-OFL.txt +0 -93
  1046. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/DMMono-Regular.ttf +0 -0
  1047. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/EricaOne-OFL.txt +0 -94
  1048. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/EricaOne-Regular.ttf +0 -0
  1049. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/GeistMono-Bold.ttf +0 -0
  1050. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/GeistMono-OFL.txt +0 -93
  1051. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/GeistMono-Regular.ttf +0 -0
  1052. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Gloock-OFL.txt +0 -93
  1053. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Gloock-Regular.ttf +0 -0
  1054. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  1055. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/IBMPlexMono-OFL.txt +0 -93
  1056. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  1057. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  1058. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  1059. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  1060. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  1061. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  1062. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  1063. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  1064. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/InstrumentSans-OFL.txt +0 -93
  1065. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  1066. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  1067. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  1068. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Italiana-OFL.txt +0 -93
  1069. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Italiana-Regular.ttf +0 -0
  1070. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  1071. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/JetBrainsMono-OFL.txt +0 -93
  1072. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  1073. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Jura-Light.ttf +0 -0
  1074. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Jura-Medium.ttf +0 -0
  1075. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Jura-OFL.txt +0 -93
  1076. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/LibreBaskerville-OFL.txt +0 -93
  1077. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  1078. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Lora-Bold.ttf +0 -0
  1079. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  1080. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Lora-Italic.ttf +0 -0
  1081. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Lora-OFL.txt +0 -93
  1082. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Lora-Regular.ttf +0 -0
  1083. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/NationalPark-Bold.ttf +0 -0
  1084. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/NationalPark-OFL.txt +0 -93
  1085. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/NationalPark-Regular.ttf +0 -0
  1086. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -93
  1087. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  1088. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Outfit-Bold.ttf +0 -0
  1089. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Outfit-OFL.txt +0 -93
  1090. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Outfit-Regular.ttf +0 -0
  1091. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  1092. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/PixelifySans-OFL.txt +0 -93
  1093. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/PoiretOne-OFL.txt +0 -93
  1094. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  1095. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  1096. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/RedHatMono-OFL.txt +0 -93
  1097. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  1098. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Silkscreen-OFL.txt +0 -93
  1099. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  1100. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  1101. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/SmoochSans-OFL.txt +0 -93
  1102. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Tektur-Medium.ttf +0 -0
  1103. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Tektur-OFL.txt +0 -93
  1104. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Tektur-Regular.ttf +0 -0
  1105. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/WorkSans-Bold.ttf +0 -0
  1106. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  1107. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/WorkSans-Italic.ttf +0 -0
  1108. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/WorkSans-OFL.txt +0 -93
  1109. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/WorkSans-Regular.ttf +0 -0
  1110. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/YoungSerif-OFL.txt +0 -93
  1111. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  1112. package/templates/repo/.github/skills/ck-ui-styling/references/canvas-design-system.md +0 -320
  1113. package/templates/repo/.github/skills/ck-ui-styling/references/shadcn-accessibility.md +0 -471
  1114. package/templates/repo/.github/skills/ck-ui-styling/references/shadcn-components.md +0 -424
  1115. package/templates/repo/.github/skills/ck-ui-styling/references/shadcn-theming.md +0 -373
  1116. package/templates/repo/.github/skills/ck-ui-styling/references/tailwind-customization.md +0 -483
  1117. package/templates/repo/.github/skills/ck-ui-styling/references/tailwind-responsive.md +0 -382
  1118. package/templates/repo/.github/skills/ck-ui-styling/references/tailwind-utilities.md +0 -455
  1119. package/templates/repo/.github/skills/ck-ui-styling/scripts/.coverage +0 -0
  1120. package/templates/repo/.github/skills/ck-ui-styling/scripts/requirements.txt +0 -17
  1121. package/templates/repo/.github/skills/ck-ui-styling/scripts/shadcn_add.py +0 -292
  1122. package/templates/repo/.github/skills/ck-ui-styling/scripts/tailwind_config_gen.py +0 -456
  1123. package/templates/repo/.github/skills/ck-ui-styling/scripts/tests/coverage-ui.json +0 -1
  1124. package/templates/repo/.github/skills/ck-ui-styling/scripts/tests/requirements.txt +0 -3
  1125. package/templates/repo/.github/skills/ck-ui-styling/scripts/tests/test_shadcn_add.py +0 -266
  1126. package/templates/repo/.github/skills/ck-ui-styling/scripts/tests/test_tailwind_config_gen.py +0 -336
  1127. package/templates/repo/.github/skills/ck-ui-ux-pro-max/SKILL.md +0 -227
  1128. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/charts.csv +0 -26
  1129. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/colors.csv +0 -97
  1130. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/landing.csv +0 -31
  1131. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/products.csv +0 -97
  1132. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/prompts.csv +0 -24
  1133. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/stacks/flutter.csv +0 -53
  1134. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/stacks/html-tailwind.csv +0 -51
  1135. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/stacks/nextjs.csv +0 -53
  1136. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/stacks/react-native.csv +0 -52
  1137. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/stacks/react.csv +0 -54
  1138. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/stacks/svelte.csv +0 -54
  1139. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/stacks/swiftui.csv +0 -51
  1140. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/stacks/vue.csv +0 -50
  1141. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/styles.csv +0 -59
  1142. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/typography.csv +0 -58
  1143. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/ux-guidelines.csv +0 -100
  1144. package/templates/repo/.github/skills/ck-ui-ux-pro-max/scripts/core.py +0 -236
  1145. package/templates/repo/.github/skills/ck-ui-ux-pro-max/scripts/search.py +0 -76
  1146. package/templates/repo/.github/skills/ck-web-frameworks/SKILL.md +0 -322
  1147. package/templates/repo/.github/skills/ck-web-frameworks/references/nextjs-app-router.md +0 -465
  1148. package/templates/repo/.github/skills/ck-web-frameworks/references/nextjs-data-fetching.md +0 -459
  1149. package/templates/repo/.github/skills/ck-web-frameworks/references/nextjs-optimization.md +0 -511
  1150. package/templates/repo/.github/skills/ck-web-frameworks/references/nextjs-server-components.md +0 -495
  1151. package/templates/repo/.github/skills/ck-web-frameworks/references/remix-icon-integration.md +0 -603
  1152. package/templates/repo/.github/skills/ck-web-frameworks/references/turborepo-caching.md +0 -551
  1153. package/templates/repo/.github/skills/ck-web-frameworks/references/turborepo-pipelines.md +0 -517
  1154. package/templates/repo/.github/skills/ck-web-frameworks/references/turborepo-setup.md +0 -542
  1155. package/templates/repo/.github/skills/ck-web-frameworks/scripts/.coverage +0 -0
  1156. package/templates/repo/.github/skills/ck-web-frameworks/scripts/__init__.py +0 -0
  1157. package/templates/repo/.github/skills/ck-web-frameworks/scripts/nextjs_init.py +0 -547
  1158. package/templates/repo/.github/skills/ck-web-frameworks/scripts/requirements.txt +0 -16
  1159. package/templates/repo/.github/skills/ck-web-frameworks/scripts/tests/coverage-web.json +0 -1
  1160. package/templates/repo/.github/skills/ck-web-frameworks/scripts/tests/requirements.txt +0 -3
  1161. package/templates/repo/.github/skills/ck-web-frameworks/scripts/tests/test_nextjs_init.py +0 -319
  1162. package/templates/repo/.github/skills/ck-web-frameworks/scripts/tests/test_turborepo_migrate.py +0 -374
  1163. package/templates/repo/.github/skills/ck-web-frameworks/scripts/turborepo_migrate.py +0 -394
@@ -1,3146 +0,0 @@
1
- [
2
- {
3
- "serverName": "memory",
4
- "name": "create_entities",
5
- "description": "Create multiple new entities in the knowledge graph",
6
- "inputSchema": {
7
- "type": "object",
8
- "properties": {
9
- "entities": {
10
- "type": "array",
11
- "items": {
12
- "type": "object",
13
- "properties": {
14
- "name": {
15
- "type": "string",
16
- "description": "The name of the entity"
17
- },
18
- "entityType": {
19
- "type": "string",
20
- "description": "The type of the entity"
21
- },
22
- "observations": {
23
- "type": "array",
24
- "items": {
25
- "type": "string"
26
- },
27
- "description": "An array of observation contents associated with the entity"
28
- }
29
- },
30
- "required": [
31
- "name",
32
- "entityType",
33
- "observations"
34
- ],
35
- "additionalProperties": false
36
- }
37
- }
38
- },
39
- "required": [
40
- "entities"
41
- ],
42
- "additionalProperties": false
43
- }
44
- },
45
- {
46
- "serverName": "memory",
47
- "name": "create_relations",
48
- "description": "Create multiple new relations between entities in the knowledge graph. Relations should be in active voice",
49
- "inputSchema": {
50
- "type": "object",
51
- "properties": {
52
- "relations": {
53
- "type": "array",
54
- "items": {
55
- "type": "object",
56
- "properties": {
57
- "from": {
58
- "type": "string",
59
- "description": "The name of the entity where the relation starts"
60
- },
61
- "to": {
62
- "type": "string",
63
- "description": "The name of the entity where the relation ends"
64
- },
65
- "relationType": {
66
- "type": "string",
67
- "description": "The type of the relation"
68
- }
69
- },
70
- "required": [
71
- "from",
72
- "to",
73
- "relationType"
74
- ],
75
- "additionalProperties": false
76
- }
77
- }
78
- },
79
- "required": [
80
- "relations"
81
- ],
82
- "additionalProperties": false
83
- }
84
- },
85
- {
86
- "serverName": "memory",
87
- "name": "add_observations",
88
- "description": "Add new observations to existing entities in the knowledge graph",
89
- "inputSchema": {
90
- "type": "object",
91
- "properties": {
92
- "observations": {
93
- "type": "array",
94
- "items": {
95
- "type": "object",
96
- "properties": {
97
- "entityName": {
98
- "type": "string",
99
- "description": "The name of the entity to add the observations to"
100
- },
101
- "contents": {
102
- "type": "array",
103
- "items": {
104
- "type": "string"
105
- },
106
- "description": "An array of observation contents to add"
107
- }
108
- },
109
- "required": [
110
- "entityName",
111
- "contents"
112
- ],
113
- "additionalProperties": false
114
- }
115
- }
116
- },
117
- "required": [
118
- "observations"
119
- ],
120
- "additionalProperties": false
121
- }
122
- },
123
- {
124
- "serverName": "memory",
125
- "name": "delete_entities",
126
- "description": "Delete multiple entities and their associated relations from the knowledge graph",
127
- "inputSchema": {
128
- "type": "object",
129
- "properties": {
130
- "entityNames": {
131
- "type": "array",
132
- "items": {
133
- "type": "string"
134
- },
135
- "description": "An array of entity names to delete"
136
- }
137
- },
138
- "required": [
139
- "entityNames"
140
- ],
141
- "additionalProperties": false
142
- }
143
- },
144
- {
145
- "serverName": "memory",
146
- "name": "delete_observations",
147
- "description": "Delete specific observations from entities in the knowledge graph",
148
- "inputSchema": {
149
- "type": "object",
150
- "properties": {
151
- "deletions": {
152
- "type": "array",
153
- "items": {
154
- "type": "object",
155
- "properties": {
156
- "entityName": {
157
- "type": "string",
158
- "description": "The name of the entity containing the observations"
159
- },
160
- "observations": {
161
- "type": "array",
162
- "items": {
163
- "type": "string"
164
- },
165
- "description": "An array of observations to delete"
166
- }
167
- },
168
- "required": [
169
- "entityName",
170
- "observations"
171
- ],
172
- "additionalProperties": false
173
- }
174
- }
175
- },
176
- "required": [
177
- "deletions"
178
- ],
179
- "additionalProperties": false
180
- }
181
- },
182
- {
183
- "serverName": "memory",
184
- "name": "delete_relations",
185
- "description": "Delete multiple relations from the knowledge graph",
186
- "inputSchema": {
187
- "type": "object",
188
- "properties": {
189
- "relations": {
190
- "type": "array",
191
- "items": {
192
- "type": "object",
193
- "properties": {
194
- "from": {
195
- "type": "string",
196
- "description": "The name of the entity where the relation starts"
197
- },
198
- "to": {
199
- "type": "string",
200
- "description": "The name of the entity where the relation ends"
201
- },
202
- "relationType": {
203
- "type": "string",
204
- "description": "The type of the relation"
205
- }
206
- },
207
- "required": [
208
- "from",
209
- "to",
210
- "relationType"
211
- ],
212
- "additionalProperties": false
213
- },
214
- "description": "An array of relations to delete"
215
- }
216
- },
217
- "required": [
218
- "relations"
219
- ],
220
- "additionalProperties": false
221
- }
222
- },
223
- {
224
- "serverName": "memory",
225
- "name": "read_graph",
226
- "description": "Read the entire knowledge graph",
227
- "inputSchema": {
228
- "type": "object",
229
- "properties": {},
230
- "additionalProperties": false
231
- }
232
- },
233
- {
234
- "serverName": "memory",
235
- "name": "search_nodes",
236
- "description": "Search for nodes in the knowledge graph based on a query",
237
- "inputSchema": {
238
- "type": "object",
239
- "properties": {
240
- "query": {
241
- "type": "string",
242
- "description": "The search query to match against entity names, types, and observation content"
243
- }
244
- },
245
- "required": [
246
- "query"
247
- ],
248
- "additionalProperties": false
249
- }
250
- },
251
- {
252
- "serverName": "memory",
253
- "name": "open_nodes",
254
- "description": "Open specific nodes in the knowledge graph by their names",
255
- "inputSchema": {
256
- "type": "object",
257
- "properties": {
258
- "names": {
259
- "type": "array",
260
- "items": {
261
- "type": "string"
262
- },
263
- "description": "An array of entity names to retrieve"
264
- }
265
- },
266
- "required": [
267
- "names"
268
- ],
269
- "additionalProperties": false
270
- }
271
- },
272
- {
273
- "serverName": "sequential-thinking",
274
- "name": "sequentialthinking",
275
- "description": "A detailed tool for dynamic and reflective problem-solving through thoughts.\nThis tool helps analyze problems through a flexible thinking process that can adapt and evolve.\nEach thought can build on, question, or revise previous insights as understanding deepens.\n\nWhen to use this tool:\n- Breaking down complex problems into steps\n- Planning and design with room for revision\n- Analysis that might need course correction\n- Problems where the full scope might not be clear initially\n- Problems that require a multi-step solution\n- Tasks that need to maintain context over multiple steps\n- Situations where irrelevant information needs to be filtered out\n\nKey features:\n- You can adjust total_thoughts up or down as you progress\n- You can question or revise previous thoughts\n- You can add more thoughts even after reaching what seemed like the end\n- You can express uncertainty and explore alternative approaches\n- Not every thought needs to build linearly - you can branch or backtrack\n- Generates a solution hypothesis\n- Verifies the hypothesis based on the Chain of Thought steps\n- Repeats the process until satisfied\n- Provides a correct answer\n\nParameters explained:\n- thought: Your current thinking step, which can include:\n* Regular analytical steps\n* Revisions of previous thoughts\n* Questions about previous decisions\n* Realizations about needing more analysis\n* Changes in approach\n* Hypothesis generation\n* Hypothesis verification\n- next_thought_needed: True if you need more thinking, even if at what seemed like the end\n- thought_number: Current number in sequence (can go beyond initial total if needed)\n- total_thoughts: Current estimate of thoughts needed (can be adjusted up/down)\n- is_revision: A boolean indicating if this thought revises previous thinking\n- revises_thought: If is_revision is true, which thought number is being reconsidered\n- branch_from_thought: If branching, which thought number is the branching point\n- branch_id: Identifier for the current branch (if any)\n- needs_more_thoughts: If reaching end but realizing more thoughts needed\n\nYou should:\n1. Start with an initial estimate of needed thoughts, but be ready to adjust\n2. Feel free to question or revise previous thoughts\n3. Don't hesitate to add more thoughts if needed, even at the \"end\"\n4. Express uncertainty when present\n5. Mark thoughts that revise previous thinking or branch into new paths\n6. Ignore information that is irrelevant to the current step\n7. Generate a solution hypothesis when appropriate\n8. Verify the hypothesis based on the Chain of Thought steps\n9. Repeat the process until satisfied with the solution\n10. Provide a single, ideally correct answer as the final output\n11. Only set next_thought_needed to false when truly done and a satisfactory answer is reached",
276
- "inputSchema": {
277
- "type": "object",
278
- "properties": {
279
- "thought": {
280
- "type": "string",
281
- "description": "Your current thinking step"
282
- },
283
- "nextThoughtNeeded": {
284
- "type": "boolean",
285
- "description": "Whether another thought step is needed"
286
- },
287
- "thoughtNumber": {
288
- "type": "integer",
289
- "description": "Current thought number",
290
- "minimum": 1
291
- },
292
- "totalThoughts": {
293
- "type": "integer",
294
- "description": "Estimated total thoughts needed",
295
- "minimum": 1
296
- },
297
- "isRevision": {
298
- "type": "boolean",
299
- "description": "Whether this revises previous thinking"
300
- },
301
- "revisesThought": {
302
- "type": "integer",
303
- "description": "Which thought is being reconsidered",
304
- "minimum": 1
305
- },
306
- "branchFromThought": {
307
- "type": "integer",
308
- "description": "Branching point thought number",
309
- "minimum": 1
310
- },
311
- "branchId": {
312
- "type": "string",
313
- "description": "Branch identifier"
314
- },
315
- "needsMoreThoughts": {
316
- "type": "boolean",
317
- "description": "If more thoughts are needed"
318
- }
319
- },
320
- "required": [
321
- "thought",
322
- "nextThoughtNeeded",
323
- "thoughtNumber",
324
- "totalThoughts"
325
- ]
326
- }
327
- },
328
- {
329
- "serverName": "context7",
330
- "name": "resolve-library-id",
331
- "description": "Resolves a package/product name to a Context7-compatible library ID and returns a list of matching libraries.\n\nYou MUST call this function before 'get-library-docs' to obtain a valid Context7-compatible library ID UNLESS the user explicitly provides a library ID in the format '/org/project' or '/org/project/version' in their query.\n\nSelection Process:\n1. Analyze the query to understand what library/package the user is looking for\n2. Return the most relevant match based on:\n- Name similarity to the query (exact matches prioritized)\n- Description relevance to the query's intent\n- Documentation coverage (prioritize libraries with higher Code Snippet counts)\n- Trust score (consider libraries with scores of 7-10 more authoritative)\n\nResponse Format:\n- Return the selected library ID in a clearly marked section\n- Provide a brief explanation for why this library was chosen\n- If multiple good matches exist, acknowledge this but proceed with the most relevant one\n- If no good matches exist, clearly state this and suggest query refinements\n\nFor ambiguous queries, request clarification before proceeding with a best-guess match.",
332
- "inputSchema": {
333
- "type": "object",
334
- "properties": {
335
- "libraryName": {
336
- "type": "string",
337
- "description": "Library name to search for and retrieve a Context7-compatible library ID."
338
- }
339
- },
340
- "required": [
341
- "libraryName"
342
- ],
343
- "additionalProperties": false,
344
- "$schema": "http://json-schema.org/draft-07/schema#"
345
- }
346
- },
347
- {
348
- "serverName": "context7",
349
- "name": "get-library-docs",
350
- "description": "Fetches up-to-date documentation for a library. You must call 'resolve-library-id' first to obtain the exact Context7-compatible library ID required to use this tool, UNLESS the user explicitly provides a library ID in the format '/org/project' or '/org/project/version' in their query.",
351
- "inputSchema": {
352
- "type": "object",
353
- "properties": {
354
- "context7CompatibleLibraryID": {
355
- "type": "string",
356
- "description": "Exact Context7-compatible library ID (e.g., '/mongodb/docs', '/vercel/next.js', '/supabase/supabase', '/vercel/next.js/v14.3.0-canary.87') retrieved from 'resolve-library-id' or directly from user query in the format '/org/project' or '/org/project/version'."
357
- },
358
- "topic": {
359
- "type": "string",
360
- "description": "Topic to focus documentation on (e.g., 'hooks', 'routing')."
361
- },
362
- "tokens": {
363
- "type": "number",
364
- "description": "Maximum number of tokens of documentation to retrieve (default: 5000). Higher values provide more context but consume more tokens."
365
- }
366
- },
367
- "required": [
368
- "context7CompatibleLibraryID"
369
- ],
370
- "additionalProperties": false,
371
- "$schema": "http://json-schema.org/draft-07/schema#"
372
- }
373
- },
374
- {
375
- "serverName": "human-mcp",
376
- "name": "eyes_analyze",
377
- "description": "Understand images, videos, and GIFs with AI vision",
378
- "inputSchema": {
379
- "type": "object",
380
- "properties": {
381
- "source": {
382
- "type": "string",
383
- "description": "File path, URL, or image to analyze"
384
- },
385
- "focus": {
386
- "type": "string",
387
- "description": "What to focus on in the analysis"
388
- },
389
- "detail": {
390
- "type": "string",
391
- "enum": [
392
- "quick",
393
- "detailed"
394
- ],
395
- "default": "detailed",
396
- "description": "Analysis depth"
397
- }
398
- },
399
- "required": [
400
- "source"
401
- ],
402
- "additionalProperties": false,
403
- "$schema": "http://json-schema.org/draft-07/schema#"
404
- }
405
- },
406
- {
407
- "serverName": "human-mcp",
408
- "name": "eyes_compare",
409
- "description": "Find differences between images",
410
- "inputSchema": {
411
- "type": "object",
412
- "properties": {
413
- "image1": {
414
- "type": "string",
415
- "description": "First image path or URL"
416
- },
417
- "image2": {
418
- "type": "string",
419
- "description": "Second image path or URL"
420
- },
421
- "focus": {
422
- "type": "string",
423
- "enum": [
424
- "differences",
425
- "similarities",
426
- "layout",
427
- "content"
428
- ],
429
- "default": "differences",
430
- "description": "What to compare"
431
- }
432
- },
433
- "required": [
434
- "image1",
435
- "image2"
436
- ],
437
- "additionalProperties": false,
438
- "$schema": "http://json-schema.org/draft-07/schema#"
439
- }
440
- },
441
- {
442
- "serverName": "human-mcp",
443
- "name": "eyes_read_document",
444
- "description": "Extract text and data from documents",
445
- "inputSchema": {
446
- "type": "object",
447
- "properties": {
448
- "document": {
449
- "type": "string",
450
- "description": "Document path or URL"
451
- },
452
- "pages": {
453
- "type": "string",
454
- "default": "all",
455
- "description": "Page range (e.g., '1-5' or 'all')"
456
- },
457
- "extract": {
458
- "type": "string",
459
- "enum": [
460
- "text",
461
- "tables",
462
- "both"
463
- ],
464
- "default": "both",
465
- "description": "What to extract"
466
- }
467
- },
468
- "required": [
469
- "document"
470
- ],
471
- "additionalProperties": false,
472
- "$schema": "http://json-schema.org/draft-07/schema#"
473
- }
474
- },
475
- {
476
- "serverName": "human-mcp",
477
- "name": "eyes_summarize_document",
478
- "description": "Create summaries from documents",
479
- "inputSchema": {
480
- "type": "object",
481
- "properties": {
482
- "document": {
483
- "type": "string",
484
- "description": "Document path or URL"
485
- },
486
- "length": {
487
- "type": "string",
488
- "enum": [
489
- "brief",
490
- "medium",
491
- "detailed"
492
- ],
493
- "default": "medium",
494
- "description": "Summary length"
495
- },
496
- "focus": {
497
- "type": "string",
498
- "description": "Specific topics to focus on"
499
- }
500
- },
501
- "required": [
502
- "document"
503
- ],
504
- "additionalProperties": false,
505
- "$schema": "http://json-schema.org/draft-07/schema#"
506
- }
507
- },
508
- {
509
- "serverName": "human-mcp",
510
- "name": "gemini_gen_image",
511
- "description": "Generate images from text descriptions using Gemini Imagen API",
512
- "inputSchema": {
513
- "type": "object",
514
- "properties": {
515
- "prompt": {
516
- "type": "string",
517
- "description": "Text description of the image to generate"
518
- },
519
- "model": {
520
- "type": "string",
521
- "enum": [
522
- "gemini-2.5-flash-image-preview"
523
- ],
524
- "default": "gemini-2.5-flash-image-preview",
525
- "description": "Image generation model"
526
- },
527
- "output_format": {
528
- "type": "string",
529
- "enum": [
530
- "base64",
531
- "url"
532
- ],
533
- "default": "base64",
534
- "description": "Output format for the generated image"
535
- },
536
- "negative_prompt": {
537
- "type": "string",
538
- "description": "Text describing what should NOT be in the image"
539
- },
540
- "style": {
541
- "type": "string",
542
- "enum": [
543
- "photorealistic",
544
- "artistic",
545
- "cartoon",
546
- "sketch",
547
- "digital_art"
548
- ],
549
- "description": "Style of the generated image"
550
- },
551
- "aspect_ratio": {
552
- "type": "string",
553
- "enum": [
554
- "1:1",
555
- "16:9",
556
- "9:16",
557
- "4:3",
558
- "3:4"
559
- ],
560
- "default": "1:1",
561
- "description": "Aspect ratio of the generated image"
562
- },
563
- "seed": {
564
- "type": "number",
565
- "description": "Random seed for reproducible generation"
566
- }
567
- },
568
- "required": [
569
- "prompt"
570
- ],
571
- "additionalProperties": false,
572
- "$schema": "http://json-schema.org/draft-07/schema#"
573
- }
574
- },
575
- {
576
- "serverName": "human-mcp",
577
- "name": "gemini_gen_video",
578
- "description": "Generate videos from text descriptions using Gemini Veo 3.0 API",
579
- "inputSchema": {
580
- "type": "object",
581
- "properties": {
582
- "prompt": {
583
- "type": "string",
584
- "description": "Text description of the video to generate"
585
- },
586
- "model": {
587
- "type": "string",
588
- "enum": [
589
- "veo-3.0-generate-001"
590
- ],
591
- "default": "veo-3.0-generate-001",
592
- "description": "Video generation model"
593
- },
594
- "duration": {
595
- "type": "string",
596
- "enum": [
597
- "4s",
598
- "8s",
599
- "12s"
600
- ],
601
- "default": "4s",
602
- "description": "Duration of the generated video"
603
- },
604
- "output_format": {
605
- "type": "string",
606
- "enum": [
607
- "mp4",
608
- "webm"
609
- ],
610
- "default": "mp4",
611
- "description": "Output format for the generated video"
612
- },
613
- "aspect_ratio": {
614
- "type": "string",
615
- "enum": [
616
- "1:1",
617
- "16:9",
618
- "9:16",
619
- "4:3",
620
- "3:4"
621
- ],
622
- "default": "16:9",
623
- "description": "Aspect ratio of the generated video"
624
- },
625
- "fps": {
626
- "type": "integer",
627
- "minimum": 1,
628
- "maximum": 60,
629
- "default": 24,
630
- "description": "Frames per second"
631
- },
632
- "image_input": {
633
- "type": "string",
634
- "description": "Base64 encoded image or image URL to use as starting frame"
635
- },
636
- "style": {
637
- "type": "string",
638
- "enum": [
639
- "realistic",
640
- "cinematic",
641
- "artistic",
642
- "cartoon",
643
- "animation"
644
- ],
645
- "description": "Style of the generated video"
646
- },
647
- "camera_movement": {
648
- "type": "string",
649
- "enum": [
650
- "static",
651
- "pan_left",
652
- "pan_right",
653
- "zoom_in",
654
- "zoom_out",
655
- "dolly_forward",
656
- "dolly_backward"
657
- ],
658
- "description": "Camera movement type"
659
- },
660
- "seed": {
661
- "type": "number",
662
- "description": "Random seed for reproducible generation"
663
- }
664
- },
665
- "required": [
666
- "prompt"
667
- ],
668
- "additionalProperties": false,
669
- "$schema": "http://json-schema.org/draft-07/schema#"
670
- }
671
- },
672
- {
673
- "serverName": "human-mcp",
674
- "name": "gemini_image_to_video",
675
- "description": "Generate videos from images and text descriptions using Gemini Imagen + Veo 3.0 APIs",
676
- "inputSchema": {
677
- "type": "object",
678
- "properties": {
679
- "prompt": {
680
- "type": "string",
681
- "description": "Text description of the video animation"
682
- },
683
- "image_input": {
684
- "type": "string",
685
- "description": "Base64 encoded image or image URL to use as starting frame"
686
- },
687
- "model": {
688
- "type": "string",
689
- "enum": [
690
- "veo-3.0-generate-001"
691
- ],
692
- "default": "veo-3.0-generate-001",
693
- "description": "Video generation model"
694
- },
695
- "duration": {
696
- "type": "string",
697
- "enum": [
698
- "4s",
699
- "8s",
700
- "12s"
701
- ],
702
- "default": "4s",
703
- "description": "Duration of the generated video"
704
- },
705
- "output_format": {
706
- "type": "string",
707
- "enum": [
708
- "mp4",
709
- "webm"
710
- ],
711
- "default": "mp4",
712
- "description": "Output format for the generated video"
713
- },
714
- "aspect_ratio": {
715
- "type": "string",
716
- "enum": [
717
- "1:1",
718
- "16:9",
719
- "9:16",
720
- "4:3",
721
- "3:4"
722
- ],
723
- "default": "16:9",
724
- "description": "Aspect ratio of the generated video"
725
- },
726
- "fps": {
727
- "type": "integer",
728
- "minimum": 1,
729
- "maximum": 60,
730
- "default": 24,
731
- "description": "Frames per second"
732
- },
733
- "style": {
734
- "type": "string",
735
- "enum": [
736
- "realistic",
737
- "cinematic",
738
- "artistic",
739
- "cartoon",
740
- "animation"
741
- ],
742
- "description": "Style of the generated video"
743
- },
744
- "camera_movement": {
745
- "type": "string",
746
- "enum": [
747
- "static",
748
- "pan_left",
749
- "pan_right",
750
- "zoom_in",
751
- "zoom_out",
752
- "dolly_forward",
753
- "dolly_backward"
754
- ],
755
- "description": "Camera movement type"
756
- },
757
- "seed": {
758
- "type": "number",
759
- "description": "Random seed for reproducible generation"
760
- }
761
- },
762
- "required": [
763
- "prompt",
764
- "image_input"
765
- ],
766
- "additionalProperties": false,
767
- "$schema": "http://json-schema.org/draft-07/schema#"
768
- }
769
- },
770
- {
771
- "serverName": "human-mcp",
772
- "name": "gemini_edit_image",
773
- "description": "Edit images using AI with text-based instructions for inpainting, outpainting, style transfer, object manipulation, and composition. No masks required - just describe what you want to change.",
774
- "inputSchema": {
775
- "type": "object",
776
- "properties": {
777
- "operation": {
778
- "type": "string",
779
- "enum": [
780
- "inpaint",
781
- "outpaint",
782
- "style_transfer",
783
- "object_manipulation",
784
- "multi_image_compose"
785
- ],
786
- "description": "Type of image editing operation to perform"
787
- },
788
- "input_image": {
789
- "type": "string",
790
- "description": "Base64 encoded image or file path to the input image"
791
- },
792
- "prompt": {
793
- "type": "string",
794
- "minLength": 1,
795
- "description": "Text description of the desired edit"
796
- },
797
- "mask_image": {
798
- "type": "string",
799
- "description": "Base64 encoded mask image for inpainting (white = edit area, black = keep)"
800
- },
801
- "mask_prompt": {
802
- "type": "string",
803
- "description": "Text description of the area to mask for editing"
804
- },
805
- "expand_direction": {
806
- "type": "string",
807
- "enum": [
808
- "all",
809
- "left",
810
- "right",
811
- "top",
812
- "bottom",
813
- "horizontal",
814
- "vertical"
815
- ],
816
- "description": "Direction to expand the image"
817
- },
818
- "expansion_ratio": {
819
- "type": "number",
820
- "minimum": 0.1,
821
- "maximum": 3,
822
- "default": 1.5,
823
- "description": "How much to expand the image (1.0 = no expansion)"
824
- },
825
- "style_image": {
826
- "type": "string",
827
- "description": "Base64 encoded reference image for style transfer"
828
- },
829
- "style_strength": {
830
- "type": "number",
831
- "minimum": 0.1,
832
- "maximum": 1,
833
- "default": 0.7,
834
- "description": "Strength of style application"
835
- },
836
- "target_object": {
837
- "type": "string",
838
- "description": "Description of the object to manipulate"
839
- },
840
- "manipulation_type": {
841
- "type": "string",
842
- "enum": [
843
- "move",
844
- "resize",
845
- "remove",
846
- "replace",
847
- "duplicate"
848
- ],
849
- "description": "Type of object manipulation"
850
- },
851
- "target_position": {
852
- "type": "string",
853
- "description": "New position for the object (e.g., 'center', 'top-left')"
854
- },
855
- "secondary_images": {
856
- "type": "array",
857
- "items": {
858
- "type": "string"
859
- },
860
- "description": "Array of base64 encoded images for composition"
861
- },
862
- "composition_layout": {
863
- "type": "string",
864
- "enum": [
865
- "blend",
866
- "collage",
867
- "overlay",
868
- "side_by_side"
869
- ],
870
- "description": "How to combine multiple images"
871
- },
872
- "blend_mode": {
873
- "type": "string",
874
- "enum": [
875
- "normal",
876
- "multiply",
877
- "screen",
878
- "overlay",
879
- "soft_light"
880
- ],
881
- "description": "Blending mode for image composition"
882
- },
883
- "negative_prompt": {
884
- "type": "string",
885
- "description": "What to avoid in the edited image"
886
- },
887
- "strength": {
888
- "type": "number",
889
- "minimum": 0.1,
890
- "maximum": 1,
891
- "default": 0.8,
892
- "description": "Strength of the editing effect"
893
- },
894
- "guidance_scale": {
895
- "type": "number",
896
- "minimum": 1,
897
- "maximum": 20,
898
- "default": 7.5,
899
- "description": "How closely to follow the prompt"
900
- },
901
- "seed": {
902
- "type": "integer",
903
- "minimum": 0,
904
- "description": "Random seed for reproducible results"
905
- },
906
- "output_format": {
907
- "type": "string",
908
- "enum": [
909
- "base64",
910
- "url"
911
- ],
912
- "default": "base64",
913
- "description": "Output format for the edited image"
914
- },
915
- "quality": {
916
- "type": "string",
917
- "enum": [
918
- "draft",
919
- "standard",
920
- "high"
921
- ],
922
- "default": "standard",
923
- "description": "Quality level of the editing"
924
- }
925
- },
926
- "required": [
927
- "operation",
928
- "input_image",
929
- "prompt"
930
- ],
931
- "additionalProperties": false,
932
- "$schema": "http://json-schema.org/draft-07/schema#"
933
- }
934
- },
935
- {
936
- "serverName": "human-mcp",
937
- "name": "gemini_inpaint_image",
938
- "description": "Add or modify specific areas of an image using natural language descriptions. No mask required - just describe what to change and where.",
939
- "inputSchema": {
940
- "type": "object",
941
- "properties": {
942
- "input_image": {
943
- "type": "string",
944
- "description": "Base64 encoded image or file path to the input image"
945
- },
946
- "prompt": {
947
- "type": "string",
948
- "minLength": 1,
949
- "description": "Text description of what to add or change in the image"
950
- },
951
- "mask_image": {
952
- "type": "string",
953
- "description": "(Optional) Base64 encoded mask image - not used by Gemini but kept for compatibility"
954
- },
955
- "mask_prompt": {
956
- "type": "string",
957
- "description": "Text description of WHERE in the image to make changes (e.g., 'the empty space beside the cat', 'the top-left corner')"
958
- },
959
- "negative_prompt": {
960
- "type": "string",
961
- "description": "What to avoid in the edited area"
962
- },
963
- "strength": {
964
- "type": "number",
965
- "minimum": 0.1,
966
- "maximum": 1,
967
- "default": 0.8,
968
- "description": "Strength of the editing effect"
969
- },
970
- "guidance_scale": {
971
- "type": "number",
972
- "minimum": 1,
973
- "maximum": 20,
974
- "default": 7.5,
975
- "description": "How closely to follow the prompt"
976
- },
977
- "seed": {
978
- "type": "integer",
979
- "minimum": 0,
980
- "description": "Random seed for reproducible results"
981
- },
982
- "output_format": {
983
- "type": "string",
984
- "enum": [
985
- "base64",
986
- "url"
987
- ],
988
- "default": "base64",
989
- "description": "Output format"
990
- },
991
- "quality": {
992
- "type": "string",
993
- "enum": [
994
- "draft",
995
- "standard",
996
- "high"
997
- ],
998
- "default": "standard",
999
- "description": "Quality level"
1000
- }
1001
- },
1002
- "required": [
1003
- "input_image",
1004
- "prompt"
1005
- ],
1006
- "additionalProperties": false,
1007
- "$schema": "http://json-schema.org/draft-07/schema#"
1008
- }
1009
- },
1010
- {
1011
- "serverName": "human-mcp",
1012
- "name": "gemini_outpaint_image",
1013
- "description": "Expand an image beyond its original borders in specified directions",
1014
- "inputSchema": {
1015
- "type": "object",
1016
- "properties": {
1017
- "input_image": {
1018
- "type": "string",
1019
- "description": "Base64 encoded image or file path to the input image"
1020
- },
1021
- "prompt": {
1022
- "type": "string",
1023
- "minLength": 1,
1024
- "description": "Text description of what to add in the expanded areas"
1025
- },
1026
- "expand_direction": {
1027
- "type": "string",
1028
- "enum": [
1029
- "all",
1030
- "left",
1031
- "right",
1032
- "top",
1033
- "bottom",
1034
- "horizontal",
1035
- "vertical"
1036
- ],
1037
- "default": "all",
1038
- "description": "Direction to expand the image"
1039
- },
1040
- "expansion_ratio": {
1041
- "type": "number",
1042
- "minimum": 0.1,
1043
- "maximum": 3,
1044
- "default": 1.5,
1045
- "description": "How much to expand the image (1.0 = no expansion)"
1046
- },
1047
- "negative_prompt": {
1048
- "type": "string",
1049
- "description": "What to avoid in the expanded areas"
1050
- },
1051
- "strength": {
1052
- "type": "number",
1053
- "minimum": 0.1,
1054
- "maximum": 1,
1055
- "default": 0.8,
1056
- "description": "Strength of the editing effect"
1057
- },
1058
- "guidance_scale": {
1059
- "type": "number",
1060
- "minimum": 1,
1061
- "maximum": 20,
1062
- "default": 7.5,
1063
- "description": "How closely to follow the prompt"
1064
- },
1065
- "seed": {
1066
- "type": "integer",
1067
- "minimum": 0,
1068
- "description": "Random seed for reproducible results"
1069
- },
1070
- "output_format": {
1071
- "type": "string",
1072
- "enum": [
1073
- "base64",
1074
- "url"
1075
- ],
1076
- "default": "base64",
1077
- "description": "Output format"
1078
- },
1079
- "quality": {
1080
- "type": "string",
1081
- "enum": [
1082
- "draft",
1083
- "standard",
1084
- "high"
1085
- ],
1086
- "default": "standard",
1087
- "description": "Quality level"
1088
- }
1089
- },
1090
- "required": [
1091
- "input_image",
1092
- "prompt"
1093
- ],
1094
- "additionalProperties": false,
1095
- "$schema": "http://json-schema.org/draft-07/schema#"
1096
- }
1097
- },
1098
- {
1099
- "serverName": "human-mcp",
1100
- "name": "gemini_style_transfer_image",
1101
- "description": "Transfer the style from one image to another using AI",
1102
- "inputSchema": {
1103
- "type": "object",
1104
- "properties": {
1105
- "input_image": {
1106
- "type": "string",
1107
- "description": "Base64 encoded image or file path to the input image"
1108
- },
1109
- "prompt": {
1110
- "type": "string",
1111
- "minLength": 1,
1112
- "description": "Text description of the desired style"
1113
- },
1114
- "style_image": {
1115
- "type": "string",
1116
- "description": "Base64 encoded reference image for style transfer"
1117
- },
1118
- "style_strength": {
1119
- "type": "number",
1120
- "minimum": 0.1,
1121
- "maximum": 1,
1122
- "default": 0.7,
1123
- "description": "Strength of style application"
1124
- },
1125
- "negative_prompt": {
1126
- "type": "string",
1127
- "description": "What style elements to avoid"
1128
- },
1129
- "guidance_scale": {
1130
- "type": "number",
1131
- "minimum": 1,
1132
- "maximum": 20,
1133
- "default": 7.5,
1134
- "description": "How closely to follow the prompt"
1135
- },
1136
- "seed": {
1137
- "type": "integer",
1138
- "minimum": 0,
1139
- "description": "Random seed for reproducible results"
1140
- },
1141
- "output_format": {
1142
- "type": "string",
1143
- "enum": [
1144
- "base64",
1145
- "url"
1146
- ],
1147
- "default": "base64",
1148
- "description": "Output format"
1149
- },
1150
- "quality": {
1151
- "type": "string",
1152
- "enum": [
1153
- "draft",
1154
- "standard",
1155
- "high"
1156
- ],
1157
- "default": "standard",
1158
- "description": "Quality level"
1159
- }
1160
- },
1161
- "required": [
1162
- "input_image",
1163
- "prompt"
1164
- ],
1165
- "additionalProperties": false,
1166
- "$schema": "http://json-schema.org/draft-07/schema#"
1167
- }
1168
- },
1169
- {
1170
- "serverName": "human-mcp",
1171
- "name": "gemini_compose_images",
1172
- "description": "Combine multiple images into a single composition using AI",
1173
- "inputSchema": {
1174
- "type": "object",
1175
- "properties": {
1176
- "input_image": {
1177
- "type": "string",
1178
- "description": "Base64 encoded primary image"
1179
- },
1180
- "secondary_images": {
1181
- "type": "array",
1182
- "items": {
1183
- "type": "string"
1184
- },
1185
- "description": "Array of base64 encoded secondary images to compose"
1186
- },
1187
- "prompt": {
1188
- "type": "string",
1189
- "minLength": 1,
1190
- "description": "Text description of how to compose the images"
1191
- },
1192
- "composition_layout": {
1193
- "type": "string",
1194
- "enum": [
1195
- "blend",
1196
- "collage",
1197
- "overlay",
1198
- "side_by_side"
1199
- ],
1200
- "default": "blend",
1201
- "description": "How to combine the images"
1202
- },
1203
- "blend_mode": {
1204
- "type": "string",
1205
- "enum": [
1206
- "normal",
1207
- "multiply",
1208
- "screen",
1209
- "overlay",
1210
- "soft_light"
1211
- ],
1212
- "default": "normal",
1213
- "description": "Blending mode for image composition"
1214
- },
1215
- "negative_prompt": {
1216
- "type": "string",
1217
- "description": "What to avoid in the composition"
1218
- },
1219
- "strength": {
1220
- "type": "number",
1221
- "minimum": 0.1,
1222
- "maximum": 1,
1223
- "default": 0.8,
1224
- "description": "Strength of the composition effect"
1225
- },
1226
- "guidance_scale": {
1227
- "type": "number",
1228
- "minimum": 1,
1229
- "maximum": 20,
1230
- "default": 7.5,
1231
- "description": "How closely to follow the prompt"
1232
- },
1233
- "seed": {
1234
- "type": "integer",
1235
- "minimum": 0,
1236
- "description": "Random seed for reproducible results"
1237
- },
1238
- "output_format": {
1239
- "type": "string",
1240
- "enum": [
1241
- "base64",
1242
- "url"
1243
- ],
1244
- "default": "base64",
1245
- "description": "Output format"
1246
- },
1247
- "quality": {
1248
- "type": "string",
1249
- "enum": [
1250
- "draft",
1251
- "standard",
1252
- "high"
1253
- ],
1254
- "default": "standard",
1255
- "description": "Quality level"
1256
- }
1257
- },
1258
- "required": [
1259
- "input_image",
1260
- "secondary_images",
1261
- "prompt"
1262
- ],
1263
- "additionalProperties": false,
1264
- "$schema": "http://json-schema.org/draft-07/schema#"
1265
- }
1266
- },
1267
- {
1268
- "serverName": "human-mcp",
1269
- "name": "jimp_crop_image",
1270
- "description": "Crop an image using Jimp with various modes (manual, center, aspect ratio, etc.)",
1271
- "inputSchema": {
1272
- "type": "object",
1273
- "properties": {
1274
- "input_image": {
1275
- "type": "string",
1276
- "description": "Input image - supports file paths, URLs, or base64 data URIs"
1277
- },
1278
- "mode": {
1279
- "type": "string",
1280
- "enum": [
1281
- "manual",
1282
- "center",
1283
- "top_left",
1284
- "top_right",
1285
- "bottom_left",
1286
- "bottom_right",
1287
- "aspect_ratio"
1288
- ],
1289
- "default": "manual",
1290
- "description": "Crop mode"
1291
- },
1292
- "x": {
1293
- "type": "integer",
1294
- "minimum": 0,
1295
- "description": "X coordinate for crop start (manual mode)"
1296
- },
1297
- "y": {
1298
- "type": "integer",
1299
- "minimum": 0,
1300
- "description": "Y coordinate for crop start (manual mode)"
1301
- },
1302
- "width": {
1303
- "type": "integer",
1304
- "minimum": 1,
1305
- "description": "Width of crop region"
1306
- },
1307
- "height": {
1308
- "type": "integer",
1309
- "minimum": 1,
1310
- "description": "Height of crop region"
1311
- },
1312
- "aspect_ratio": {
1313
- "type": "string",
1314
- "description": "Aspect ratio (e.g., '16:9', '4:3')"
1315
- },
1316
- "output_format": {
1317
- "type": "string",
1318
- "enum": [
1319
- "png",
1320
- "jpeg",
1321
- "bmp"
1322
- ],
1323
- "default": "png",
1324
- "description": "Output image format"
1325
- },
1326
- "quality": {
1327
- "type": "integer",
1328
- "minimum": 0,
1329
- "maximum": 100,
1330
- "description": "JPEG quality (0-100)"
1331
- }
1332
- },
1333
- "required": [
1334
- "input_image"
1335
- ],
1336
- "additionalProperties": false,
1337
- "$schema": "http://json-schema.org/draft-07/schema#"
1338
- }
1339
- },
1340
- {
1341
- "serverName": "human-mcp",
1342
- "name": "jimp_resize_image",
1343
- "description": "Resize an image using Jimp with various algorithms and options",
1344
- "inputSchema": {
1345
- "type": "object",
1346
- "properties": {
1347
- "input_image": {
1348
- "type": "string",
1349
- "description": "Input image - supports file paths, URLs, or base64 data URIs"
1350
- },
1351
- "width": {
1352
- "type": "integer",
1353
- "minimum": 1,
1354
- "description": "Target width in pixels"
1355
- },
1356
- "height": {
1357
- "type": "integer",
1358
- "minimum": 1,
1359
- "description": "Target height in pixels"
1360
- },
1361
- "scale": {
1362
- "type": "number",
1363
- "minimum": 0.01,
1364
- "maximum": 10,
1365
- "description": "Scale factor (e.g., 0.5 for 50%, 2.0 for 200%)"
1366
- },
1367
- "maintain_aspect_ratio": {
1368
- "type": "boolean",
1369
- "default": true,
1370
- "description": "Maintain aspect ratio when resizing"
1371
- },
1372
- "algorithm": {
1373
- "type": "string",
1374
- "enum": [
1375
- "nearestNeighbor",
1376
- "bilinear",
1377
- "bicubic",
1378
- "hermite",
1379
- "bezier"
1380
- ],
1381
- "default": "bilinear",
1382
- "description": "Resize algorithm"
1383
- },
1384
- "output_format": {
1385
- "type": "string",
1386
- "enum": [
1387
- "png",
1388
- "jpeg",
1389
- "bmp"
1390
- ],
1391
- "default": "png",
1392
- "description": "Output image format"
1393
- },
1394
- "quality": {
1395
- "type": "integer",
1396
- "minimum": 0,
1397
- "maximum": 100,
1398
- "description": "JPEG quality (0-100)"
1399
- }
1400
- },
1401
- "required": [
1402
- "input_image"
1403
- ],
1404
- "additionalProperties": false,
1405
- "$schema": "http://json-schema.org/draft-07/schema#"
1406
- }
1407
- },
1408
- {
1409
- "serverName": "human-mcp",
1410
- "name": "jimp_rotate_image",
1411
- "description": "Rotate an image using Jimp by any angle",
1412
- "inputSchema": {
1413
- "type": "object",
1414
- "properties": {
1415
- "input_image": {
1416
- "type": "string",
1417
- "description": "Input image - supports file paths, URLs, or base64 data URIs"
1418
- },
1419
- "angle": {
1420
- "type": "number",
1421
- "description": "Rotation angle in degrees (positive = clockwise, negative = counter-clockwise)"
1422
- },
1423
- "background_color": {
1424
- "type": "string",
1425
- "description": "Background color for areas outside the rotated image (CSS color format, e.g., '#ffffff', 'white')"
1426
- },
1427
- "output_format": {
1428
- "type": "string",
1429
- "enum": [
1430
- "png",
1431
- "jpeg",
1432
- "bmp"
1433
- ],
1434
- "default": "png",
1435
- "description": "Output image format"
1436
- },
1437
- "quality": {
1438
- "type": "integer",
1439
- "minimum": 0,
1440
- "maximum": 100,
1441
- "description": "JPEG quality (0-100)"
1442
- }
1443
- },
1444
- "required": [
1445
- "input_image",
1446
- "angle"
1447
- ],
1448
- "additionalProperties": false,
1449
- "$schema": "http://json-schema.org/draft-07/schema#"
1450
- }
1451
- },
1452
- {
1453
- "serverName": "human-mcp",
1454
- "name": "jimp_mask_image",
1455
- "description": "Apply a grayscale alpha mask to an image using Jimp (black pixels = transparent, white pixels = opaque)",
1456
- "inputSchema": {
1457
- "type": "object",
1458
- "properties": {
1459
- "input_image": {
1460
- "type": "string",
1461
- "description": "Input image to apply mask to - supports file paths, URLs, or base64 data URIs"
1462
- },
1463
- "mask_image": {
1464
- "type": "string",
1465
- "description": "Grayscale mask image (black = transparent, white = opaque) - supports file paths, URLs, or base64 data URIs"
1466
- },
1467
- "output_format": {
1468
- "type": "string",
1469
- "enum": [
1470
- "png",
1471
- "jpeg",
1472
- "bmp"
1473
- ],
1474
- "default": "png",
1475
- "description": "Output image format"
1476
- },
1477
- "quality": {
1478
- "type": "integer",
1479
- "minimum": 0,
1480
- "maximum": 100,
1481
- "description": "JPEG quality (0-100)"
1482
- }
1483
- },
1484
- "required": [
1485
- "input_image",
1486
- "mask_image"
1487
- ],
1488
- "additionalProperties": false,
1489
- "$schema": "http://json-schema.org/draft-07/schema#"
1490
- }
1491
- },
1492
- {
1493
- "serverName": "human-mcp",
1494
- "name": "rmbg_remove_background",
1495
- "description": "Remove background from an image using AI-powered background removal",
1496
- "inputSchema": {
1497
- "type": "object",
1498
- "properties": {
1499
- "input_image": {
1500
- "type": "string",
1501
- "description": "Input image - supports file paths, URLs, or base64 data URIs"
1502
- },
1503
- "quality": {
1504
- "type": "string",
1505
- "enum": [
1506
- "fast",
1507
- "balanced",
1508
- "high"
1509
- ],
1510
- "default": "balanced",
1511
- "description": "Processing quality (fast = quick but less accurate, high = slower but more accurate)"
1512
- },
1513
- "output_format": {
1514
- "type": "string",
1515
- "enum": [
1516
- "png",
1517
- "jpeg"
1518
- ],
1519
- "default": "png",
1520
- "description": "Output image format (PNG preserves transparency, JPEG requires background color)"
1521
- },
1522
- "background_color": {
1523
- "type": "string",
1524
- "description": "Background color for JPEG output (CSS color format, e.g., '#ffffff', 'white')"
1525
- },
1526
- "jpeg_quality": {
1527
- "type": "integer",
1528
- "minimum": 0,
1529
- "maximum": 100,
1530
- "default": 85,
1531
- "description": "JPEG quality (0-100)"
1532
- }
1533
- },
1534
- "required": [
1535
- "input_image"
1536
- ],
1537
- "additionalProperties": false,
1538
- "$schema": "http://json-schema.org/draft-07/schema#"
1539
- }
1540
- },
1541
- {
1542
- "serverName": "human-mcp",
1543
- "name": "playwright_screenshot_fullpage",
1544
- "description": "Capture full page screenshot including scrollable content using Playwright",
1545
- "inputSchema": {
1546
- "type": "object",
1547
- "properties": {
1548
- "url": {
1549
- "type": "string",
1550
- "format": "uri",
1551
- "description": "URL of the webpage to capture"
1552
- },
1553
- "format": {
1554
- "type": "string",
1555
- "enum": [
1556
- "png",
1557
- "jpeg"
1558
- ],
1559
- "default": "png",
1560
- "description": "Screenshot format"
1561
- },
1562
- "quality": {
1563
- "type": "integer",
1564
- "minimum": 0,
1565
- "maximum": 100,
1566
- "description": "JPEG quality (0-100), only applicable for jpeg format"
1567
- },
1568
- "timeout": {
1569
- "type": "integer",
1570
- "minimum": 1000,
1571
- "maximum": 120000,
1572
- "default": 30000,
1573
- "description": "Navigation timeout in milliseconds"
1574
- },
1575
- "wait_until": {
1576
- "type": "string",
1577
- "enum": [
1578
- "load",
1579
- "domcontentloaded",
1580
- "networkidle"
1581
- ],
1582
- "default": "networkidle",
1583
- "description": "When to consider navigation successful"
1584
- },
1585
- "viewport": {
1586
- "type": "object",
1587
- "properties": {
1588
- "width": {
1589
- "type": "integer",
1590
- "minimum": 320,
1591
- "maximum": 3840,
1592
- "default": 1920
1593
- },
1594
- "height": {
1595
- "type": "integer",
1596
- "minimum": 240,
1597
- "maximum": 2160,
1598
- "default": 1080
1599
- }
1600
- },
1601
- "additionalProperties": false,
1602
- "description": "Viewport dimensions"
1603
- }
1604
- },
1605
- "required": [
1606
- "url"
1607
- ],
1608
- "additionalProperties": false,
1609
- "$schema": "http://json-schema.org/draft-07/schema#"
1610
- }
1611
- },
1612
- {
1613
- "serverName": "human-mcp",
1614
- "name": "playwright_screenshot_viewport",
1615
- "description": "Capture viewport screenshot (visible area only) using Playwright",
1616
- "inputSchema": {
1617
- "type": "object",
1618
- "properties": {
1619
- "url": {
1620
- "type": "string",
1621
- "format": "uri",
1622
- "description": "URL of the webpage to capture"
1623
- },
1624
- "format": {
1625
- "type": "string",
1626
- "enum": [
1627
- "png",
1628
- "jpeg"
1629
- ],
1630
- "default": "png",
1631
- "description": "Screenshot format"
1632
- },
1633
- "quality": {
1634
- "type": "integer",
1635
- "minimum": 0,
1636
- "maximum": 100,
1637
- "description": "JPEG quality (0-100), only applicable for jpeg format"
1638
- },
1639
- "timeout": {
1640
- "type": "integer",
1641
- "minimum": 1000,
1642
- "maximum": 120000,
1643
- "default": 30000,
1644
- "description": "Navigation timeout in milliseconds"
1645
- },
1646
- "wait_until": {
1647
- "type": "string",
1648
- "enum": [
1649
- "load",
1650
- "domcontentloaded",
1651
- "networkidle"
1652
- ],
1653
- "default": "networkidle",
1654
- "description": "When to consider navigation successful"
1655
- },
1656
- "viewport": {
1657
- "type": "object",
1658
- "properties": {
1659
- "width": {
1660
- "type": "integer",
1661
- "minimum": 320,
1662
- "maximum": 3840,
1663
- "default": 1920
1664
- },
1665
- "height": {
1666
- "type": "integer",
1667
- "minimum": 240,
1668
- "maximum": 2160,
1669
- "default": 1080
1670
- }
1671
- },
1672
- "additionalProperties": false,
1673
- "description": "Viewport dimensions"
1674
- }
1675
- },
1676
- "required": [
1677
- "url"
1678
- ],
1679
- "additionalProperties": false,
1680
- "$schema": "http://json-schema.org/draft-07/schema#"
1681
- }
1682
- },
1683
- {
1684
- "serverName": "human-mcp",
1685
- "name": "playwright_screenshot_element",
1686
- "description": "Capture screenshot of specific element using Playwright",
1687
- "inputSchema": {
1688
- "type": "object",
1689
- "properties": {
1690
- "url": {
1691
- "type": "string",
1692
- "format": "uri",
1693
- "description": "URL of the webpage to capture"
1694
- },
1695
- "selector": {
1696
- "type": "string",
1697
- "minLength": 1,
1698
- "description": "CSS selector, text content, or role of the element to capture"
1699
- },
1700
- "selector_type": {
1701
- "type": "string",
1702
- "enum": [
1703
- "css",
1704
- "text",
1705
- "role"
1706
- ],
1707
- "default": "css",
1708
- "description": "Type of selector (css, text, or role)"
1709
- },
1710
- "format": {
1711
- "type": "string",
1712
- "enum": [
1713
- "png",
1714
- "jpeg"
1715
- ],
1716
- "default": "png",
1717
- "description": "Screenshot format"
1718
- },
1719
- "quality": {
1720
- "type": "integer",
1721
- "minimum": 0,
1722
- "maximum": 100,
1723
- "description": "JPEG quality (0-100), only applicable for jpeg format"
1724
- },
1725
- "timeout": {
1726
- "type": "integer",
1727
- "minimum": 1000,
1728
- "maximum": 120000,
1729
- "default": 30000,
1730
- "description": "Navigation and element wait timeout in milliseconds"
1731
- },
1732
- "wait_until": {
1733
- "type": "string",
1734
- "enum": [
1735
- "load",
1736
- "domcontentloaded",
1737
- "networkidle"
1738
- ],
1739
- "default": "networkidle",
1740
- "description": "When to consider navigation successful"
1741
- },
1742
- "viewport": {
1743
- "type": "object",
1744
- "properties": {
1745
- "width": {
1746
- "type": "integer",
1747
- "minimum": 320,
1748
- "maximum": 3840,
1749
- "default": 1920
1750
- },
1751
- "height": {
1752
- "type": "integer",
1753
- "minimum": 240,
1754
- "maximum": 2160,
1755
- "default": 1080
1756
- }
1757
- },
1758
- "additionalProperties": false,
1759
- "description": "Viewport dimensions"
1760
- },
1761
- "wait_for_selector": {
1762
- "type": "boolean",
1763
- "default": true,
1764
- "description": "Wait for the selector to be visible before capturing"
1765
- }
1766
- },
1767
- "required": [
1768
- "url",
1769
- "selector"
1770
- ],
1771
- "additionalProperties": false,
1772
- "$schema": "http://json-schema.org/draft-07/schema#"
1773
- }
1774
- },
1775
- {
1776
- "serverName": "human-mcp",
1777
- "name": "mouth_speak",
1778
- "description": "Generate speech from text using Gemini Speech Generation API with voice customization",
1779
- "inputSchema": {
1780
- "type": "object",
1781
- "properties": {
1782
- "text": {
1783
- "type": "string",
1784
- "minLength": 1,
1785
- "maxLength": 32000,
1786
- "description": "Text to convert to speech (max 32k tokens)"
1787
- },
1788
- "voice": {
1789
- "type": "string",
1790
- "enum": [
1791
- "Astrid",
1792
- "Charon",
1793
- "Fenrir",
1794
- "Kore",
1795
- "Odin",
1796
- "Puck",
1797
- "Sage",
1798
- "Vox",
1799
- "Zephyr",
1800
- "Aoede",
1801
- "Apollo",
1802
- "Elektra",
1803
- "Iris",
1804
- "Nemesis",
1805
- "Perseus",
1806
- "Selene",
1807
- "Thalia",
1808
- "Argus",
1809
- "Ares",
1810
- "Demeter",
1811
- "Dione",
1812
- "Echo",
1813
- "Eros",
1814
- "Hephaestus",
1815
- "Hermes",
1816
- "Hyperion",
1817
- "Iapetus",
1818
- "Kronos",
1819
- "Leto",
1820
- "Maia",
1821
- "Mnemosyne"
1822
- ],
1823
- "default": "Zephyr",
1824
- "description": "Voice to use for speech generation"
1825
- },
1826
- "model": {
1827
- "type": "string",
1828
- "enum": [
1829
- "gemini-2.5-flash-preview-tts",
1830
- "gemini-2.5-pro-preview-tts"
1831
- ],
1832
- "default": "gemini-2.5-flash-preview-tts",
1833
- "description": "Speech generation model"
1834
- },
1835
- "language": {
1836
- "type": "string",
1837
- "enum": [
1838
- "ar-EG",
1839
- "de-DE",
1840
- "en-US",
1841
- "es-US",
1842
- "fr-FR",
1843
- "hi-IN",
1844
- "id-ID",
1845
- "it-IT",
1846
- "ja-JP",
1847
- "ko-KR",
1848
- "pt-BR",
1849
- "ru-RU",
1850
- "nl-NL",
1851
- "pl-PL",
1852
- "th-TH",
1853
- "tr-TR",
1854
- "vi-VN",
1855
- "ro-RO",
1856
- "uk-UA",
1857
- "bn-BD",
1858
- "en-IN",
1859
- "mr-IN",
1860
- "ta-IN",
1861
- "te-IN"
1862
- ],
1863
- "default": "en-US",
1864
- "description": "Language for speech generation"
1865
- },
1866
- "output_format": {
1867
- "type": "string",
1868
- "enum": [
1869
- "wav",
1870
- "base64",
1871
- "url"
1872
- ],
1873
- "default": "base64",
1874
- "description": "Output format for generated audio"
1875
- },
1876
- "style_prompt": {
1877
- "type": "string",
1878
- "description": "Natural language prompt to control speaking style"
1879
- }
1880
- },
1881
- "required": [
1882
- "text"
1883
- ],
1884
- "additionalProperties": false,
1885
- "$schema": "http://json-schema.org/draft-07/schema#"
1886
- }
1887
- },
1888
- {
1889
- "serverName": "human-mcp",
1890
- "name": "mouth_narrate",
1891
- "description": "Generate narration for long-form content with chapter breaks and style control",
1892
- "inputSchema": {
1893
- "type": "object",
1894
- "properties": {
1895
- "content": {
1896
- "type": "string",
1897
- "minLength": 1,
1898
- "description": "Long-form content to narrate"
1899
- },
1900
- "voice": {
1901
- "type": "string",
1902
- "enum": [
1903
- "Astrid",
1904
- "Charon",
1905
- "Fenrir",
1906
- "Kore",
1907
- "Odin",
1908
- "Puck",
1909
- "Sage",
1910
- "Vox",
1911
- "Zephyr",
1912
- "Aoede",
1913
- "Apollo",
1914
- "Elektra",
1915
- "Iris",
1916
- "Nemesis",
1917
- "Perseus",
1918
- "Selene",
1919
- "Thalia",
1920
- "Argus",
1921
- "Ares",
1922
- "Demeter",
1923
- "Dione",
1924
- "Echo",
1925
- "Eros",
1926
- "Hephaestus",
1927
- "Hermes",
1928
- "Hyperion",
1929
- "Iapetus",
1930
- "Kronos",
1931
- "Leto",
1932
- "Maia",
1933
- "Mnemosyne"
1934
- ],
1935
- "default": "Sage",
1936
- "description": "Voice to use for narration"
1937
- },
1938
- "model": {
1939
- "type": "string",
1940
- "enum": [
1941
- "gemini-2.5-flash-preview-tts",
1942
- "gemini-2.5-pro-preview-tts"
1943
- ],
1944
- "default": "gemini-2.5-pro-preview-tts",
1945
- "description": "Speech generation model"
1946
- },
1947
- "language": {
1948
- "type": "string",
1949
- "enum": [
1950
- "ar-EG",
1951
- "de-DE",
1952
- "en-US",
1953
- "es-US",
1954
- "fr-FR",
1955
- "hi-IN",
1956
- "id-ID",
1957
- "it-IT",
1958
- "ja-JP",
1959
- "ko-KR",
1960
- "pt-BR",
1961
- "ru-RU",
1962
- "nl-NL",
1963
- "pl-PL",
1964
- "th-TH",
1965
- "tr-TR",
1966
- "vi-VN",
1967
- "ro-RO",
1968
- "uk-UA",
1969
- "bn-BD",
1970
- "en-IN",
1971
- "mr-IN",
1972
- "ta-IN",
1973
- "te-IN"
1974
- ],
1975
- "default": "en-US",
1976
- "description": "Language for narration"
1977
- },
1978
- "output_format": {
1979
- "type": "string",
1980
- "enum": [
1981
- "wav",
1982
- "base64",
1983
- "url"
1984
- ],
1985
- "default": "base64",
1986
- "description": "Output format for generated audio"
1987
- },
1988
- "narration_style": {
1989
- "type": "string",
1990
- "enum": [
1991
- "professional",
1992
- "casual",
1993
- "educational",
1994
- "storytelling"
1995
- ],
1996
- "default": "professional",
1997
- "description": "Narration style"
1998
- },
1999
- "chapter_breaks": {
2000
- "type": "boolean",
2001
- "default": false,
2002
- "description": "Add pauses between chapters/sections"
2003
- },
2004
- "max_chunk_size": {
2005
- "type": "number",
2006
- "default": 8000,
2007
- "description": "Maximum characters per audio chunk"
2008
- }
2009
- },
2010
- "required": [
2011
- "content"
2012
- ],
2013
- "additionalProperties": false,
2014
- "$schema": "http://json-schema.org/draft-07/schema#"
2015
- }
2016
- },
2017
- {
2018
- "serverName": "human-mcp",
2019
- "name": "mouth_explain",
2020
- "description": "Generate spoken explanations of code with technical analysis",
2021
- "inputSchema": {
2022
- "type": "object",
2023
- "properties": {
2024
- "code": {
2025
- "type": "string",
2026
- "minLength": 1,
2027
- "description": "Code to explain"
2028
- },
2029
- "language": {
2030
- "type": "string",
2031
- "enum": [
2032
- "ar-EG",
2033
- "de-DE",
2034
- "en-US",
2035
- "es-US",
2036
- "fr-FR",
2037
- "hi-IN",
2038
- "id-ID",
2039
- "it-IT",
2040
- "ja-JP",
2041
- "ko-KR",
2042
- "pt-BR",
2043
- "ru-RU",
2044
- "nl-NL",
2045
- "pl-PL",
2046
- "th-TH",
2047
- "tr-TR",
2048
- "vi-VN",
2049
- "ro-RO",
2050
- "uk-UA",
2051
- "bn-BD",
2052
- "en-IN",
2053
- "mr-IN",
2054
- "ta-IN",
2055
- "te-IN"
2056
- ],
2057
- "default": "en-US",
2058
- "description": "Language for explanation"
2059
- },
2060
- "programming_language": {
2061
- "type": "string",
2062
- "description": "Programming language of the code"
2063
- },
2064
- "voice": {
2065
- "type": "string",
2066
- "enum": [
2067
- "Astrid",
2068
- "Charon",
2069
- "Fenrir",
2070
- "Kore",
2071
- "Odin",
2072
- "Puck",
2073
- "Sage",
2074
- "Vox",
2075
- "Zephyr",
2076
- "Aoede",
2077
- "Apollo",
2078
- "Elektra",
2079
- "Iris",
2080
- "Nemesis",
2081
- "Perseus",
2082
- "Selene",
2083
- "Thalia",
2084
- "Argus",
2085
- "Ares",
2086
- "Demeter",
2087
- "Dione",
2088
- "Echo",
2089
- "Eros",
2090
- "Hephaestus",
2091
- "Hermes",
2092
- "Hyperion",
2093
- "Iapetus",
2094
- "Kronos",
2095
- "Leto",
2096
- "Maia",
2097
- "Mnemosyne"
2098
- ],
2099
- "default": "Apollo",
2100
- "description": "Voice to use for explanation"
2101
- },
2102
- "model": {
2103
- "type": "string",
2104
- "enum": [
2105
- "gemini-2.5-flash-preview-tts",
2106
- "gemini-2.5-pro-preview-tts"
2107
- ],
2108
- "default": "gemini-2.5-pro-preview-tts",
2109
- "description": "Speech generation model"
2110
- },
2111
- "output_format": {
2112
- "type": "string",
2113
- "enum": [
2114
- "wav",
2115
- "base64",
2116
- "url"
2117
- ],
2118
- "default": "base64",
2119
- "description": "Output format for generated audio"
2120
- },
2121
- "explanation_level": {
2122
- "type": "string",
2123
- "enum": [
2124
- "beginner",
2125
- "intermediate",
2126
- "advanced"
2127
- ],
2128
- "default": "intermediate",
2129
- "description": "Technical level of explanation"
2130
- },
2131
- "include_examples": {
2132
- "type": "boolean",
2133
- "default": true,
2134
- "description": "Include examples in explanation"
2135
- }
2136
- },
2137
- "required": [
2138
- "code"
2139
- ],
2140
- "additionalProperties": false,
2141
- "$schema": "http://json-schema.org/draft-07/schema#"
2142
- }
2143
- },
2144
- {
2145
- "serverName": "human-mcp",
2146
- "name": "mouth_customize",
2147
- "description": "Test different voices and styles to find the best fit for your content",
2148
- "inputSchema": {
2149
- "type": "object",
2150
- "properties": {
2151
- "text": {
2152
- "type": "string",
2153
- "minLength": 1,
2154
- "maxLength": 1000,
2155
- "description": "Sample text to test voice customization"
2156
- },
2157
- "voice": {
2158
- "type": "string",
2159
- "enum": [
2160
- "Astrid",
2161
- "Charon",
2162
- "Fenrir",
2163
- "Kore",
2164
- "Odin",
2165
- "Puck",
2166
- "Sage",
2167
- "Vox",
2168
- "Zephyr",
2169
- "Aoede",
2170
- "Apollo",
2171
- "Elektra",
2172
- "Iris",
2173
- "Nemesis",
2174
- "Perseus",
2175
- "Selene",
2176
- "Thalia",
2177
- "Argus",
2178
- "Ares",
2179
- "Demeter",
2180
- "Dione",
2181
- "Echo",
2182
- "Eros",
2183
- "Hephaestus",
2184
- "Hermes",
2185
- "Hyperion",
2186
- "Iapetus",
2187
- "Kronos",
2188
- "Leto",
2189
- "Maia",
2190
- "Mnemosyne"
2191
- ],
2192
- "description": "Base voice to customize"
2193
- },
2194
- "model": {
2195
- "type": "string",
2196
- "enum": [
2197
- "gemini-2.5-flash-preview-tts",
2198
- "gemini-2.5-pro-preview-tts"
2199
- ],
2200
- "default": "gemini-2.5-flash-preview-tts",
2201
- "description": "Speech generation model"
2202
- },
2203
- "language": {
2204
- "type": "string",
2205
- "enum": [
2206
- "ar-EG",
2207
- "de-DE",
2208
- "en-US",
2209
- "es-US",
2210
- "fr-FR",
2211
- "hi-IN",
2212
- "id-ID",
2213
- "it-IT",
2214
- "ja-JP",
2215
- "ko-KR",
2216
- "pt-BR",
2217
- "ru-RU",
2218
- "nl-NL",
2219
- "pl-PL",
2220
- "th-TH",
2221
- "tr-TR",
2222
- "vi-VN",
2223
- "ro-RO",
2224
- "uk-UA",
2225
- "bn-BD",
2226
- "en-IN",
2227
- "mr-IN",
2228
- "ta-IN",
2229
- "te-IN"
2230
- ],
2231
- "default": "en-US",
2232
- "description": "Language for speech generation"
2233
- },
2234
- "output_format": {
2235
- "type": "string",
2236
- "enum": [
2237
- "wav",
2238
- "base64",
2239
- "url"
2240
- ],
2241
- "default": "base64",
2242
- "description": "Output format for generated audio"
2243
- },
2244
- "style_variations": {
2245
- "type": "array",
2246
- "items": {
2247
- "type": "string"
2248
- },
2249
- "description": "Array of different style prompts to test"
2250
- },
2251
- "compare_voices": {
2252
- "type": "array",
2253
- "items": {
2254
- "type": "string",
2255
- "enum": [
2256
- "Astrid",
2257
- "Charon",
2258
- "Fenrir",
2259
- "Kore",
2260
- "Odin",
2261
- "Puck",
2262
- "Sage",
2263
- "Vox",
2264
- "Zephyr",
2265
- "Aoede",
2266
- "Apollo",
2267
- "Elektra",
2268
- "Iris",
2269
- "Nemesis",
2270
- "Perseus",
2271
- "Selene",
2272
- "Thalia",
2273
- "Argus",
2274
- "Ares",
2275
- "Demeter",
2276
- "Dione",
2277
- "Echo",
2278
- "Eros",
2279
- "Hephaestus",
2280
- "Hermes",
2281
- "Hyperion",
2282
- "Iapetus",
2283
- "Kronos",
2284
- "Leto",
2285
- "Maia",
2286
- "Mnemosyne"
2287
- ]
2288
- },
2289
- "description": "Additional voices to compare with the main voice"
2290
- }
2291
- },
2292
- "required": [
2293
- "text",
2294
- "voice"
2295
- ],
2296
- "additionalProperties": false,
2297
- "$schema": "http://json-schema.org/draft-07/schema#"
2298
- }
2299
- },
2300
- {
2301
- "serverName": "human-mcp",
2302
- "name": "mcp__reasoning__sequentialthinking",
2303
- "description": "Advanced sequential thinking for complex problems with thought revision and branching",
2304
- "inputSchema": {
2305
- "type": "object",
2306
- "properties": {
2307
- "thought": {
2308
- "type": "string",
2309
- "description": "Your current thinking step"
2310
- },
2311
- "nextThoughtNeeded": {
2312
- "type": "boolean",
2313
- "description": "Whether another thought step is needed"
2314
- },
2315
- "thoughtNumber": {
2316
- "type": "integer",
2317
- "minimum": 1,
2318
- "description": "Current thought number"
2319
- },
2320
- "totalThoughts": {
2321
- "type": "integer",
2322
- "minimum": 1,
2323
- "description": "Estimated total thoughts needed"
2324
- },
2325
- "sessionId": {
2326
- "type": "string",
2327
- "description": "Thinking session ID (auto-generated if not provided)"
2328
- },
2329
- "problem": {
2330
- "type": "string",
2331
- "description": "The problem to think through (required for new sessions)"
2332
- },
2333
- "isRevision": {
2334
- "type": "boolean",
2335
- "default": false,
2336
- "description": "Whether this revises previous thinking"
2337
- },
2338
- "revisesThought": {
2339
- "type": "integer",
2340
- "minimum": 1,
2341
- "description": "Which thought is being reconsidered"
2342
- },
2343
- "branchId": {
2344
- "type": "string",
2345
- "description": "Branch identifier"
2346
- },
2347
- "branchFromThought": {
2348
- "type": "integer",
2349
- "minimum": 1,
2350
- "description": "Branching point thought number"
2351
- }
2352
- },
2353
- "required": [
2354
- "thought",
2355
- "nextThoughtNeeded",
2356
- "thoughtNumber",
2357
- "totalThoughts"
2358
- ],
2359
- "additionalProperties": false,
2360
- "$schema": "http://json-schema.org/draft-07/schema#"
2361
- }
2362
- },
2363
- {
2364
- "serverName": "human-mcp",
2365
- "name": "brain_analyze_simple",
2366
- "description": "Fast pattern-based analysis using proven frameworks",
2367
- "inputSchema": {
2368
- "type": "object",
2369
- "properties": {
2370
- "problem": {
2371
- "type": "string",
2372
- "description": "The problem or situation to analyze"
2373
- },
2374
- "pattern": {
2375
- "type": "string",
2376
- "enum": [
2377
- "problem_solving",
2378
- "root_cause",
2379
- "pros_cons",
2380
- "swot",
2381
- "cause_effect"
2382
- ],
2383
- "description": "Analysis framework to use"
2384
- },
2385
- "context": {
2386
- "type": "string",
2387
- "description": "Additional context or background information"
2388
- }
2389
- },
2390
- "required": [
2391
- "problem",
2392
- "pattern"
2393
- ],
2394
- "additionalProperties": false,
2395
- "$schema": "http://json-schema.org/draft-07/schema#"
2396
- }
2397
- },
2398
- {
2399
- "serverName": "human-mcp",
2400
- "name": "brain_patterns_info",
2401
- "description": "List available reasoning patterns and their descriptions",
2402
- "inputSchema": {
2403
- "type": "object",
2404
- "properties": {
2405
- "pattern": {
2406
- "type": "string",
2407
- "description": "Specific pattern to get info about (optional)"
2408
- }
2409
- },
2410
- "additionalProperties": false,
2411
- "$schema": "http://json-schema.org/draft-07/schema#"
2412
- }
2413
- },
2414
- {
2415
- "serverName": "human-mcp",
2416
- "name": "brain_reflect_enhanced",
2417
- "description": "AI-powered reflection for complex analysis improvement",
2418
- "inputSchema": {
2419
- "type": "object",
2420
- "properties": {
2421
- "originalAnalysis": {
2422
- "type": "string",
2423
- "minLength": 50,
2424
- "maxLength": 5000,
2425
- "description": "The analysis or reasoning to reflect on"
2426
- },
2427
- "focusAreas": {
2428
- "type": "array",
2429
- "items": {
2430
- "type": "string",
2431
- "enum": [
2432
- "assumptions",
2433
- "logic_gaps",
2434
- "alternative_approaches",
2435
- "evidence_quality",
2436
- "bias_detection",
2437
- "completeness"
2438
- ]
2439
- },
2440
- "minItems": 1,
2441
- "maxItems": 3,
2442
- "description": "Specific aspects to focus reflection on"
2443
- },
2444
- "improvementGoal": {
2445
- "type": "string",
2446
- "description": "Primary goal for improvement"
2447
- },
2448
- "detailLevel": {
2449
- "type": "string",
2450
- "enum": [
2451
- "concise",
2452
- "detailed"
2453
- ],
2454
- "default": "detailed",
2455
- "description": "Level of analysis detail"
2456
- }
2457
- },
2458
- "required": [
2459
- "originalAnalysis",
2460
- "focusAreas"
2461
- ],
2462
- "additionalProperties": false,
2463
- "$schema": "http://json-schema.org/draft-07/schema#"
2464
- }
2465
- },
2466
- {
2467
- "serverName": "chrome-devtools",
2468
- "name": "click",
2469
- "description": "Clicks on the provided element",
2470
- "inputSchema": {
2471
- "type": "object",
2472
- "properties": {
2473
- "uid": {
2474
- "type": "string",
2475
- "description": "The uid of an element on the page from the page content snapshot"
2476
- },
2477
- "dblClick": {
2478
- "type": "boolean",
2479
- "description": "Set to true for double clicks. Default is false."
2480
- }
2481
- },
2482
- "required": [
2483
- "uid"
2484
- ],
2485
- "additionalProperties": false,
2486
- "$schema": "http://json-schema.org/draft-07/schema#"
2487
- }
2488
- },
2489
- {
2490
- "serverName": "chrome-devtools",
2491
- "name": "close_page",
2492
- "description": "Closes the page by its index. The last open page cannot be closed.",
2493
- "inputSchema": {
2494
- "type": "object",
2495
- "properties": {
2496
- "pageIdx": {
2497
- "type": "number",
2498
- "description": "The index of the page to close. Call list_pages to list pages."
2499
- }
2500
- },
2501
- "required": [
2502
- "pageIdx"
2503
- ],
2504
- "additionalProperties": false,
2505
- "$schema": "http://json-schema.org/draft-07/schema#"
2506
- }
2507
- },
2508
- {
2509
- "serverName": "chrome-devtools",
2510
- "name": "drag",
2511
- "description": "Drag an element onto another element",
2512
- "inputSchema": {
2513
- "type": "object",
2514
- "properties": {
2515
- "from_uid": {
2516
- "type": "string",
2517
- "description": "The uid of the element to drag"
2518
- },
2519
- "to_uid": {
2520
- "type": "string",
2521
- "description": "The uid of the element to drop into"
2522
- }
2523
- },
2524
- "required": [
2525
- "from_uid",
2526
- "to_uid"
2527
- ],
2528
- "additionalProperties": false,
2529
- "$schema": "http://json-schema.org/draft-07/schema#"
2530
- }
2531
- },
2532
- {
2533
- "serverName": "chrome-devtools",
2534
- "name": "emulate",
2535
- "description": "Emulates various features on the selected page.",
2536
- "inputSchema": {
2537
- "type": "object",
2538
- "properties": {
2539
- "networkConditions": {
2540
- "type": "string",
2541
- "enum": [
2542
- "No emulation",
2543
- "Offline",
2544
- "Slow 3G",
2545
- "Fast 3G",
2546
- "Slow 4G",
2547
- "Fast 4G"
2548
- ],
2549
- "description": "Throttle network. Set to \"No emulation\" to disable. If omitted, conditions remain unchanged."
2550
- },
2551
- "cpuThrottlingRate": {
2552
- "type": "number",
2553
- "minimum": 1,
2554
- "maximum": 20,
2555
- "description": "Represents the CPU slowdown factor. Set the rate to 1 to disable throttling. If omitted, throttling remains unchanged."
2556
- }
2557
- },
2558
- "additionalProperties": false,
2559
- "$schema": "http://json-schema.org/draft-07/schema#"
2560
- }
2561
- },
2562
- {
2563
- "serverName": "chrome-devtools",
2564
- "name": "evaluate_script",
2565
- "description": "Evaluate a JavaScript function inside the currently selected page. Returns the response as JSON\nso returned values have to JSON-serializable.",
2566
- "inputSchema": {
2567
- "type": "object",
2568
- "properties": {
2569
- "function": {
2570
- "type": "string",
2571
- "description": "A JavaScript function declaration to be executed by the tool in the currently selected page.\nExample without arguments: `() => {\n return document.title\n}` or `async () => {\n return await fetch(\"example.com\")\n}`.\nExample with arguments: `(el) => {\n return el.innerText;\n}`\n"
2572
- },
2573
- "args": {
2574
- "type": "array",
2575
- "items": {
2576
- "type": "object",
2577
- "properties": {
2578
- "uid": {
2579
- "type": "string",
2580
- "description": "The uid of an element on the page from the page content snapshot"
2581
- }
2582
- },
2583
- "required": [
2584
- "uid"
2585
- ],
2586
- "additionalProperties": false
2587
- },
2588
- "description": "An optional list of arguments to pass to the function."
2589
- }
2590
- },
2591
- "required": [
2592
- "function"
2593
- ],
2594
- "additionalProperties": false,
2595
- "$schema": "http://json-schema.org/draft-07/schema#"
2596
- }
2597
- },
2598
- {
2599
- "serverName": "chrome-devtools",
2600
- "name": "fill",
2601
- "description": "Type text into a input, text area or select an option from a <select> element.",
2602
- "inputSchema": {
2603
- "type": "object",
2604
- "properties": {
2605
- "uid": {
2606
- "type": "string",
2607
- "description": "The uid of an element on the page from the page content snapshot"
2608
- },
2609
- "value": {
2610
- "type": "string",
2611
- "description": "The value to fill in"
2612
- }
2613
- },
2614
- "required": [
2615
- "uid",
2616
- "value"
2617
- ],
2618
- "additionalProperties": false,
2619
- "$schema": "http://json-schema.org/draft-07/schema#"
2620
- }
2621
- },
2622
- {
2623
- "serverName": "chrome-devtools",
2624
- "name": "fill_form",
2625
- "description": "Fill out multiple form elements at once",
2626
- "inputSchema": {
2627
- "type": "object",
2628
- "properties": {
2629
- "elements": {
2630
- "type": "array",
2631
- "items": {
2632
- "type": "object",
2633
- "properties": {
2634
- "uid": {
2635
- "type": "string",
2636
- "description": "The uid of the element to fill out"
2637
- },
2638
- "value": {
2639
- "type": "string",
2640
- "description": "Value for the element"
2641
- }
2642
- },
2643
- "required": [
2644
- "uid",
2645
- "value"
2646
- ],
2647
- "additionalProperties": false
2648
- },
2649
- "description": "Elements from snapshot to fill out."
2650
- }
2651
- },
2652
- "required": [
2653
- "elements"
2654
- ],
2655
- "additionalProperties": false,
2656
- "$schema": "http://json-schema.org/draft-07/schema#"
2657
- }
2658
- },
2659
- {
2660
- "serverName": "chrome-devtools",
2661
- "name": "get_console_message",
2662
- "description": "Gets a console message by its ID. You can get all messages by calling list_console_messages.",
2663
- "inputSchema": {
2664
- "type": "object",
2665
- "properties": {
2666
- "msgid": {
2667
- "type": "number",
2668
- "description": "The msgid of a console message on the page from the listed console messages"
2669
- }
2670
- },
2671
- "required": [
2672
- "msgid"
2673
- ],
2674
- "additionalProperties": false,
2675
- "$schema": "http://json-schema.org/draft-07/schema#"
2676
- }
2677
- },
2678
- {
2679
- "serverName": "chrome-devtools",
2680
- "name": "get_network_request",
2681
- "description": "Gets a network request by an optional reqid, if omitted returns the currently selected request in the DevTools Network panel.",
2682
- "inputSchema": {
2683
- "type": "object",
2684
- "properties": {
2685
- "reqid": {
2686
- "type": "number",
2687
- "description": "The reqid of the network request. If omitted returns the currently selected request in the DevTools Network panel."
2688
- }
2689
- },
2690
- "additionalProperties": false,
2691
- "$schema": "http://json-schema.org/draft-07/schema#"
2692
- }
2693
- },
2694
- {
2695
- "serverName": "chrome-devtools",
2696
- "name": "handle_dialog",
2697
- "description": "If a browser dialog was opened, use this command to handle it",
2698
- "inputSchema": {
2699
- "type": "object",
2700
- "properties": {
2701
- "action": {
2702
- "type": "string",
2703
- "enum": [
2704
- "accept",
2705
- "dismiss"
2706
- ],
2707
- "description": "Whether to dismiss or accept the dialog"
2708
- },
2709
- "promptText": {
2710
- "type": "string",
2711
- "description": "Optional prompt text to enter into the dialog."
2712
- }
2713
- },
2714
- "required": [
2715
- "action"
2716
- ],
2717
- "additionalProperties": false,
2718
- "$schema": "http://json-schema.org/draft-07/schema#"
2719
- }
2720
- },
2721
- {
2722
- "serverName": "chrome-devtools",
2723
- "name": "hover",
2724
- "description": "Hover over the provided element",
2725
- "inputSchema": {
2726
- "type": "object",
2727
- "properties": {
2728
- "uid": {
2729
- "type": "string",
2730
- "description": "The uid of an element on the page from the page content snapshot"
2731
- }
2732
- },
2733
- "required": [
2734
- "uid"
2735
- ],
2736
- "additionalProperties": false,
2737
- "$schema": "http://json-schema.org/draft-07/schema#"
2738
- }
2739
- },
2740
- {
2741
- "serverName": "chrome-devtools",
2742
- "name": "list_console_messages",
2743
- "description": "List all console messages for the currently selected page since the last navigation.",
2744
- "inputSchema": {
2745
- "type": "object",
2746
- "properties": {
2747
- "pageSize": {
2748
- "type": "integer",
2749
- "exclusiveMinimum": 0,
2750
- "description": "Maximum number of messages to return. When omitted, returns all requests."
2751
- },
2752
- "pageIdx": {
2753
- "type": "integer",
2754
- "minimum": 0,
2755
- "description": "Page number to return (0-based). When omitted, returns the first page."
2756
- },
2757
- "types": {
2758
- "type": "array",
2759
- "items": {
2760
- "type": "string",
2761
- "enum": [
2762
- "log",
2763
- "debug",
2764
- "info",
2765
- "error",
2766
- "warn",
2767
- "dir",
2768
- "dirxml",
2769
- "table",
2770
- "trace",
2771
- "clear",
2772
- "startGroup",
2773
- "startGroupCollapsed",
2774
- "endGroup",
2775
- "assert",
2776
- "profile",
2777
- "profileEnd",
2778
- "count",
2779
- "timeEnd",
2780
- "verbose"
2781
- ]
2782
- },
2783
- "description": "Filter messages to only return messages of the specified resource types. When omitted or empty, returns all messages."
2784
- },
2785
- "includePreservedMessages": {
2786
- "type": "boolean",
2787
- "default": false,
2788
- "description": "Set to true to return the preserved messages over the last 3 navigations."
2789
- }
2790
- },
2791
- "additionalProperties": false,
2792
- "$schema": "http://json-schema.org/draft-07/schema#"
2793
- }
2794
- },
2795
- {
2796
- "serverName": "chrome-devtools",
2797
- "name": "list_network_requests",
2798
- "description": "List all requests for the currently selected page since the last navigation.",
2799
- "inputSchema": {
2800
- "type": "object",
2801
- "properties": {
2802
- "pageSize": {
2803
- "type": "integer",
2804
- "exclusiveMinimum": 0,
2805
- "description": "Maximum number of requests to return. When omitted, returns all requests."
2806
- },
2807
- "pageIdx": {
2808
- "type": "integer",
2809
- "minimum": 0,
2810
- "description": "Page number to return (0-based). When omitted, returns the first page."
2811
- },
2812
- "resourceTypes": {
2813
- "type": "array",
2814
- "items": {
2815
- "type": "string",
2816
- "enum": [
2817
- "document",
2818
- "stylesheet",
2819
- "image",
2820
- "media",
2821
- "font",
2822
- "script",
2823
- "texttrack",
2824
- "xhr",
2825
- "fetch",
2826
- "prefetch",
2827
- "eventsource",
2828
- "websocket",
2829
- "manifest",
2830
- "signedexchange",
2831
- "ping",
2832
- "cspviolationreport",
2833
- "preflight",
2834
- "fedcm",
2835
- "other"
2836
- ]
2837
- },
2838
- "description": "Filter requests to only return requests of the specified resource types. When omitted or empty, returns all requests."
2839
- },
2840
- "includePreservedRequests": {
2841
- "type": "boolean",
2842
- "default": false,
2843
- "description": "Set to true to return the preserved requests over the last 3 navigations."
2844
- }
2845
- },
2846
- "additionalProperties": false,
2847
- "$schema": "http://json-schema.org/draft-07/schema#"
2848
- }
2849
- },
2850
- {
2851
- "serverName": "chrome-devtools",
2852
- "name": "list_pages",
2853
- "description": "Get a list of pages open in the browser.",
2854
- "inputSchema": {
2855
- "type": "object",
2856
- "properties": {},
2857
- "additionalProperties": false,
2858
- "$schema": "http://json-schema.org/draft-07/schema#"
2859
- }
2860
- },
2861
- {
2862
- "serverName": "chrome-devtools",
2863
- "name": "navigate_page",
2864
- "description": "Navigates the currently selected page to a URL.",
2865
- "inputSchema": {
2866
- "type": "object",
2867
- "properties": {
2868
- "type": {
2869
- "type": "string",
2870
- "enum": [
2871
- "url",
2872
- "back",
2873
- "forward",
2874
- "reload"
2875
- ],
2876
- "description": "Navigate the page by URL, back or forward in history, or reload."
2877
- },
2878
- "url": {
2879
- "type": "string",
2880
- "description": "Target URL (only type=url)"
2881
- },
2882
- "ignoreCache": {
2883
- "type": "boolean",
2884
- "description": "Whether to ignore cache on reload."
2885
- },
2886
- "timeout": {
2887
- "type": "integer",
2888
- "description": "Maximum wait time in milliseconds. If set to 0, the default timeout will be used."
2889
- }
2890
- },
2891
- "additionalProperties": false,
2892
- "$schema": "http://json-schema.org/draft-07/schema#"
2893
- }
2894
- },
2895
- {
2896
- "serverName": "chrome-devtools",
2897
- "name": "new_page",
2898
- "description": "Creates a new page",
2899
- "inputSchema": {
2900
- "type": "object",
2901
- "properties": {
2902
- "url": {
2903
- "type": "string",
2904
- "description": "URL to load in a new page."
2905
- },
2906
- "timeout": {
2907
- "type": "integer",
2908
- "description": "Maximum wait time in milliseconds. If set to 0, the default timeout will be used."
2909
- }
2910
- },
2911
- "required": [
2912
- "url"
2913
- ],
2914
- "additionalProperties": false,
2915
- "$schema": "http://json-schema.org/draft-07/schema#"
2916
- }
2917
- },
2918
- {
2919
- "serverName": "chrome-devtools",
2920
- "name": "performance_analyze_insight",
2921
- "description": "Provides more detailed information on a specific Performance Insight of an insight set that was highlighted in the results of a trace recording.",
2922
- "inputSchema": {
2923
- "type": "object",
2924
- "properties": {
2925
- "insightSetId": {
2926
- "type": "string",
2927
- "description": "The id for the specific insight set. Only use the ids given in the \"Available insight sets\" list."
2928
- },
2929
- "insightName": {
2930
- "type": "string",
2931
- "description": "The name of the Insight you want more information on. For example: \"DocumentLatency\" or \"LCPBreakdown\""
2932
- }
2933
- },
2934
- "required": [
2935
- "insightSetId",
2936
- "insightName"
2937
- ],
2938
- "additionalProperties": false,
2939
- "$schema": "http://json-schema.org/draft-07/schema#"
2940
- }
2941
- },
2942
- {
2943
- "serverName": "chrome-devtools",
2944
- "name": "performance_start_trace",
2945
- "description": "Starts a performance trace recording on the selected page. This can be used to look for performance problems and insights to improve the performance of the page. It will also report Core Web Vital (CWV) scores for the page.",
2946
- "inputSchema": {
2947
- "type": "object",
2948
- "properties": {
2949
- "reload": {
2950
- "type": "boolean",
2951
- "description": "Determines if, once tracing has started, the page should be automatically reloaded."
2952
- },
2953
- "autoStop": {
2954
- "type": "boolean",
2955
- "description": "Determines if the trace recording should be automatically stopped."
2956
- }
2957
- },
2958
- "required": [
2959
- "reload",
2960
- "autoStop"
2961
- ],
2962
- "additionalProperties": false,
2963
- "$schema": "http://json-schema.org/draft-07/schema#"
2964
- }
2965
- },
2966
- {
2967
- "serverName": "chrome-devtools",
2968
- "name": "performance_stop_trace",
2969
- "description": "Stops the active performance trace recording on the selected page.",
2970
- "inputSchema": {
2971
- "type": "object",
2972
- "properties": {},
2973
- "additionalProperties": false,
2974
- "$schema": "http://json-schema.org/draft-07/schema#"
2975
- }
2976
- },
2977
- {
2978
- "serverName": "chrome-devtools",
2979
- "name": "press_key",
2980
- "description": "Press a key or key combination. Use this when other input methods like fill() cannot be used (e.g., keyboard shortcuts, navigation keys, or special key combinations).",
2981
- "inputSchema": {
2982
- "type": "object",
2983
- "properties": {
2984
- "key": {
2985
- "type": "string",
2986
- "description": "A key or a combination (e.g., \"Enter\", \"Control+A\", \"Control++\", \"Control+Shift+R\"). Modifiers: Control, Shift, Alt, Meta"
2987
- }
2988
- },
2989
- "required": [
2990
- "key"
2991
- ],
2992
- "additionalProperties": false,
2993
- "$schema": "http://json-schema.org/draft-07/schema#"
2994
- }
2995
- },
2996
- {
2997
- "serverName": "chrome-devtools",
2998
- "name": "resize_page",
2999
- "description": "Resizes the selected page's window so that the page has specified dimension",
3000
- "inputSchema": {
3001
- "type": "object",
3002
- "properties": {
3003
- "width": {
3004
- "type": "number",
3005
- "description": "Page width"
3006
- },
3007
- "height": {
3008
- "type": "number",
3009
- "description": "Page height"
3010
- }
3011
- },
3012
- "required": [
3013
- "width",
3014
- "height"
3015
- ],
3016
- "additionalProperties": false,
3017
- "$schema": "http://json-schema.org/draft-07/schema#"
3018
- }
3019
- },
3020
- {
3021
- "serverName": "chrome-devtools",
3022
- "name": "select_page",
3023
- "description": "Select a page as a context for future tool calls.",
3024
- "inputSchema": {
3025
- "type": "object",
3026
- "properties": {
3027
- "pageIdx": {
3028
- "type": "number",
3029
- "description": "The index of the page to select. Call list_pages to list pages."
3030
- }
3031
- },
3032
- "required": [
3033
- "pageIdx"
3034
- ],
3035
- "additionalProperties": false,
3036
- "$schema": "http://json-schema.org/draft-07/schema#"
3037
- }
3038
- },
3039
- {
3040
- "serverName": "chrome-devtools",
3041
- "name": "take_screenshot",
3042
- "description": "Take a screenshot of the page or element.",
3043
- "inputSchema": {
3044
- "type": "object",
3045
- "properties": {
3046
- "format": {
3047
- "type": "string",
3048
- "enum": [
3049
- "png",
3050
- "jpeg",
3051
- "webp"
3052
- ],
3053
- "default": "png",
3054
- "description": "Type of format to save the screenshot as. Default is \"png\""
3055
- },
3056
- "quality": {
3057
- "type": "number",
3058
- "minimum": 0,
3059
- "maximum": 100,
3060
- "description": "Compression quality for JPEG and WebP formats (0-100). Higher values mean better quality but larger file sizes. Ignored for PNG format."
3061
- },
3062
- "uid": {
3063
- "type": "string",
3064
- "description": "The uid of an element on the page from the page content snapshot. If omitted takes a pages screenshot."
3065
- },
3066
- "fullPage": {
3067
- "type": "boolean",
3068
- "description": "If set to true takes a screenshot of the full page instead of the currently visible viewport. Incompatible with uid."
3069
- },
3070
- "filePath": {
3071
- "type": "string",
3072
- "description": "The absolute path, or a path relative to the current working directory, to save the screenshot to instead of attaching it to the response."
3073
- }
3074
- },
3075
- "additionalProperties": false,
3076
- "$schema": "http://json-schema.org/draft-07/schema#"
3077
- }
3078
- },
3079
- {
3080
- "serverName": "chrome-devtools",
3081
- "name": "take_snapshot",
3082
- "description": "Take a text snapshot of the currently selected page based on the a11y tree. The snapshot lists page elements along with a unique\nidentifier (uid). Always use the latest snapshot. Prefer taking a snapshot over taking a screenshot. The snapshot indicates the element selected\nin the DevTools Elements panel (if any).",
3083
- "inputSchema": {
3084
- "type": "object",
3085
- "properties": {
3086
- "verbose": {
3087
- "type": "boolean",
3088
- "description": "Whether to include all possible information available in the full a11y tree. Default is false."
3089
- },
3090
- "filePath": {
3091
- "type": "string",
3092
- "description": "The absolute path, or a path relative to the current working directory, to save the snapshot to instead of attaching it to the response."
3093
- }
3094
- },
3095
- "additionalProperties": false,
3096
- "$schema": "http://json-schema.org/draft-07/schema#"
3097
- }
3098
- },
3099
- {
3100
- "serverName": "chrome-devtools",
3101
- "name": "upload_file",
3102
- "description": "Upload a file through a provided element.",
3103
- "inputSchema": {
3104
- "type": "object",
3105
- "properties": {
3106
- "uid": {
3107
- "type": "string",
3108
- "description": "The uid of the file input element or an element that will open file chooser on the page from the page content snapshot"
3109
- },
3110
- "filePath": {
3111
- "type": "string",
3112
- "description": "The local path of the file to upload"
3113
- }
3114
- },
3115
- "required": [
3116
- "uid",
3117
- "filePath"
3118
- ],
3119
- "additionalProperties": false,
3120
- "$schema": "http://json-schema.org/draft-07/schema#"
3121
- }
3122
- },
3123
- {
3124
- "serverName": "chrome-devtools",
3125
- "name": "wait_for",
3126
- "description": "Wait for the specified text to appear on the selected page.",
3127
- "inputSchema": {
3128
- "type": "object",
3129
- "properties": {
3130
- "text": {
3131
- "type": "string",
3132
- "description": "Text to appear on the page"
3133
- },
3134
- "timeout": {
3135
- "type": "integer",
3136
- "description": "Maximum wait time in milliseconds. If set to 0, the default timeout will be used."
3137
- }
3138
- },
3139
- "required": [
3140
- "text"
3141
- ],
3142
- "additionalProperties": false,
3143
- "$schema": "http://json-schema.org/draft-07/schema#"
3144
- }
3145
- }
3146
- ]