cokit-cli 1.2.7 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1206) hide show
  1. package/README.md +8 -31
  2. package/agents/ck-brainstormer.agent.md +92 -0
  3. package/agents/ck-code-reviewer.agent.md +145 -0
  4. package/agents/ck-code-simplifier.agent.md +41 -0
  5. package/agents/ck-debugger.agent.md +142 -0
  6. package/agents/ck-docs-manager.agent.md +209 -0
  7. package/agents/ck-fullstack-developer.agent.md +106 -0
  8. package/agents/ck-git-manager.agent.md +7 -0
  9. package/agents/ck-planner.agent.md +104 -0
  10. package/agents/ck-project-manager.agent.md +24 -0
  11. package/agents/ck-researcher.agent.md +48 -0
  12. package/agents/ck-tester.agent.md +139 -0
  13. package/agents/ck-ui-ux-designer.agent.md +200 -0
  14. package/docs/README.md +8 -16
  15. package/docs/Skills Orchestration Layer - Training Slides - en.pdf +0 -0
  16. package/docs/Skills Orchestration Layer - Training Slides - vi.pdf +0 -0
  17. package/docs/code-standards.md +1 -2
  18. package/docs/codebase-summary.md +35 -66
  19. package/docs/cokit-commands-usage-guide.md +27 -73
  20. package/docs/cokit-sync-and-maintenance-guide.md +43 -191
  21. package/docs/copilot-processing-flow.md +18 -18
  22. package/docs/migration-guide.md +14 -14
  23. package/docs/project-overview-pdr.md +5 -6
  24. package/docs/project-roadmap.md +12 -14
  25. package/docs/system-architecture.md +13 -17
  26. package/docs/upstream-porting-rules.md +182 -0
  27. package/package.json +3 -4
  28. package/prompts/ck-ask.prompt.md +0 -1
  29. package/prompts/ck-bootstrap.prompt.md +12 -15
  30. package/prompts/ck-brainstorm.prompt.md +0 -1
  31. package/prompts/ck-cook.prompt.md +11 -12
  32. package/prompts/ck-debug.prompt.md +0 -1
  33. package/prompts/ck-deploy.prompt.md +22 -0
  34. package/prompts/ck-docs.prompt.md +0 -1
  35. package/prompts/ck-fix-fast.prompt.md +1 -1
  36. package/prompts/ck-fix-hard.prompt.md +2 -2
  37. package/prompts/ck-frontend.prompt.md +20 -0
  38. package/prompts/ck-help.prompt.md +0 -1
  39. package/prompts/ck-plan-fast.prompt.md +1 -4
  40. package/prompts/ck-plan-hard.prompt.md +3 -6
  41. package/prompts/ck-plan-red-team.prompt.md +1 -1
  42. package/prompts/ck-plan.prompt.md +0 -3
  43. package/prompts/ck-project.prompt.md +20 -0
  44. package/prompts/ck-review.prompt.md +4 -7
  45. package/prompts/ck-scout.prompt.md +0 -1
  46. package/prompts/ck-security.prompt.md +22 -0
  47. package/prompts/ck-ship.prompt.md +22 -0
  48. package/prompts/ck-test.prompt.md +1 -3
  49. package/prompts/ck-watzup.prompt.md +0 -1
  50. package/skills/ck-agent-browser/SKILL.md +294 -0
  51. package/skills/ck-agent-browser/references/agent-browser-vs-chrome-devtools.md +112 -0
  52. package/skills/ck-backend-development/SKILL.md +94 -0
  53. package/skills/ck-bootstrap/SKILL.md +102 -0
  54. package/skills/ck-bootstrap/references/shared-phases.md +59 -0
  55. package/skills/ck-bootstrap/references/workflow-auto.md +52 -0
  56. package/skills/ck-bootstrap/references/workflow-fast.md +50 -0
  57. package/skills/ck-bootstrap/references/workflow-full.md +60 -0
  58. package/skills/ck-bootstrap/references/workflow-parallel.md +59 -0
  59. package/skills/ck-brainstorm/SKILL.md +122 -0
  60. package/skills/ck-chrome-devtools/SKILL.md +630 -0
  61. package/skills/ck-chrome-devtools/references/cdp-domains.md +694 -0
  62. package/skills/ck-chrome-devtools/references/performance-guide.md +940 -0
  63. package/skills/ck-chrome-devtools/references/puppeteer-reference.md +953 -0
  64. package/skills/ck-chrome-devtools/scripts/README.md +290 -0
  65. package/skills/ck-chrome-devtools/scripts/aria-snapshot.js +363 -0
  66. package/skills/ck-chrome-devtools/scripts/click.js +84 -0
  67. package/skills/ck-chrome-devtools/scripts/connect-chrome.js +146 -0
  68. package/skills/ck-chrome-devtools/scripts/console.js +81 -0
  69. package/skills/ck-chrome-devtools/scripts/evaluate.js +56 -0
  70. package/skills/ck-chrome-devtools/scripts/fill.js +77 -0
  71. package/skills/ck-chrome-devtools/scripts/import-cookies.js +205 -0
  72. package/skills/ck-chrome-devtools/scripts/inject-auth.js +230 -0
  73. package/skills/ck-chrome-devtools/scripts/install-deps.sh +181 -0
  74. package/skills/ck-chrome-devtools/scripts/install.sh +83 -0
  75. package/skills/ck-chrome-devtools/scripts/navigate.js +138 -0
  76. package/skills/ck-chrome-devtools/scripts/network.js +108 -0
  77. package/skills/ck-chrome-devtools/scripts/package-lock.json +1595 -0
  78. package/skills/ck-chrome-devtools/scripts/package.json +16 -0
  79. package/skills/ck-chrome-devtools/scripts/performance.js +151 -0
  80. package/skills/ck-chrome-devtools/scripts/screenshot.js +199 -0
  81. package/skills/ck-chrome-devtools/scripts/select-ref.js +132 -0
  82. package/skills/ck-chrome-devtools/scripts/snapshot.js +136 -0
  83. package/skills/ck-chrome-devtools/scripts/ws-debug.js +44 -0
  84. package/skills/ck-chrome-devtools/scripts/ws-full-debug.js +107 -0
  85. package/skills/ck-code-review/SKILL.md +196 -0
  86. package/skills/ck-code-review/references/adversarial-review.md +223 -0
  87. package/skills/ck-code-review/references/checklist-workflow.md +100 -0
  88. package/skills/ck-code-review/references/checklists/api.md +52 -0
  89. package/skills/ck-code-review/references/checklists/base.md +100 -0
  90. package/skills/ck-code-review/references/checklists/web-app.md +54 -0
  91. package/skills/ck-code-review/references/code-review-reception.md +113 -0
  92. package/skills/ck-code-review/references/codebase-scan-workflow.md +30 -0
  93. package/skills/ck-code-review/references/edge-case-scouting.md +119 -0
  94. package/skills/ck-code-review/references/input-mode-resolution.md +135 -0
  95. package/skills/ck-code-review/references/parallel-review-workflow.md +76 -0
  96. package/skills/ck-code-review/references/requesting-code-review.md +116 -0
  97. package/skills/ck-code-review/references/spec-compliance-review.md +43 -0
  98. package/skills/ck-code-review/references/task-management-reviews.md +155 -0
  99. package/skills/ck-common/README.md +110 -0
  100. package/skills/ck-common/api_key_helper.py +381 -0
  101. package/skills/ck-context-engineering/SKILL.md +107 -0
  102. package/skills/ck-context-engineering/references/context-degradation.md +93 -0
  103. package/skills/ck-context-engineering/references/runtime-awareness.md +160 -0
  104. package/skills/ck-cook/README.md +86 -0
  105. package/skills/ck-cook/SKILL.md +155 -0
  106. package/skills/ck-cook/references/intent-detection.md +101 -0
  107. package/skills/ck-cook/references/review-cycle.md +75 -0
  108. package/skills/ck-cook/references/subagent-patterns.md +75 -0
  109. package/skills/ck-cook/references/workflow-steps.md +192 -0
  110. package/skills/ck-databases/SKILL.md +84 -0
  111. package/skills/ck-databases/db-design.md +188 -0
  112. package/skills/ck-debug/SKILL.md +120 -0
  113. package/skills/ck-debug/references/frontend-verification.md +103 -0
  114. package/skills/ck-debug/references/investigation-methodology.md +101 -0
  115. package/skills/ck-debug/references/log-and-ci-analysis.md +97 -0
  116. package/skills/ck-debug/references/performance-diagnostics.md +113 -0
  117. package/skills/ck-debug/references/reporting-standards.md +122 -0
  118. package/skills/ck-debug/references/task-management-debugging.md +155 -0
  119. package/skills/ck-deploy/SKILL.md +154 -0
  120. package/skills/ck-deploy/references/platform-config-templates.md +35 -0
  121. package/skills/ck-deploy/references/platforms/aws.md +58 -0
  122. package/skills/ck-deploy/references/platforms/cloudflare.md +41 -0
  123. package/skills/ck-deploy/references/platforms/coolify.md +32 -0
  124. package/skills/ck-deploy/references/platforms/digitalocean.md +45 -0
  125. package/skills/ck-deploy/references/platforms/dokploy.md +29 -0
  126. package/skills/ck-deploy/references/platforms/flyio.md +54 -0
  127. package/skills/ck-deploy/references/platforms/gcp.md +45 -0
  128. package/skills/ck-deploy/references/platforms/github-pages.md +56 -0
  129. package/skills/ck-deploy/references/platforms/heroku.md +31 -0
  130. package/skills/ck-deploy/references/platforms/netlify.md +39 -0
  131. package/skills/ck-deploy/references/platforms/railway.md +38 -0
  132. package/skills/ck-deploy/references/platforms/render.md +39 -0
  133. package/skills/ck-deploy/references/platforms/tose.md +35 -0
  134. package/skills/ck-deploy/references/platforms/vercel.md +37 -0
  135. package/skills/ck-deploy/references/platforms/vultr.md +27 -0
  136. package/skills/ck-devops/SKILL.md +96 -0
  137. package/skills/ck-docs-seeker/SKILL.md +97 -0
  138. package/skills/ck-docs-seeker/references/context7-patterns.md +68 -0
  139. package/skills/ck-docs-seeker/scripts/fetch-docs.js +213 -0
  140. package/skills/ck-docs-seeker/scripts/utils/env-loader.js +94 -0
  141. package/skills/ck-docs-seeker/workflows/library-search.md +87 -0
  142. package/skills/ck-fix/SKILL.md +209 -0
  143. package/skills/ck-fix/references/complexity-assessment.md +73 -0
  144. package/skills/ck-fix/references/diagnosis-protocol.md +133 -0
  145. package/skills/ck-fix/references/mode-selection.md +46 -0
  146. package/skills/ck-fix/references/parallel-exploration.md +100 -0
  147. package/skills/ck-fix/references/prevention-gate.md +87 -0
  148. package/skills/ck-fix/references/review-cycle.md +77 -0
  149. package/skills/ck-fix/references/skill-activation-matrix.md +98 -0
  150. package/skills/ck-fix/references/task-orchestration.md +110 -0
  151. package/skills/ck-fix/references/workflow-ci.md +28 -0
  152. package/skills/ck-fix/references/workflow-deep.md +154 -0
  153. package/skills/ck-fix/references/workflow-logs.md +72 -0
  154. package/skills/ck-fix/references/workflow-quick.md +82 -0
  155. package/skills/ck-fix/references/workflow-standard.md +120 -0
  156. package/skills/ck-fix/references/workflow-test.md +75 -0
  157. package/skills/ck-fix/references/workflow-ui.md +72 -0
  158. package/skills/ck-frontend-design/SKILL.md +109 -0
  159. package/skills/ck-frontend-design/references/ai-multimodal-overview.md +165 -0
  160. package/skills/ck-frontend-design/references/anti-slop-rules.md +103 -0
  161. package/skills/ck-frontend-design/references/asset-generation.md +337 -0
  162. package/skills/ck-frontend-design/references/bento-motion-engine.md +142 -0
  163. package/skills/ck-frontend-design/references/magicui-components.md +129 -0
  164. package/skills/ck-frontend-design/references/performance-guardrails.md +169 -0
  165. package/skills/ck-frontend-design/references/premium-design-patterns.md +93 -0
  166. package/skills/ck-frontend-design/references/redesign-audit-checklist.md +114 -0
  167. package/skills/ck-frontend-design/references/visual-analysis-overview.md +95 -0
  168. package/skills/ck-frontend-design/references/workflow-3d.md +98 -0
  169. package/skills/ck-frontend-design/references/workflow-describe.md +87 -0
  170. package/skills/ck-frontend-design/references/workflow-immersive.md +82 -0
  171. package/skills/ck-frontend-design/references/workflow-quick.md +52 -0
  172. package/skills/ck-frontend-design/references/workflow-screenshot.md +63 -0
  173. package/skills/ck-frontend-design/references/workflow-video.md +74 -0
  174. package/skills/ck-frontend-development/SKILL.md +400 -0
  175. package/skills/ck-frontend-development/resources/common-patterns.md +331 -0
  176. package/skills/ck-frontend-development/resources/complete-examples.md +872 -0
  177. package/skills/ck-frontend-development/resources/component-patterns.md +502 -0
  178. package/skills/ck-frontend-development/resources/data-fetching.md +767 -0
  179. package/skills/ck-frontend-development/resources/file-organization.md +502 -0
  180. package/skills/ck-frontend-development/resources/loading-and-error-states.md +501 -0
  181. package/skills/ck-frontend-development/resources/performance.md +406 -0
  182. package/skills/ck-frontend-development/resources/routing-guide.md +364 -0
  183. package/skills/ck-frontend-development/resources/styling-guide.md +428 -0
  184. package/skills/ck-frontend-development/resources/typescript-standards.md +418 -0
  185. package/skills/ck-git/SKILL.md +113 -0
  186. package/skills/ck-git/references/commit-standards.md +46 -0
  187. package/skills/ck-git/references/workflow-commit.md +58 -0
  188. package/skills/ck-git/references/workflow-merge.md +48 -0
  189. package/skills/ck-git/references/workflow-pr.md +58 -0
  190. package/skills/ck-git/references/workflow-push.md +52 -0
  191. package/skills/ck-mcp-management/README.md +219 -0
  192. package/skills/ck-mcp-management/SKILL.md +210 -0
  193. package/skills/ck-mcp-management/references/configuration.md +114 -0
  194. package/skills/ck-mcp-management/references/gemini-cli-integration.md +221 -0
  195. package/skills/ck-mcp-management/scripts/.env.example +10 -0
  196. package/skills/ck-mcp-management/scripts/dist/mcp-client.js +183 -0
  197. package/skills/ck-mcp-management/scripts/mcp-client.ts +230 -0
  198. package/skills/ck-mermaidjs-v11/SKILL.md +116 -0
  199. package/skills/ck-planning/SKILL.md +194 -0
  200. package/skills/ck-planning/references/archive-workflow.md +53 -0
  201. package/skills/ck-planning/references/codebase-understanding.md +62 -0
  202. package/skills/ck-planning/references/output-standards.md +145 -0
  203. package/skills/ck-planning/references/plan-organization.md +182 -0
  204. package/skills/ck-planning/references/red-team-personas.md +69 -0
  205. package/skills/ck-planning/references/red-team-workflow.md +77 -0
  206. package/skills/ck-planning/references/research-phase.md +49 -0
  207. package/skills/ck-planning/references/scope-challenge.md +90 -0
  208. package/skills/ck-planning/references/task-management.md +134 -0
  209. package/skills/ck-planning/references/validate-question-framework.md +80 -0
  210. package/skills/ck-planning/references/validate-workflow.md +65 -0
  211. package/skills/ck-planning/references/workflow-modes.md +154 -0
  212. package/skills/ck-problem-solving/SKILL.md +96 -0
  213. package/skills/ck-project-management/SKILL.md +133 -0
  214. package/skills/ck-project-management/references/documentation-triggers.md +60 -0
  215. package/skills/ck-project-management/references/hydration-workflow.md +89 -0
  216. package/skills/ck-project-management/references/progress-tracking.md +120 -0
  217. package/skills/ck-project-management/references/reporting-patterns.md +94 -0
  218. package/skills/ck-project-management/references/task-operations.md +87 -0
  219. package/skills/ck-repomix/SKILL.md +248 -0
  220. package/skills/ck-repomix/references/usage-patterns.md +232 -0
  221. package/skills/ck-repomix/scripts/README.md +179 -0
  222. package/skills/ck-repomix/scripts/repomix_batch.py +455 -0
  223. package/skills/ck-research/SKILL.md +172 -0
  224. package/skills/ck-scout/SKILL.md +91 -0
  225. package/skills/ck-scout/references/external-scouting.md +140 -0
  226. package/skills/ck-scout/references/internal-scouting.md +119 -0
  227. package/skills/ck-scout/references/task-management-scouting.md +125 -0
  228. package/skills/ck-security/SKILL.md +139 -0
  229. package/skills/ck-security/references/stride-owasp-checklist.md +128 -0
  230. package/skills/ck-sequential-thinking/README.md +183 -0
  231. package/skills/ck-sequential-thinking/SKILL.md +94 -0
  232. package/skills/ck-sequential-thinking/package.json +31 -0
  233. package/skills/ck-ship/SKILL.md +116 -0
  234. package/skills/ck-ship/references/auto-detect.md +103 -0
  235. package/skills/ck-ship/references/pr-template.md +90 -0
  236. package/skills/ck-ship/references/ship-workflow.md +241 -0
  237. package/skills/ck-test/SKILL.md +111 -0
  238. package/skills/ck-test/references/report-format.md +58 -0
  239. package/skills/ck-test/references/test-execution-workflow.md +103 -0
  240. package/skills/ck-test/references/ui-testing-workflow.md +65 -0
  241. package/skills/ck-ui-styling/SKILL.md +321 -0
  242. package/skills/ck-web-testing/SKILL.md +96 -0
  243. package/templates/repo/.github/agents/ck-brainstormer.agent.md +92 -0
  244. package/templates/repo/.github/agents/ck-code-reviewer.agent.md +145 -0
  245. package/templates/repo/.github/agents/ck-code-simplifier.agent.md +41 -0
  246. package/templates/repo/.github/agents/ck-debugger.agent.md +142 -0
  247. package/templates/repo/.github/agents/ck-docs-manager.agent.md +209 -0
  248. package/templates/repo/.github/agents/ck-fullstack-developer.agent.md +106 -0
  249. package/templates/repo/.github/agents/ck-git-manager.agent.md +7 -0
  250. package/templates/repo/.github/agents/ck-planner.agent.md +104 -0
  251. package/templates/repo/.github/agents/ck-project-manager.agent.md +24 -0
  252. package/templates/repo/.github/agents/ck-researcher.agent.md +48 -0
  253. package/templates/repo/.github/agents/ck-tester.agent.md +139 -0
  254. package/templates/repo/.github/agents/ck-ui-ux-designer.agent.md +200 -0
  255. package/templates/repo/.github/prompts/ck-ask.prompt.md +0 -1
  256. package/templates/repo/.github/prompts/ck-bootstrap.prompt.md +12 -15
  257. package/templates/repo/.github/prompts/ck-brainstorm.prompt.md +0 -1
  258. package/templates/repo/.github/prompts/ck-cook.prompt.md +11 -12
  259. package/templates/repo/.github/prompts/ck-debug.prompt.md +0 -1
  260. package/templates/repo/.github/prompts/ck-deploy.prompt.md +22 -0
  261. package/templates/repo/.github/prompts/ck-docs.prompt.md +0 -1
  262. package/templates/repo/.github/prompts/ck-fix-fast.prompt.md +1 -1
  263. package/templates/repo/.github/prompts/ck-fix-hard.prompt.md +2 -2
  264. package/templates/repo/.github/prompts/ck-frontend.prompt.md +20 -0
  265. package/templates/repo/.github/prompts/ck-help.prompt.md +0 -1
  266. package/templates/repo/.github/prompts/ck-plan-fast.prompt.md +1 -4
  267. package/templates/repo/.github/prompts/ck-plan-hard.prompt.md +3 -6
  268. package/templates/repo/.github/prompts/ck-plan-red-team.prompt.md +1 -1
  269. package/templates/repo/.github/prompts/ck-plan.prompt.md +0 -3
  270. package/templates/repo/.github/prompts/ck-project.prompt.md +20 -0
  271. package/templates/repo/.github/prompts/ck-review.prompt.md +4 -7
  272. package/templates/repo/.github/prompts/ck-scout.prompt.md +0 -1
  273. package/templates/repo/.github/prompts/ck-security.prompt.md +22 -0
  274. package/templates/repo/.github/prompts/ck-ship.prompt.md +22 -0
  275. package/templates/repo/.github/prompts/ck-test.prompt.md +1 -3
  276. package/templates/repo/.github/prompts/ck-watzup.prompt.md +0 -1
  277. package/templates/repo/.github/skills/ck-agent-browser/SKILL.md +294 -0
  278. package/templates/repo/.github/skills/ck-agent-browser/references/agent-browser-vs-chrome-devtools.md +112 -0
  279. package/templates/repo/.github/skills/ck-backend-development/SKILL.md +94 -0
  280. package/templates/repo/.github/skills/ck-bootstrap/SKILL.md +102 -0
  281. package/templates/repo/.github/skills/ck-bootstrap/references/shared-phases.md +59 -0
  282. package/templates/repo/.github/skills/ck-bootstrap/references/workflow-auto.md +52 -0
  283. package/templates/repo/.github/skills/ck-bootstrap/references/workflow-fast.md +50 -0
  284. package/templates/repo/.github/skills/ck-bootstrap/references/workflow-full.md +60 -0
  285. package/templates/repo/.github/skills/ck-bootstrap/references/workflow-parallel.md +59 -0
  286. package/templates/repo/.github/skills/ck-brainstorm/SKILL.md +122 -0
  287. package/templates/repo/.github/skills/ck-chrome-devtools/SKILL.md +630 -0
  288. package/templates/repo/.github/skills/ck-chrome-devtools/references/cdp-domains.md +694 -0
  289. package/templates/repo/.github/skills/ck-chrome-devtools/references/performance-guide.md +940 -0
  290. package/templates/repo/.github/skills/ck-chrome-devtools/references/puppeteer-reference.md +953 -0
  291. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/README.md +290 -0
  292. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/aria-snapshot.js +363 -0
  293. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/click.js +84 -0
  294. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/connect-chrome.js +146 -0
  295. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/console.js +81 -0
  296. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/evaluate.js +56 -0
  297. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/fill.js +77 -0
  298. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/import-cookies.js +205 -0
  299. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/inject-auth.js +230 -0
  300. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/install-deps.sh +181 -0
  301. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/install.sh +83 -0
  302. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/navigate.js +138 -0
  303. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/network.js +108 -0
  304. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/package-lock.json +1595 -0
  305. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/package.json +16 -0
  306. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/performance.js +151 -0
  307. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/screenshot.js +199 -0
  308. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/select-ref.js +132 -0
  309. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/snapshot.js +136 -0
  310. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/ws-debug.js +44 -0
  311. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/ws-full-debug.js +107 -0
  312. package/templates/repo/.github/skills/ck-code-review/SKILL.md +196 -0
  313. package/templates/repo/.github/skills/ck-code-review/references/adversarial-review.md +223 -0
  314. package/templates/repo/.github/skills/ck-code-review/references/checklist-workflow.md +100 -0
  315. package/templates/repo/.github/skills/ck-code-review/references/checklists/api.md +52 -0
  316. package/templates/repo/.github/skills/ck-code-review/references/checklists/base.md +100 -0
  317. package/templates/repo/.github/skills/ck-code-review/references/checklists/web-app.md +54 -0
  318. package/templates/repo/.github/skills/ck-code-review/references/code-review-reception.md +113 -0
  319. package/templates/repo/.github/skills/ck-code-review/references/codebase-scan-workflow.md +30 -0
  320. package/templates/repo/.github/skills/ck-code-review/references/edge-case-scouting.md +119 -0
  321. package/templates/repo/.github/skills/ck-code-review/references/input-mode-resolution.md +135 -0
  322. package/templates/repo/.github/skills/ck-code-review/references/parallel-review-workflow.md +76 -0
  323. package/templates/repo/.github/skills/ck-code-review/references/requesting-code-review.md +116 -0
  324. package/templates/repo/.github/skills/ck-code-review/references/spec-compliance-review.md +43 -0
  325. package/templates/repo/.github/skills/ck-code-review/references/task-management-reviews.md +155 -0
  326. package/templates/repo/.github/skills/ck-common/README.md +110 -0
  327. package/templates/repo/.github/skills/ck-common/api_key_helper.py +381 -0
  328. package/templates/repo/.github/skills/ck-context-engineering/SKILL.md +107 -0
  329. package/templates/repo/.github/skills/ck-context-engineering/references/context-degradation.md +93 -0
  330. package/templates/repo/.github/skills/ck-context-engineering/references/runtime-awareness.md +160 -0
  331. package/templates/repo/.github/skills/ck-cook/README.md +86 -0
  332. package/templates/repo/.github/skills/ck-cook/SKILL.md +155 -0
  333. package/templates/repo/.github/skills/ck-cook/references/intent-detection.md +101 -0
  334. package/templates/repo/.github/skills/ck-cook/references/review-cycle.md +75 -0
  335. package/templates/repo/.github/skills/ck-cook/references/subagent-patterns.md +75 -0
  336. package/templates/repo/.github/skills/ck-cook/references/workflow-steps.md +192 -0
  337. package/templates/repo/.github/skills/ck-databases/SKILL.md +84 -0
  338. package/templates/repo/.github/skills/ck-databases/db-design.md +188 -0
  339. package/templates/repo/.github/skills/ck-debug/SKILL.md +120 -0
  340. package/templates/repo/.github/skills/ck-debug/references/frontend-verification.md +103 -0
  341. package/templates/repo/.github/skills/ck-debug/references/investigation-methodology.md +101 -0
  342. package/templates/repo/.github/skills/ck-debug/references/log-and-ci-analysis.md +97 -0
  343. package/templates/repo/.github/skills/ck-debug/references/performance-diagnostics.md +113 -0
  344. package/templates/repo/.github/skills/ck-debug/references/reporting-standards.md +122 -0
  345. package/templates/repo/.github/skills/ck-debug/references/task-management-debugging.md +155 -0
  346. package/templates/repo/.github/skills/ck-deploy/SKILL.md +154 -0
  347. package/templates/repo/.github/skills/ck-deploy/references/platform-config-templates.md +35 -0
  348. package/templates/repo/.github/skills/ck-deploy/references/platforms/aws.md +58 -0
  349. package/templates/repo/.github/skills/ck-deploy/references/platforms/cloudflare.md +41 -0
  350. package/templates/repo/.github/skills/ck-deploy/references/platforms/coolify.md +32 -0
  351. package/templates/repo/.github/skills/ck-deploy/references/platforms/digitalocean.md +45 -0
  352. package/templates/repo/.github/skills/ck-deploy/references/platforms/dokploy.md +29 -0
  353. package/templates/repo/.github/skills/ck-deploy/references/platforms/flyio.md +54 -0
  354. package/templates/repo/.github/skills/ck-deploy/references/platforms/gcp.md +45 -0
  355. package/templates/repo/.github/skills/ck-deploy/references/platforms/github-pages.md +56 -0
  356. package/templates/repo/.github/skills/ck-deploy/references/platforms/heroku.md +31 -0
  357. package/templates/repo/.github/skills/ck-deploy/references/platforms/netlify.md +39 -0
  358. package/templates/repo/.github/skills/ck-deploy/references/platforms/railway.md +38 -0
  359. package/templates/repo/.github/skills/ck-deploy/references/platforms/render.md +39 -0
  360. package/templates/repo/.github/skills/ck-deploy/references/platforms/tose.md +35 -0
  361. package/templates/repo/.github/skills/ck-deploy/references/platforms/vercel.md +37 -0
  362. package/templates/repo/.github/skills/ck-deploy/references/platforms/vultr.md +27 -0
  363. package/templates/repo/.github/skills/ck-devops/SKILL.md +96 -0
  364. package/templates/repo/.github/skills/ck-docs-seeker/SKILL.md +97 -0
  365. package/templates/repo/.github/skills/ck-docs-seeker/references/context7-patterns.md +68 -0
  366. package/templates/repo/.github/skills/ck-docs-seeker/scripts/fetch-docs.js +213 -0
  367. package/templates/repo/.github/skills/ck-docs-seeker/scripts/utils/env-loader.js +94 -0
  368. package/templates/repo/.github/skills/ck-docs-seeker/workflows/library-search.md +87 -0
  369. package/templates/repo/.github/skills/ck-fix/SKILL.md +209 -0
  370. package/templates/repo/.github/skills/ck-fix/references/complexity-assessment.md +73 -0
  371. package/templates/repo/.github/skills/ck-fix/references/diagnosis-protocol.md +133 -0
  372. package/templates/repo/.github/skills/ck-fix/references/mode-selection.md +46 -0
  373. package/templates/repo/.github/skills/ck-fix/references/parallel-exploration.md +100 -0
  374. package/templates/repo/.github/skills/ck-fix/references/prevention-gate.md +87 -0
  375. package/templates/repo/.github/skills/ck-fix/references/review-cycle.md +77 -0
  376. package/templates/repo/.github/skills/ck-fix/references/skill-activation-matrix.md +98 -0
  377. package/templates/repo/.github/skills/ck-fix/references/task-orchestration.md +110 -0
  378. package/templates/repo/.github/skills/ck-fix/references/workflow-ci.md +28 -0
  379. package/templates/repo/.github/skills/ck-fix/references/workflow-deep.md +154 -0
  380. package/templates/repo/.github/skills/ck-fix/references/workflow-logs.md +72 -0
  381. package/templates/repo/.github/skills/ck-fix/references/workflow-quick.md +82 -0
  382. package/templates/repo/.github/skills/ck-fix/references/workflow-standard.md +120 -0
  383. package/templates/repo/.github/skills/ck-fix/references/workflow-test.md +75 -0
  384. package/templates/repo/.github/skills/ck-fix/references/workflow-ui.md +72 -0
  385. package/templates/repo/.github/skills/ck-frontend-design/SKILL.md +109 -0
  386. package/templates/repo/.github/skills/ck-frontend-design/references/ai-multimodal-overview.md +165 -0
  387. package/templates/repo/.github/skills/ck-frontend-design/references/anti-slop-rules.md +103 -0
  388. package/templates/repo/.github/skills/ck-frontend-design/references/asset-generation.md +337 -0
  389. package/templates/repo/.github/skills/ck-frontend-design/references/bento-motion-engine.md +142 -0
  390. package/templates/repo/.github/skills/ck-frontend-design/references/magicui-components.md +129 -0
  391. package/templates/repo/.github/skills/ck-frontend-design/references/performance-guardrails.md +169 -0
  392. package/templates/repo/.github/skills/ck-frontend-design/references/premium-design-patterns.md +93 -0
  393. package/templates/repo/.github/skills/ck-frontend-design/references/redesign-audit-checklist.md +114 -0
  394. package/templates/repo/.github/skills/ck-frontend-design/references/visual-analysis-overview.md +95 -0
  395. package/templates/repo/.github/skills/ck-frontend-design/references/workflow-3d.md +98 -0
  396. package/templates/repo/.github/skills/ck-frontend-design/references/workflow-describe.md +87 -0
  397. package/templates/repo/.github/skills/ck-frontend-design/references/workflow-immersive.md +82 -0
  398. package/templates/repo/.github/skills/ck-frontend-design/references/workflow-quick.md +52 -0
  399. package/templates/repo/.github/skills/ck-frontend-design/references/workflow-screenshot.md +63 -0
  400. package/templates/repo/.github/skills/ck-frontend-design/references/workflow-video.md +74 -0
  401. package/templates/repo/.github/skills/ck-frontend-development/SKILL.md +400 -0
  402. package/templates/repo/.github/skills/ck-frontend-development/resources/common-patterns.md +331 -0
  403. package/templates/repo/.github/skills/ck-frontend-development/resources/complete-examples.md +872 -0
  404. package/templates/repo/.github/skills/ck-frontend-development/resources/component-patterns.md +502 -0
  405. package/templates/repo/.github/skills/ck-frontend-development/resources/data-fetching.md +767 -0
  406. package/templates/repo/.github/skills/ck-frontend-development/resources/file-organization.md +502 -0
  407. package/templates/repo/.github/skills/ck-frontend-development/resources/loading-and-error-states.md +501 -0
  408. package/templates/repo/.github/skills/ck-frontend-development/resources/performance.md +406 -0
  409. package/templates/repo/.github/skills/ck-frontend-development/resources/routing-guide.md +364 -0
  410. package/templates/repo/.github/skills/ck-frontend-development/resources/styling-guide.md +428 -0
  411. package/templates/repo/.github/skills/ck-frontend-development/resources/typescript-standards.md +418 -0
  412. package/templates/repo/.github/skills/ck-git/SKILL.md +113 -0
  413. package/templates/repo/.github/skills/ck-git/references/commit-standards.md +46 -0
  414. package/templates/repo/.github/skills/ck-git/references/workflow-commit.md +58 -0
  415. package/templates/repo/.github/skills/ck-git/references/workflow-merge.md +48 -0
  416. package/templates/repo/.github/skills/ck-git/references/workflow-pr.md +58 -0
  417. package/templates/repo/.github/skills/ck-git/references/workflow-push.md +52 -0
  418. package/templates/repo/.github/skills/ck-mcp-management/README.md +219 -0
  419. package/templates/repo/.github/skills/ck-mcp-management/SKILL.md +210 -0
  420. package/templates/repo/.github/skills/ck-mcp-management/references/configuration.md +114 -0
  421. package/templates/repo/.github/skills/ck-mcp-management/references/gemini-cli-integration.md +221 -0
  422. package/templates/repo/.github/skills/ck-mcp-management/scripts/.env.example +10 -0
  423. package/templates/repo/.github/skills/ck-mcp-management/scripts/mcp-client.ts +230 -0
  424. package/templates/repo/.github/skills/ck-mermaidjs-v11/SKILL.md +116 -0
  425. package/templates/repo/.github/skills/ck-planning/SKILL.md +194 -0
  426. package/templates/repo/.github/skills/ck-planning/references/archive-workflow.md +53 -0
  427. package/templates/repo/.github/skills/ck-planning/references/codebase-understanding.md +62 -0
  428. package/templates/repo/.github/skills/ck-planning/references/output-standards.md +145 -0
  429. package/templates/repo/.github/skills/ck-planning/references/plan-organization.md +182 -0
  430. package/templates/repo/.github/skills/ck-planning/references/red-team-personas.md +69 -0
  431. package/templates/repo/.github/skills/ck-planning/references/red-team-workflow.md +77 -0
  432. package/templates/repo/.github/skills/ck-planning/references/research-phase.md +49 -0
  433. package/templates/repo/.github/skills/ck-planning/references/scope-challenge.md +90 -0
  434. package/templates/repo/.github/skills/ck-planning/references/task-management.md +134 -0
  435. package/templates/repo/.github/skills/ck-planning/references/validate-question-framework.md +80 -0
  436. package/templates/repo/.github/skills/ck-planning/references/validate-workflow.md +65 -0
  437. package/templates/repo/.github/skills/ck-planning/references/workflow-modes.md +154 -0
  438. package/templates/repo/.github/skills/ck-problem-solving/SKILL.md +96 -0
  439. package/templates/repo/.github/skills/ck-project-management/SKILL.md +133 -0
  440. package/templates/repo/.github/skills/ck-project-management/references/documentation-triggers.md +60 -0
  441. package/templates/repo/.github/skills/ck-project-management/references/hydration-workflow.md +89 -0
  442. package/templates/repo/.github/skills/ck-project-management/references/progress-tracking.md +120 -0
  443. package/templates/repo/.github/skills/ck-project-management/references/reporting-patterns.md +94 -0
  444. package/templates/repo/.github/skills/ck-project-management/references/task-operations.md +87 -0
  445. package/templates/repo/.github/skills/ck-repomix/SKILL.md +248 -0
  446. package/templates/repo/.github/skills/ck-repomix/references/usage-patterns.md +232 -0
  447. package/templates/repo/.github/skills/ck-repomix/scripts/README.md +179 -0
  448. package/templates/repo/.github/skills/ck-repomix/scripts/repomix_batch.py +455 -0
  449. package/templates/repo/.github/skills/ck-research/SKILL.md +172 -0
  450. package/templates/repo/.github/skills/ck-scout/SKILL.md +91 -0
  451. package/templates/repo/.github/skills/ck-scout/references/external-scouting.md +140 -0
  452. package/templates/repo/.github/skills/ck-scout/references/internal-scouting.md +119 -0
  453. package/templates/repo/.github/skills/ck-scout/references/task-management-scouting.md +125 -0
  454. package/templates/repo/.github/skills/ck-security/SKILL.md +139 -0
  455. package/templates/repo/.github/skills/ck-security/references/stride-owasp-checklist.md +128 -0
  456. package/templates/repo/.github/skills/ck-sequential-thinking/README.md +183 -0
  457. package/templates/repo/.github/skills/ck-sequential-thinking/SKILL.md +94 -0
  458. package/templates/repo/.github/skills/ck-sequential-thinking/package-lock.json +3652 -0
  459. package/templates/repo/.github/skills/ck-sequential-thinking/package.json +31 -0
  460. package/templates/repo/.github/skills/ck-ship/SKILL.md +116 -0
  461. package/templates/repo/.github/skills/ck-ship/references/auto-detect.md +103 -0
  462. package/templates/repo/.github/skills/ck-ship/references/pr-template.md +90 -0
  463. package/templates/repo/.github/skills/ck-ship/references/ship-workflow.md +241 -0
  464. package/templates/repo/.github/skills/ck-test/SKILL.md +111 -0
  465. package/templates/repo/.github/skills/ck-test/references/report-format.md +58 -0
  466. package/templates/repo/.github/skills/ck-test/references/test-execution-workflow.md +103 -0
  467. package/templates/repo/.github/skills/ck-test/references/ui-testing-workflow.md +65 -0
  468. package/templates/repo/.github/skills/ck-ui-styling/SKILL.md +321 -0
  469. package/templates/repo/.github/skills/ck-web-testing/SKILL.md +96 -0
  470. package/agents/brainstormer.agent.md +0 -78
  471. package/agents/code-reviewer.agent.md +0 -111
  472. package/agents/code-simplifier.agent.md +0 -46
  473. package/agents/debugger.agent.md +0 -137
  474. package/agents/docs-manager.agent.md +0 -217
  475. package/agents/fullstack-developer.agent.md +0 -96
  476. package/agents/git-manager.agent.md +0 -10
  477. package/agents/planner.agent.md +0 -122
  478. package/agents/researcher.agent.md +0 -46
  479. package/agents/tester.agent.md +0 -116
  480. package/agents/ui-ux-designer.agent.md +0 -233
  481. package/docs/claudekit-porting-rules.md +0 -182
  482. package/docs/cokit-comprehensive-mapping-guide.md +0 -357
  483. package/docs/cokit-slides.md +0 -210
  484. package/docs/cokit-team-presentation.md +0 -354
  485. package/docs/guide-next-steps-speckit-cokit-implementation.md +0 -187
  486. package/prompts/ck-spec-analyze.prompt.md +0 -201
  487. package/prompts/ck-spec-checklist.prompt.md +0 -308
  488. package/prompts/ck-spec-clarify.prompt.md +0 -190
  489. package/prompts/ck-spec-constitution.prompt.md +0 -92
  490. package/prompts/ck-spec-implement.prompt.md +0 -157
  491. package/prompts/ck-spec-plan.prompt.md +0 -95
  492. package/prompts/ck-spec-specify.prompt.md +0 -261
  493. package/prompts/ck-spec-tasks.prompt.md +0 -181
  494. package/skills/agent-browser/SKILL.md +0 -291
  495. package/skills/backend-development/SKILL.md +0 -94
  496. package/skills/brainstorm/SKILL.md +0 -74
  497. package/skills/code-review/SKILL.md +0 -193
  498. package/skills/code-review/references/code-review-reception.md +0 -209
  499. package/skills/code-review/references/requesting-code-review.md +0 -105
  500. package/skills/common/README.md +0 -120
  501. package/skills/common/api_key_helper.py +0 -411
  502. package/skills/context-engineering/SKILL.md +0 -106
  503. package/skills/context-engineering/references/context-degradation.md +0 -93
  504. package/skills/context-engineering/references/runtime-awareness.md +0 -202
  505. package/skills/cook/README.md +0 -86
  506. package/skills/cook/SKILL.md +0 -127
  507. package/skills/cook/references/intent-detection.md +0 -101
  508. package/skills/cook/references/review-cycle.md +0 -75
  509. package/skills/cook/references/workflow-steps.md +0 -140
  510. package/skills/databases/SKILL.md +0 -111
  511. package/skills/databases/db-design.md +0 -188
  512. package/skills/debug/SKILL.md +0 -178
  513. package/skills/devops/SKILL.md +0 -102
  514. package/skills/docs-seeker/SKILL.md +0 -96
  515. package/skills/docs-seeker/references/context7-patterns.md +0 -64
  516. package/skills/docs-seeker/scripts/fetch-docs.js +0 -214
  517. package/skills/docs-seeker/scripts/utils/env-loader.js +0 -94
  518. package/skills/docs-seeker/workflows/library-search.md +0 -86
  519. package/skills/fix/SKILL.md +0 -112
  520. package/skills/fix/references/complexity-assessment.md +0 -61
  521. package/skills/fix/references/mode-selection.md +0 -30
  522. package/skills/fix/references/parallel-exploration.md +0 -77
  523. package/skills/fix/references/review-cycle.md +0 -77
  524. package/skills/fix/references/skill-activation-matrix.md +0 -65
  525. package/skills/fix/references/workflow-ci.md +0 -28
  526. package/skills/fix/references/workflow-deep.md +0 -91
  527. package/skills/fix/references/workflow-logs.md +0 -36
  528. package/skills/fix/references/workflow-quick.md +0 -59
  529. package/skills/fix/references/workflow-standard.md +0 -86
  530. package/skills/fix/references/workflow-test.md +0 -36
  531. package/skills/fix/references/workflow-ui.md +0 -34
  532. package/skills/frontend-design/SKILL.md +0 -77
  533. package/skills/frontend-design/references/asset-generation.md +0 -161
  534. package/skills/frontend-design/references/visual-analysis-overview.md +0 -95
  535. package/skills/frontend-design/references/workflow-describe.md +0 -86
  536. package/skills/frontend-design/references/workflow-quick.md +0 -54
  537. package/skills/frontend-design/references/workflow-screenshot.md +0 -62
  538. package/skills/git/SKILL.md +0 -99
  539. package/skills/git/references/commit-standards.md +0 -46
  540. package/skills/git/references/workflow-commit.md +0 -58
  541. package/skills/git/references/workflow-merge.md +0 -48
  542. package/skills/git/references/workflow-pr.md +0 -58
  543. package/skills/git/references/workflow-push.md +0 -52
  544. package/skills/mcp-management/README.md +0 -219
  545. package/skills/mcp-management/SKILL.md +0 -209
  546. package/skills/mcp-management/references/configuration.md +0 -114
  547. package/skills/mcp-management/references/gemini-cli-integration.md +0 -221
  548. package/skills/mcp-management/scripts/.env.example +0 -10
  549. package/skills/mcp-management/scripts/dist/mcp-client.js +0 -183
  550. package/skills/mcp-management/scripts/mcp-client.ts +0 -230
  551. package/skills/mermaidjs-v11/SKILL.md +0 -115
  552. package/skills/planning/SKILL.md +0 -163
  553. package/skills/planning/references/codebase-understanding.md +0 -62
  554. package/skills/planning/references/output-standards.md +0 -141
  555. package/skills/planning/references/plan-organization.md +0 -160
  556. package/skills/planning/references/research-phase.md +0 -49
  557. package/skills/problem-solving/SKILL.md +0 -95
  558. package/skills/repomix/SKILL.md +0 -247
  559. package/skills/repomix/references/usage-patterns.md +0 -232
  560. package/skills/repomix/scripts/README.md +0 -179
  561. package/skills/repomix/scripts/repomix_batch.py +0 -455
  562. package/skills/research/SKILL.md +0 -169
  563. package/skills/scout/SKILL.md +0 -91
  564. package/skills/scout/references/external-scouting.md +0 -140
  565. package/skills/scout/references/internal-scouting.md +0 -119
  566. package/skills/sequential-thinking/README.md +0 -183
  567. package/skills/sequential-thinking/SKILL.md +0 -92
  568. package/skills/sequential-thinking/package.json +0 -31
  569. package/skills/ui-styling/SKILL.md +0 -319
  570. package/skills/web-testing/SKILL.md +0 -148
  571. package/templates/repo/.github/AGENTS.md +0 -103
  572. package/templates/repo/.github/agents/brainstormer.agent.md +0 -78
  573. package/templates/repo/.github/agents/code-reviewer.agent.md +0 -111
  574. package/templates/repo/.github/agents/code-simplifier.agent.md +0 -46
  575. package/templates/repo/.github/agents/debugger.agent.md +0 -137
  576. package/templates/repo/.github/agents/docs-manager.agent.md +0 -217
  577. package/templates/repo/.github/agents/fullstack-developer.agent.md +0 -96
  578. package/templates/repo/.github/agents/git-manager.agent.md +0 -10
  579. package/templates/repo/.github/agents/planner.agent.md +0 -122
  580. package/templates/repo/.github/agents/researcher.agent.md +0 -46
  581. package/templates/repo/.github/agents/tester.agent.md +0 -116
  582. package/templates/repo/.github/agents/ui-ux-designer.agent.md +0 -233
  583. package/templates/repo/.github/prompts/ck-spec-analyze.prompt.md +0 -201
  584. package/templates/repo/.github/prompts/ck-spec-checklist.prompt.md +0 -308
  585. package/templates/repo/.github/prompts/ck-spec-clarify.prompt.md +0 -190
  586. package/templates/repo/.github/prompts/ck-spec-constitution.prompt.md +0 -92
  587. package/templates/repo/.github/prompts/ck-spec-implement.prompt.md +0 -157
  588. package/templates/repo/.github/prompts/ck-spec-plan.prompt.md +0 -95
  589. package/templates/repo/.github/prompts/ck-spec-specify.prompt.md +0 -261
  590. package/templates/repo/.github/prompts/ck-spec-tasks.prompt.md +0 -181
  591. package/templates/repo/.github/skills/agent-browser/SKILL.md +0 -291
  592. package/templates/repo/.github/skills/backend-development/SKILL.md +0 -94
  593. package/templates/repo/.github/skills/brainstorm/SKILL.md +0 -74
  594. package/templates/repo/.github/skills/code-review/SKILL.md +0 -193
  595. package/templates/repo/.github/skills/code-review/references/code-review-reception.md +0 -209
  596. package/templates/repo/.github/skills/code-review/references/requesting-code-review.md +0 -105
  597. package/templates/repo/.github/skills/common/README.md +0 -120
  598. package/templates/repo/.github/skills/common/api_key_helper.py +0 -411
  599. package/templates/repo/.github/skills/context-engineering/SKILL.md +0 -106
  600. package/templates/repo/.github/skills/context-engineering/references/context-degradation.md +0 -93
  601. package/templates/repo/.github/skills/context-engineering/references/runtime-awareness.md +0 -202
  602. package/templates/repo/.github/skills/cook/README.md +0 -86
  603. package/templates/repo/.github/skills/cook/SKILL.md +0 -127
  604. package/templates/repo/.github/skills/cook/references/intent-detection.md +0 -101
  605. package/templates/repo/.github/skills/cook/references/review-cycle.md +0 -75
  606. package/templates/repo/.github/skills/cook/references/workflow-steps.md +0 -140
  607. package/templates/repo/.github/skills/databases/SKILL.md +0 -111
  608. package/templates/repo/.github/skills/databases/db-design.md +0 -188
  609. package/templates/repo/.github/skills/databases/stacks/bigquery.md +0 -231
  610. package/templates/repo/.github/skills/databases/stacks/d1_cloudflare.md +0 -137
  611. package/templates/repo/.github/skills/databases/stacks/mysql.md +0 -216
  612. package/templates/repo/.github/skills/databases/stacks/postgres.md +0 -235
  613. package/templates/repo/.github/skills/databases/stacks/sqlite.md +0 -244
  614. package/templates/repo/.github/skills/debug/SKILL.md +0 -178
  615. package/templates/repo/.github/skills/devops/SKILL.md +0 -102
  616. package/templates/repo/.github/skills/docs-seeker/SKILL.md +0 -96
  617. package/templates/repo/.github/skills/docs-seeker/references/context7-patterns.md +0 -64
  618. package/templates/repo/.github/skills/docs-seeker/scripts/fetch-docs.js +0 -214
  619. package/templates/repo/.github/skills/docs-seeker/scripts/utils/env-loader.js +0 -94
  620. package/templates/repo/.github/skills/docs-seeker/workflows/library-search.md +0 -86
  621. package/templates/repo/.github/skills/fix/SKILL.md +0 -112
  622. package/templates/repo/.github/skills/fix/references/complexity-assessment.md +0 -61
  623. package/templates/repo/.github/skills/fix/references/mode-selection.md +0 -30
  624. package/templates/repo/.github/skills/fix/references/parallel-exploration.md +0 -77
  625. package/templates/repo/.github/skills/fix/references/review-cycle.md +0 -77
  626. package/templates/repo/.github/skills/fix/references/skill-activation-matrix.md +0 -65
  627. package/templates/repo/.github/skills/fix/references/workflow-ci.md +0 -28
  628. package/templates/repo/.github/skills/fix/references/workflow-deep.md +0 -91
  629. package/templates/repo/.github/skills/fix/references/workflow-logs.md +0 -36
  630. package/templates/repo/.github/skills/fix/references/workflow-quick.md +0 -59
  631. package/templates/repo/.github/skills/fix/references/workflow-standard.md +0 -86
  632. package/templates/repo/.github/skills/fix/references/workflow-test.md +0 -36
  633. package/templates/repo/.github/skills/fix/references/workflow-ui.md +0 -34
  634. package/templates/repo/.github/skills/frontend-design/SKILL.md +0 -77
  635. package/templates/repo/.github/skills/frontend-design/references/asset-generation.md +0 -161
  636. package/templates/repo/.github/skills/frontend-design/references/visual-analysis-overview.md +0 -95
  637. package/templates/repo/.github/skills/frontend-design/references/workflow-describe.md +0 -86
  638. package/templates/repo/.github/skills/frontend-design/references/workflow-quick.md +0 -54
  639. package/templates/repo/.github/skills/frontend-design/references/workflow-screenshot.md +0 -62
  640. package/templates/repo/.github/skills/git/SKILL.md +0 -99
  641. package/templates/repo/.github/skills/git/references/commit-standards.md +0 -46
  642. package/templates/repo/.github/skills/git/references/workflow-commit.md +0 -58
  643. package/templates/repo/.github/skills/git/references/workflow-merge.md +0 -48
  644. package/templates/repo/.github/skills/git/references/workflow-pr.md +0 -58
  645. package/templates/repo/.github/skills/git/references/workflow-push.md +0 -52
  646. package/templates/repo/.github/skills/mcp-management/README.md +0 -219
  647. package/templates/repo/.github/skills/mcp-management/SKILL.md +0 -209
  648. package/templates/repo/.github/skills/mcp-management/assets/tools.json +0 -3146
  649. package/templates/repo/.github/skills/mcp-management/references/configuration.md +0 -114
  650. package/templates/repo/.github/skills/mcp-management/references/gemini-cli-integration.md +0 -221
  651. package/templates/repo/.github/skills/mcp-management/scripts/.env.example +0 -10
  652. package/templates/repo/.github/skills/mcp-management/scripts/dist/analyze-tools.js +0 -70
  653. package/templates/repo/.github/skills/mcp-management/scripts/dist/cli.js +0 -160
  654. package/templates/repo/.github/skills/mcp-management/scripts/dist/mcp-client.js +0 -183
  655. package/templates/repo/.github/skills/mcp-management/scripts/mcp-client.ts +0 -230
  656. package/templates/repo/.github/skills/mermaidjs-v11/SKILL.md +0 -115
  657. package/templates/repo/.github/skills/planning/SKILL.md +0 -163
  658. package/templates/repo/.github/skills/planning/references/codebase-understanding.md +0 -62
  659. package/templates/repo/.github/skills/planning/references/output-standards.md +0 -141
  660. package/templates/repo/.github/skills/planning/references/plan-organization.md +0 -160
  661. package/templates/repo/.github/skills/planning/references/research-phase.md +0 -49
  662. package/templates/repo/.github/skills/problem-solving/SKILL.md +0 -95
  663. package/templates/repo/.github/skills/repomix/SKILL.md +0 -247
  664. package/templates/repo/.github/skills/repomix/references/usage-patterns.md +0 -232
  665. package/templates/repo/.github/skills/repomix/scripts/README.md +0 -179
  666. package/templates/repo/.github/skills/repomix/scripts/repomix_batch.py +0 -455
  667. package/templates/repo/.github/skills/research/SKILL.md +0 -169
  668. package/templates/repo/.github/skills/scout/SKILL.md +0 -91
  669. package/templates/repo/.github/skills/scout/references/external-scouting.md +0 -140
  670. package/templates/repo/.github/skills/scout/references/internal-scouting.md +0 -119
  671. package/templates/repo/.github/skills/sequential-thinking/README.md +0 -183
  672. package/templates/repo/.github/skills/sequential-thinking/SKILL.md +0 -92
  673. package/templates/repo/.github/skills/sequential-thinking/package.json +0 -31
  674. package/templates/repo/.github/skills/ui-styling/LICENSE.txt +0 -202
  675. package/templates/repo/.github/skills/ui-styling/SKILL.md +0 -319
  676. package/templates/repo/.github/skills/web-testing/SKILL.md +0 -148
  677. package/templates/repo/.github/spec-kit/memory/constitution.md +0 -50
  678. package/templates/repo/.github/spec-kit/scripts/bash/check-prerequisites.sh +0 -166
  679. package/templates/repo/.github/spec-kit/scripts/bash/common.sh +0 -156
  680. package/templates/repo/.github/spec-kit/scripts/bash/create-new-feature.sh +0 -297
  681. package/templates/repo/.github/spec-kit/scripts/bash/setup-plan.sh +0 -61
  682. package/templates/repo/.github/spec-kit/scripts/bash/update-agent-context.sh +0 -799
  683. package/templates/repo/.github/spec-kit/scripts/powershell/check-prerequisites.ps1 +0 -148
  684. package/templates/repo/.github/spec-kit/scripts/powershell/common.ps1 +0 -137
  685. package/templates/repo/.github/spec-kit/scripts/powershell/create-new-feature.ps1 +0 -283
  686. package/templates/repo/.github/spec-kit/scripts/powershell/setup-plan.ps1 +0 -61
  687. package/templates/repo/.github/spec-kit/scripts/powershell/update-agent-context.ps1 +0 -448
  688. package/templates/repo/.github/spec-kit/templates/agent-file-template.md +0 -28
  689. package/templates/repo/.github/spec-kit/templates/checklist-template.md +0 -40
  690. package/templates/repo/.github/spec-kit/templates/commands/analyze.md +0 -187
  691. package/templates/repo/.github/spec-kit/templates/commands/checklist.md +0 -297
  692. package/templates/repo/.github/spec-kit/templates/commands/clarify.md +0 -184
  693. package/templates/repo/.github/spec-kit/templates/commands/constitution.md +0 -82
  694. package/templates/repo/.github/spec-kit/templates/commands/implement.md +0 -138
  695. package/templates/repo/.github/spec-kit/templates/commands/plan.md +0 -95
  696. package/templates/repo/.github/spec-kit/templates/commands/specify.md +0 -261
  697. package/templates/repo/.github/spec-kit/templates/commands/tasks.md +0 -140
  698. package/templates/repo/.github/spec-kit/templates/commands/taskstoissues.md +0 -33
  699. package/templates/repo/.github/spec-kit/templates/plan-template.md +0 -104
  700. package/templates/repo/.github/spec-kit/templates/spec-template.md +0 -115
  701. package/templates/repo/.github/spec-kit/templates/tasks-phase-template.md +0 -42
  702. package/templates/repo/.github/spec-kit/templates/tasks-template.md +0 -268
  703. package/templates/repo/.github/spec-kit/templates/vscode-settings.json +0 -14
  704. /package/agents/{scout.agent.md → ck-scout.agent.md} +0 -0
  705. /package/skills/{agent-browser → ck-agent-browser}/references/.gitkeep +0 -0
  706. /package/skills/{agent-browser → ck-agent-browser}/references/browserbase-cloud-setup.md +0 -0
  707. /package/skills/{backend-development → ck-backend-development}/references/backend-api-design.md +0 -0
  708. /package/skills/{backend-development → ck-backend-development}/references/backend-architecture.md +0 -0
  709. /package/skills/{backend-development → ck-backend-development}/references/backend-authentication.md +0 -0
  710. /package/skills/{backend-development → ck-backend-development}/references/backend-code-quality.md +0 -0
  711. /package/skills/{backend-development → ck-backend-development}/references/backend-debugging.md +0 -0
  712. /package/skills/{backend-development → ck-backend-development}/references/backend-devops.md +0 -0
  713. /package/skills/{backend-development → ck-backend-development}/references/backend-mindset.md +0 -0
  714. /package/skills/{backend-development → ck-backend-development}/references/backend-performance.md +0 -0
  715. /package/skills/{backend-development → ck-backend-development}/references/backend-security.md +0 -0
  716. /package/skills/{backend-development → ck-backend-development}/references/backend-technologies.md +0 -0
  717. /package/skills/{backend-development → ck-backend-development}/references/backend-testing.md +0 -0
  718. /package/skills/{code-review → ck-code-review}/references/verification-before-completion.md +0 -0
  719. /package/skills/{common → ck-common}/api_key_rotator.py +0 -0
  720. /package/skills/{context-engineering → ck-context-engineering}/references/context-compression.md +0 -0
  721. /package/skills/{context-engineering → ck-context-engineering}/references/context-fundamentals.md +0 -0
  722. /package/skills/{context-engineering → ck-context-engineering}/references/context-optimization.md +0 -0
  723. /package/skills/{context-engineering → ck-context-engineering}/references/evaluation.md +0 -0
  724. /package/skills/{context-engineering → ck-context-engineering}/references/memory-systems.md +0 -0
  725. /package/skills/{context-engineering → ck-context-engineering}/references/multi-agent-patterns.md +0 -0
  726. /package/skills/{context-engineering → ck-context-engineering}/references/project-development.md +0 -0
  727. /package/skills/{context-engineering → ck-context-engineering}/references/tool-design.md +0 -0
  728. /package/skills/{context-engineering → ck-context-engineering}/scripts/compression_evaluator.py +0 -0
  729. /package/skills/{context-engineering → ck-context-engineering}/scripts/context_analyzer.py +0 -0
  730. /package/skills/{cook → ck-cook}/references/agent-patterns.md +0 -0
  731. /package/skills/{databases → ck-databases}/analytics.md +0 -0
  732. /package/skills/{databases → ck-databases}/incremental-etl.md +0 -0
  733. /package/skills/{databases → ck-databases}/references/mongodb-aggregation.md +0 -0
  734. /package/skills/{databases → ck-databases}/references/mongodb-atlas.md +0 -0
  735. /package/skills/{databases → ck-databases}/references/mongodb-crud.md +0 -0
  736. /package/skills/{databases → ck-databases}/references/mongodb-indexing.md +0 -0
  737. /package/skills/{databases → ck-databases}/references/postgresql-administration.md +0 -0
  738. /package/skills/{databases → ck-databases}/references/postgresql-performance.md +0 -0
  739. /package/skills/{databases → ck-databases}/references/postgresql-psql-cli.md +0 -0
  740. /package/skills/{databases → ck-databases}/references/postgresql-queries.md +0 -0
  741. /package/skills/{databases → ck-databases}/scripts/db_backup.py +0 -0
  742. /package/skills/{databases → ck-databases}/scripts/db_migrate.py +0 -0
  743. /package/skills/{databases → ck-databases}/scripts/db_performance_check.py +0 -0
  744. /package/skills/{databases → ck-databases}/scripts/requirements.txt +0 -0
  745. /package/skills/{databases → ck-databases}/stacks/bigquery.md +0 -0
  746. /package/skills/{databases → ck-databases}/stacks/d1_cloudflare.md +0 -0
  747. /package/skills/{databases → ck-databases}/stacks/mysql.md +0 -0
  748. /package/skills/{databases → ck-databases}/stacks/postgres.md +0 -0
  749. /package/skills/{databases → ck-databases}/stacks/sqlite.md +0 -0
  750. /package/skills/{databases → ck-databases}/transactional.md +0 -0
  751. /package/skills/{debug → ck-debug}/references/defense-in-depth.md +0 -0
  752. /package/skills/{debug → ck-debug}/references/root-cause-tracing.md +0 -0
  753. /package/skills/{debug → ck-debug}/references/systematic-debugging.md +0 -0
  754. /package/skills/{debug → ck-debug}/references/verification.md +0 -0
  755. /package/skills/{debug → ck-debug}/scripts/find-polluter.sh +0 -0
  756. /package/skills/{debug → ck-debug}/scripts/find-polluter.test.md +0 -0
  757. /package/skills/{devops → ck-devops}/.env.example +0 -0
  758. /package/skills/{devops → ck-devops}/references/browser-rendering.md +0 -0
  759. /package/skills/{devops → ck-devops}/references/cloudflare-d1-kv.md +0 -0
  760. /package/skills/{devops → ck-devops}/references/cloudflare-platform.md +0 -0
  761. /package/skills/{devops → ck-devops}/references/cloudflare-r2-storage.md +0 -0
  762. /package/skills/{devops → ck-devops}/references/cloudflare-workers-advanced.md +0 -0
  763. /package/skills/{devops → ck-devops}/references/cloudflare-workers-apis.md +0 -0
  764. /package/skills/{devops → ck-devops}/references/cloudflare-workers-basics.md +0 -0
  765. /package/skills/{devops → ck-devops}/references/docker-basics.md +0 -0
  766. /package/skills/{devops → ck-devops}/references/docker-compose.md +0 -0
  767. /package/skills/{devops → ck-devops}/references/gcloud-platform.md +0 -0
  768. /package/skills/{devops → ck-devops}/references/gcloud-services.md +0 -0
  769. /package/skills/{devops → ck-devops}/references/kubernetes-basics.md +0 -0
  770. /package/skills/{devops → ck-devops}/references/kubernetes-helm-advanced.md +0 -0
  771. /package/skills/{devops → ck-devops}/references/kubernetes-helm.md +0 -0
  772. /package/skills/{devops → ck-devops}/references/kubernetes-kubectl.md +0 -0
  773. /package/skills/{devops → ck-devops}/references/kubernetes-security-advanced.md +0 -0
  774. /package/skills/{devops → ck-devops}/references/kubernetes-security.md +0 -0
  775. /package/skills/{devops → ck-devops}/references/kubernetes-troubleshooting-advanced.md +0 -0
  776. /package/skills/{devops → ck-devops}/references/kubernetes-troubleshooting.md +0 -0
  777. /package/skills/{devops → ck-devops}/references/kubernetes-workflows-advanced.md +0 -0
  778. /package/skills/{devops → ck-devops}/references/kubernetes-workflows.md +0 -0
  779. /package/skills/{devops → ck-devops}/scripts/cloudflare_deploy.py +0 -0
  780. /package/skills/{devops → ck-devops}/scripts/docker_optimize.py +0 -0
  781. /package/skills/{devops → ck-devops}/scripts/requirements.txt +0 -0
  782. /package/skills/{docs-seeker → ck-docs-seeker}/.env.example +0 -0
  783. /package/skills/{docs-seeker → ck-docs-seeker}/package.json +0 -0
  784. /package/skills/{docs-seeker → ck-docs-seeker}/references/advanced.md +0 -0
  785. /package/skills/{docs-seeker → ck-docs-seeker}/references/errors.md +0 -0
  786. /package/skills/{docs-seeker → ck-docs-seeker}/scripts/analyze-llms-txt.js +0 -0
  787. /package/skills/{docs-seeker → ck-docs-seeker}/scripts/detect-topic.js +0 -0
  788. /package/skills/{docs-seeker → ck-docs-seeker}/workflows/repo-analysis.md +0 -0
  789. /package/skills/{docs-seeker → ck-docs-seeker}/workflows/topic-search.md +0 -0
  790. /package/skills/{fix → ck-fix}/references/workflow-types.md +0 -0
  791. /package/skills/{frontend-design → ck-frontend-design}/references/analysis-best-practices.md +0 -0
  792. /package/skills/{frontend-design → ck-frontend-design}/references/analysis-prompts.md +0 -0
  793. /package/skills/{frontend-design → ck-frontend-design}/references/analysis-techniques.md +0 -0
  794. /package/skills/{frontend-design → ck-frontend-design}/references/animejs.md +0 -0
  795. /package/skills/{frontend-design → ck-frontend-design}/references/design-extraction-overview.md +0 -0
  796. /package/skills/{frontend-design → ck-frontend-design}/references/extraction-best-practices.md +0 -0
  797. /package/skills/{frontend-design → ck-frontend-design}/references/extraction-output-templates.md +0 -0
  798. /package/skills/{frontend-design → ck-frontend-design}/references/extraction-prompts.md +0 -0
  799. /package/skills/{frontend-design → ck-frontend-design}/references/technical-accessibility.md +0 -0
  800. /package/skills/{frontend-design → ck-frontend-design}/references/technical-best-practices.md +0 -0
  801. /package/skills/{frontend-design → ck-frontend-design}/references/technical-optimization.md +0 -0
  802. /package/skills/{frontend-design → ck-frontend-design}/references/technical-overview.md +0 -0
  803. /package/skills/{frontend-design → ck-frontend-design}/references/technical-workflows.md +0 -0
  804. /package/skills/{git → ck-git}/references/branch-management.md +0 -0
  805. /package/skills/{git → ck-git}/references/gh-cli-guide.md +0 -0
  806. /package/skills/{git → ck-git}/references/safety-protocols.md +0 -0
  807. /package/skills/{mcp-management → ck-mcp-management}/assets/tools.json +0 -0
  808. /package/skills/{mcp-management → ck-mcp-management}/references/mcp-protocol.md +0 -0
  809. /package/skills/{mcp-management → ck-mcp-management}/scripts/cli.ts +0 -0
  810. /package/skills/{mcp-management → ck-mcp-management}/scripts/dist/analyze-tools.js +0 -0
  811. /package/skills/{mcp-management → ck-mcp-management}/scripts/dist/cli.js +0 -0
  812. /package/skills/{mcp-management → ck-mcp-management}/scripts/package.json +0 -0
  813. /package/skills/{mcp-management → ck-mcp-management}/scripts/tsconfig.json +0 -0
  814. /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/cli-usage.md +0 -0
  815. /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/configuration.md +0 -0
  816. /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/diagram-types.md +0 -0
  817. /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/examples.md +0 -0
  818. /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/integration.md +0 -0
  819. /package/skills/{planning → ck-planning}/references/solution-design.md +0 -0
  820. /package/skills/{problem-solving → ck-problem-solving}/references/attribution.md +0 -0
  821. /package/skills/{problem-solving → ck-problem-solving}/references/collision-zone-thinking.md +0 -0
  822. /package/skills/{problem-solving → ck-problem-solving}/references/inversion-exercise.md +0 -0
  823. /package/skills/{problem-solving → ck-problem-solving}/references/meta-pattern-recognition.md +0 -0
  824. /package/skills/{problem-solving → ck-problem-solving}/references/scale-game.md +0 -0
  825. /package/skills/{problem-solving → ck-problem-solving}/references/simplification-cascades.md +0 -0
  826. /package/skills/{problem-solving → ck-problem-solving}/references/when-stuck.md +0 -0
  827. /package/skills/{repomix → ck-repomix}/references/configuration.md +0 -0
  828. /package/skills/{repomix → ck-repomix}/scripts/repos.example.json +0 -0
  829. /package/skills/{repomix → ck-repomix}/scripts/requirements.txt +0 -0
  830. /package/skills/{sequential-thinking → ck-sequential-thinking}/.env.example +0 -0
  831. /package/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-strategies.md +0 -0
  832. /package/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-techniques.md +0 -0
  833. /package/skills/{sequential-thinking → ck-sequential-thinking}/references/core-patterns.md +0 -0
  834. /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-api.md +0 -0
  835. /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-architecture.md +0 -0
  836. /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-debug.md +0 -0
  837. /package/skills/{sequential-thinking → ck-sequential-thinking}/scripts/format-thought.js +0 -0
  838. /package/skills/{sequential-thinking → ck-sequential-thinking}/scripts/process-thought.js +0 -0
  839. /package/skills/{ui-styling → ck-ui-styling}/LICENSE.txt +0 -0
  840. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-OFL.txt +0 -0
  841. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  842. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  843. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-OFL.txt +0 -0
  844. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  845. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-OFL.txt +0 -0
  846. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-Regular.ttf +0 -0
  847. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  848. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-OFL.txt +0 -0
  849. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  850. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  851. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  852. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-OFL.txt +0 -0
  853. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  854. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-OFL.txt +0 -0
  855. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-Regular.ttf +0 -0
  856. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-OFL.txt +0 -0
  857. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-Regular.ttf +0 -0
  858. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Bold.ttf +0 -0
  859. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-OFL.txt +0 -0
  860. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Regular.ttf +0 -0
  861. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-OFL.txt +0 -0
  862. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-Regular.ttf +0 -0
  863. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  864. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-OFL.txt +0 -0
  865. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  866. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  867. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  868. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  869. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  870. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  871. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  872. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  873. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-OFL.txt +0 -0
  874. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  875. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  876. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  877. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-OFL.txt +0 -0
  878. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-Regular.ttf +0 -0
  879. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  880. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-OFL.txt +0 -0
  881. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  882. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Light.ttf +0 -0
  883. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Medium.ttf +0 -0
  884. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-OFL.txt +0 -0
  885. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-OFL.txt +0 -0
  886. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  887. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Bold.ttf +0 -0
  888. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  889. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Italic.ttf +0 -0
  890. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-OFL.txt +0 -0
  891. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Regular.ttf +0 -0
  892. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Bold.ttf +0 -0
  893. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-OFL.txt +0 -0
  894. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Regular.ttf +0 -0
  895. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -0
  896. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  897. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Bold.ttf +0 -0
  898. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-OFL.txt +0 -0
  899. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Regular.ttf +0 -0
  900. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  901. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-OFL.txt +0 -0
  902. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-OFL.txt +0 -0
  903. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  904. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  905. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-OFL.txt +0 -0
  906. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  907. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-OFL.txt +0 -0
  908. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  909. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  910. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-OFL.txt +0 -0
  911. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Medium.ttf +0 -0
  912. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-OFL.txt +0 -0
  913. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Regular.ttf +0 -0
  914. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Bold.ttf +0 -0
  915. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  916. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Italic.ttf +0 -0
  917. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-OFL.txt +0 -0
  918. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Regular.ttf +0 -0
  919. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-OFL.txt +0 -0
  920. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  921. /package/skills/{ui-styling → ck-ui-styling}/references/canvas-design-system.md +0 -0
  922. /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-accessibility.md +0 -0
  923. /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-components.md +0 -0
  924. /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-theming.md +0 -0
  925. /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-customization.md +0 -0
  926. /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-responsive.md +0 -0
  927. /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-utilities.md +0 -0
  928. /package/skills/{ui-styling → ck-ui-styling}/scripts/requirements.txt +0 -0
  929. /package/skills/{ui-styling → ck-ui-styling}/scripts/shadcn_add.py +0 -0
  930. /package/skills/{ui-styling → ck-ui-styling}/scripts/tailwind_config_gen.py +0 -0
  931. /package/skills/{web-testing → ck-web-testing}/references/accessibility-testing.md +0 -0
  932. /package/skills/{web-testing → ck-web-testing}/references/api-testing.md +0 -0
  933. /package/skills/{web-testing → ck-web-testing}/references/ci-cd-testing-workflows.md +0 -0
  934. /package/skills/{web-testing → ck-web-testing}/references/component-testing.md +0 -0
  935. /package/skills/{web-testing → ck-web-testing}/references/contract-testing.md +0 -0
  936. /package/skills/{web-testing → ck-web-testing}/references/cross-browser-checklist.md +0 -0
  937. /package/skills/{web-testing → ck-web-testing}/references/database-testing.md +0 -0
  938. /package/skills/{web-testing → ck-web-testing}/references/e2e-testing-playwright.md +0 -0
  939. /package/skills/{web-testing → ck-web-testing}/references/functional-testing-checklist.md +0 -0
  940. /package/skills/{web-testing → ck-web-testing}/references/interactive-testing-patterns.md +0 -0
  941. /package/skills/{web-testing → ck-web-testing}/references/load-testing-k6.md +0 -0
  942. /package/skills/{web-testing → ck-web-testing}/references/mobile-gesture-testing.md +0 -0
  943. /package/skills/{web-testing → ck-web-testing}/references/performance-core-web-vitals.md +0 -0
  944. /package/skills/{web-testing → ck-web-testing}/references/playwright-component-testing.md +0 -0
  945. /package/skills/{web-testing → ck-web-testing}/references/pre-release-checklist.md +0 -0
  946. /package/skills/{web-testing → ck-web-testing}/references/report-format.md +0 -0
  947. /package/skills/{web-testing → ck-web-testing}/references/security-checklists.md +0 -0
  948. /package/skills/{web-testing → ck-web-testing}/references/security-testing-overview.md +0 -0
  949. /package/skills/{web-testing → ck-web-testing}/references/shadow-dom-testing.md +0 -0
  950. /package/skills/{web-testing → ck-web-testing}/references/test-data-management.md +0 -0
  951. /package/skills/{web-testing → ck-web-testing}/references/test-execution-workflow.md +0 -0
  952. /package/skills/{web-testing → ck-web-testing}/references/test-flakiness-mitigation.md +0 -0
  953. /package/skills/{web-testing → ck-web-testing}/references/testing-pyramid-strategy.md +0 -0
  954. /package/skills/{web-testing → ck-web-testing}/references/ui-testing-workflow.md +0 -0
  955. /package/skills/{web-testing → ck-web-testing}/references/unit-integration-testing.md +0 -0
  956. /package/skills/{web-testing → ck-web-testing}/references/visual-regression.md +0 -0
  957. /package/skills/{web-testing → ck-web-testing}/references/vulnerability-payloads.md +0 -0
  958. /package/skills/{web-testing → ck-web-testing}/scripts/analyze-test-results.js +0 -0
  959. /package/skills/{web-testing → ck-web-testing}/scripts/init-playwright.js +0 -0
  960. /package/templates/repo/.github/agents/{scout.agent.md → ck-scout.agent.md} +0 -0
  961. /package/templates/repo/.github/skills/{agent-browser → ck-agent-browser}/references/.gitkeep +0 -0
  962. /package/templates/repo/.github/skills/{agent-browser → ck-agent-browser}/references/browserbase-cloud-setup.md +0 -0
  963. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-api-design.md +0 -0
  964. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-architecture.md +0 -0
  965. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-authentication.md +0 -0
  966. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-code-quality.md +0 -0
  967. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-debugging.md +0 -0
  968. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-devops.md +0 -0
  969. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-mindset.md +0 -0
  970. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-performance.md +0 -0
  971. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-security.md +0 -0
  972. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-technologies.md +0 -0
  973. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-testing.md +0 -0
  974. /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/verification-before-completion.md +0 -0
  975. /package/templates/repo/.github/skills/{common → ck-common}/api_key_rotator.py +0 -0
  976. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-compression.md +0 -0
  977. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-fundamentals.md +0 -0
  978. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-optimization.md +0 -0
  979. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/evaluation.md +0 -0
  980. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/memory-systems.md +0 -0
  981. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/multi-agent-patterns.md +0 -0
  982. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/project-development.md +0 -0
  983. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/tool-design.md +0 -0
  984. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/scripts/compression_evaluator.py +0 -0
  985. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/scripts/context_analyzer.py +0 -0
  986. /package/templates/repo/.github/skills/{cook → ck-cook}/references/agent-patterns.md +0 -0
  987. /package/templates/repo/.github/skills/{databases → ck-databases}/analytics.md +0 -0
  988. /package/templates/repo/.github/skills/{databases → ck-databases}/incremental-etl.md +0 -0
  989. /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-aggregation.md +0 -0
  990. /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-atlas.md +0 -0
  991. /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-crud.md +0 -0
  992. /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-indexing.md +0 -0
  993. /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-administration.md +0 -0
  994. /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-performance.md +0 -0
  995. /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-psql-cli.md +0 -0
  996. /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-queries.md +0 -0
  997. /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_backup.py +0 -0
  998. /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_migrate.py +0 -0
  999. /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_performance_check.py +0 -0
  1000. /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/requirements.txt +0 -0
  1001. /package/templates/repo/.github/skills/{databases → ck-databases}/transactional.md +0 -0
  1002. /package/templates/repo/.github/skills/{debug → ck-debug}/references/defense-in-depth.md +0 -0
  1003. /package/templates/repo/.github/skills/{debug → ck-debug}/references/root-cause-tracing.md +0 -0
  1004. /package/templates/repo/.github/skills/{debug → ck-debug}/references/systematic-debugging.md +0 -0
  1005. /package/templates/repo/.github/skills/{debug → ck-debug}/references/verification.md +0 -0
  1006. /package/templates/repo/.github/skills/{debug → ck-debug}/scripts/find-polluter.sh +0 -0
  1007. /package/templates/repo/.github/skills/{debug → ck-debug}/scripts/find-polluter.test.md +0 -0
  1008. /package/templates/repo/.github/skills/{devops → ck-devops}/.env.example +0 -0
  1009. /package/templates/repo/.github/skills/{devops → ck-devops}/references/browser-rendering.md +0 -0
  1010. /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-d1-kv.md +0 -0
  1011. /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-platform.md +0 -0
  1012. /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-r2-storage.md +0 -0
  1013. /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-advanced.md +0 -0
  1014. /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-apis.md +0 -0
  1015. /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-basics.md +0 -0
  1016. /package/templates/repo/.github/skills/{devops → ck-devops}/references/docker-basics.md +0 -0
  1017. /package/templates/repo/.github/skills/{devops → ck-devops}/references/docker-compose.md +0 -0
  1018. /package/templates/repo/.github/skills/{devops → ck-devops}/references/gcloud-platform.md +0 -0
  1019. /package/templates/repo/.github/skills/{devops → ck-devops}/references/gcloud-services.md +0 -0
  1020. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-basics.md +0 -0
  1021. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-helm-advanced.md +0 -0
  1022. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-helm.md +0 -0
  1023. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-kubectl.md +0 -0
  1024. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-security-advanced.md +0 -0
  1025. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-security.md +0 -0
  1026. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-troubleshooting-advanced.md +0 -0
  1027. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-troubleshooting.md +0 -0
  1028. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-workflows-advanced.md +0 -0
  1029. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-workflows.md +0 -0
  1030. /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/cloudflare_deploy.py +0 -0
  1031. /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/docker_optimize.py +0 -0
  1032. /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/requirements.txt +0 -0
  1033. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/.env.example +0 -0
  1034. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/package.json +0 -0
  1035. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/references/advanced.md +0 -0
  1036. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/references/errors.md +0 -0
  1037. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/analyze-llms-txt.js +0 -0
  1038. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/detect-topic.js +0 -0
  1039. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/workflows/repo-analysis.md +0 -0
  1040. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/workflows/topic-search.md +0 -0
  1041. /package/templates/repo/.github/skills/{fix → ck-fix}/references/workflow-types.md +0 -0
  1042. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-best-practices.md +0 -0
  1043. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-prompts.md +0 -0
  1044. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-techniques.md +0 -0
  1045. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/animejs.md +0 -0
  1046. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/design-extraction-overview.md +0 -0
  1047. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-best-practices.md +0 -0
  1048. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-output-templates.md +0 -0
  1049. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-prompts.md +0 -0
  1050. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-accessibility.md +0 -0
  1051. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-best-practices.md +0 -0
  1052. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-optimization.md +0 -0
  1053. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-overview.md +0 -0
  1054. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-workflows.md +0 -0
  1055. /package/templates/repo/.github/skills/{git → ck-git}/references/branch-management.md +0 -0
  1056. /package/templates/repo/.github/skills/{git → ck-git}/references/gh-cli-guide.md +0 -0
  1057. /package/templates/repo/.github/skills/{git → ck-git}/references/safety-protocols.md +0 -0
  1058. /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/references/mcp-protocol.md +0 -0
  1059. /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/cli.ts +0 -0
  1060. /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/package.json +0 -0
  1061. /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/tsconfig.json +0 -0
  1062. /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/cli-usage.md +0 -0
  1063. /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/configuration.md +0 -0
  1064. /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/diagram-types.md +0 -0
  1065. /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/examples.md +0 -0
  1066. /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/integration.md +0 -0
  1067. /package/templates/repo/.github/skills/{planning → ck-planning}/references/solution-design.md +0 -0
  1068. /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/attribution.md +0 -0
  1069. /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/collision-zone-thinking.md +0 -0
  1070. /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/inversion-exercise.md +0 -0
  1071. /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/meta-pattern-recognition.md +0 -0
  1072. /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/scale-game.md +0 -0
  1073. /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/simplification-cascades.md +0 -0
  1074. /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/when-stuck.md +0 -0
  1075. /package/templates/repo/.github/skills/{repomix → ck-repomix}/references/configuration.md +0 -0
  1076. /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/repos.example.json +0 -0
  1077. /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/requirements.txt +0 -0
  1078. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/.env.example +0 -0
  1079. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-strategies.md +0 -0
  1080. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-techniques.md +0 -0
  1081. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/core-patterns.md +0 -0
  1082. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-api.md +0 -0
  1083. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-architecture.md +0 -0
  1084. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-debug.md +0 -0
  1085. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/scripts/format-thought.js +0 -0
  1086. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/scripts/process-thought.js +0 -0
  1087. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-OFL.txt +0 -0
  1088. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  1089. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  1090. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-OFL.txt +0 -0
  1091. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  1092. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-OFL.txt +0 -0
  1093. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-Regular.ttf +0 -0
  1094. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  1095. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-OFL.txt +0 -0
  1096. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  1097. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  1098. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  1099. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-OFL.txt +0 -0
  1100. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  1101. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-OFL.txt +0 -0
  1102. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-Regular.ttf +0 -0
  1103. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-OFL.txt +0 -0
  1104. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-Regular.ttf +0 -0
  1105. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Bold.ttf +0 -0
  1106. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-OFL.txt +0 -0
  1107. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Regular.ttf +0 -0
  1108. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-OFL.txt +0 -0
  1109. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-Regular.ttf +0 -0
  1110. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  1111. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-OFL.txt +0 -0
  1112. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  1113. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  1114. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  1115. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  1116. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  1117. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  1118. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  1119. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  1120. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-OFL.txt +0 -0
  1121. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  1122. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  1123. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  1124. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-OFL.txt +0 -0
  1125. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-Regular.ttf +0 -0
  1126. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  1127. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-OFL.txt +0 -0
  1128. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  1129. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Light.ttf +0 -0
  1130. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Medium.ttf +0 -0
  1131. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-OFL.txt +0 -0
  1132. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-OFL.txt +0 -0
  1133. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  1134. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Bold.ttf +0 -0
  1135. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  1136. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Italic.ttf +0 -0
  1137. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-OFL.txt +0 -0
  1138. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Regular.ttf +0 -0
  1139. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Bold.ttf +0 -0
  1140. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-OFL.txt +0 -0
  1141. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Regular.ttf +0 -0
  1142. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -0
  1143. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  1144. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Bold.ttf +0 -0
  1145. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-OFL.txt +0 -0
  1146. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Regular.ttf +0 -0
  1147. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  1148. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-OFL.txt +0 -0
  1149. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-OFL.txt +0 -0
  1150. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  1151. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  1152. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-OFL.txt +0 -0
  1153. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  1154. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-OFL.txt +0 -0
  1155. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  1156. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  1157. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-OFL.txt +0 -0
  1158. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Medium.ttf +0 -0
  1159. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-OFL.txt +0 -0
  1160. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Regular.ttf +0 -0
  1161. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Bold.ttf +0 -0
  1162. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  1163. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Italic.ttf +0 -0
  1164. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-OFL.txt +0 -0
  1165. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Regular.ttf +0 -0
  1166. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-OFL.txt +0 -0
  1167. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  1168. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/canvas-design-system.md +0 -0
  1169. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-accessibility.md +0 -0
  1170. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-components.md +0 -0
  1171. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-theming.md +0 -0
  1172. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-customization.md +0 -0
  1173. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-responsive.md +0 -0
  1174. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-utilities.md +0 -0
  1175. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/requirements.txt +0 -0
  1176. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/shadcn_add.py +0 -0
  1177. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/tailwind_config_gen.py +0 -0
  1178. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/accessibility-testing.md +0 -0
  1179. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/api-testing.md +0 -0
  1180. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/ci-cd-testing-workflows.md +0 -0
  1181. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/component-testing.md +0 -0
  1182. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/contract-testing.md +0 -0
  1183. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/cross-browser-checklist.md +0 -0
  1184. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/database-testing.md +0 -0
  1185. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/e2e-testing-playwright.md +0 -0
  1186. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/functional-testing-checklist.md +0 -0
  1187. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/interactive-testing-patterns.md +0 -0
  1188. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/load-testing-k6.md +0 -0
  1189. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/mobile-gesture-testing.md +0 -0
  1190. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/performance-core-web-vitals.md +0 -0
  1191. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/playwright-component-testing.md +0 -0
  1192. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/pre-release-checklist.md +0 -0
  1193. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/report-format.md +0 -0
  1194. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/security-checklists.md +0 -0
  1195. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/security-testing-overview.md +0 -0
  1196. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/shadow-dom-testing.md +0 -0
  1197. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-data-management.md +0 -0
  1198. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-execution-workflow.md +0 -0
  1199. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-flakiness-mitigation.md +0 -0
  1200. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/testing-pyramid-strategy.md +0 -0
  1201. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/ui-testing-workflow.md +0 -0
  1202. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/unit-integration-testing.md +0 -0
  1203. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/visual-regression.md +0 -0
  1204. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/vulnerability-payloads.md +0 -0
  1205. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/scripts/analyze-test-results.js +0 -0
  1206. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/scripts/init-playwright.js +0 -0
@@ -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
- ]