agent-skill-kit 3.9.135

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 (615) hide show
  1. package/.agent/global.d.ts +80 -0
  2. package/.agent/rules/GEMINI.md +210 -0
  3. package/.agent/rules/autopilot.md +287 -0
  4. package/.agent/rules/code-rules.md +227 -0
  5. package/.agent/scripts/audit_workflows.ts +23 -0
  6. package/.agent/scripts/auto_preview.ts +170 -0
  7. package/.agent/scripts/checklist.ts +180 -0
  8. package/.agent/scripts/compile-agents.ts +237 -0
  9. package/.agent/scripts/fix_skills.ts +49 -0
  10. package/.agent/scripts/session_manager.ts +222 -0
  11. package/.agent/scripts/skill-audit.ts +255 -0
  12. package/.agent/scripts/sync_workflows.ts +54 -0
  13. package/.agent/scripts/utils/colors.ts +58 -0
  14. package/.agent/scripts/utils/process-manager.ts +131 -0
  15. package/.agent/scripts/utils/reporter.ts +192 -0
  16. package/.agent/scripts/utils/runner.ts +128 -0
  17. package/.agent/scripts/verify_all.ts +243 -0
  18. package/.agent/scripts/version-sync.ts +256 -0
  19. package/.agent/skills/SKILL_INDEX.md +129 -0
  20. package/.agent/skills/agent-browser/AGENTS.md +728 -0
  21. package/.agent/skills/agent-browser/SKILL.md +193 -0
  22. package/.agent/skills/agent-browser/rules/_sections.md +15 -0
  23. package/.agent/skills/agent-browser/rules/_template.md +32 -0
  24. package/.agent/skills/agent-browser/rules/engineering-spec.md +528 -0
  25. package/.agent/skills/agent-browser/scripts/browser_cli.ts +52 -0
  26. package/.agent/skills/agent-browser/scripts/session_manager.ts +166 -0
  27. package/.agent/skills/ai-artist/AGENTS.md +1082 -0
  28. package/.agent/skills/ai-artist/SKILL.md +186 -0
  29. package/.agent/skills/ai-artist/rules/_sections.md +30 -0
  30. package/.agent/skills/ai-artist/rules/_template.md +32 -0
  31. package/.agent/skills/ai-artist/rules/domain-code.md +118 -0
  32. package/.agent/skills/ai-artist/rules/domain-marketing.md +105 -0
  33. package/.agent/skills/ai-artist/rules/engineering-spec.md +519 -0
  34. package/.agent/skills/ai-artist/rules/image-prompts.md +195 -0
  35. package/.agent/skills/ai-artist/rules/model-syntax.md +115 -0
  36. package/.agent/skills/ai-artist/scripts/prompt_compiler.ts +72 -0
  37. package/.agent/skills/ai-artist/templates/image-core.txt +1 -0
  38. package/.agent/skills/ai-artist/templates/llm-core.txt +6 -0
  39. package/.agent/skills/api-architect/AGENTS.md +1896 -0
  40. package/.agent/skills/api-architect/SKILL.md +173 -0
  41. package/.agent/skills/api-architect/rules/_sections.md +35 -0
  42. package/.agent/skills/api-architect/rules/_template.md +32 -0
  43. package/.agent/skills/api-architect/rules/api-style.md +115 -0
  44. package/.agent/skills/api-architect/rules/auth.md +134 -0
  45. package/.agent/skills/api-architect/rules/documentation.md +131 -0
  46. package/.agent/skills/api-architect/rules/engineering-spec.md +505 -0
  47. package/.agent/skills/api-architect/rules/graphql.md +154 -0
  48. package/.agent/skills/api-architect/rules/rate-limiting.md +76 -0
  49. package/.agent/skills/api-architect/rules/response.md +138 -0
  50. package/.agent/skills/api-architect/rules/rest.md +113 -0
  51. package/.agent/skills/api-architect/rules/security-testing.md +146 -0
  52. package/.agent/skills/api-architect/rules/trpc.md +129 -0
  53. package/.agent/skills/api-architect/rules/versioning.md +100 -0
  54. package/.agent/skills/api-architect/scripts/api_validator.ts +413 -0
  55. package/.agent/skills/auth-patterns/AGENTS.md +1830 -0
  56. package/.agent/skills/auth-patterns/SKILL.md +163 -0
  57. package/.agent/skills/auth-patterns/rules/_sections.md +30 -0
  58. package/.agent/skills/auth-patterns/rules/_template.md +32 -0
  59. package/.agent/skills/auth-patterns/rules/engineering-spec.md +515 -0
  60. package/.agent/skills/auth-patterns/rules/jwt-deep.md +196 -0
  61. package/.agent/skills/auth-patterns/rules/mfa.md +174 -0
  62. package/.agent/skills/auth-patterns/rules/oauth2.md +134 -0
  63. package/.agent/skills/auth-patterns/rules/passkey.md +243 -0
  64. package/.agent/skills/auth-patterns/rules/rbac-abac.md +206 -0
  65. package/.agent/skills/auth-patterns/rules/session.md +183 -0
  66. package/.agent/skills/auth-patterns/scripts/auth_validator.ts +121 -0
  67. package/.agent/skills/chrome-devtools/AGENTS.md +952 -0
  68. package/.agent/skills/chrome-devtools/SKILL.md +160 -0
  69. package/.agent/skills/chrome-devtools/rules/_sections.md +25 -0
  70. package/.agent/skills/chrome-devtools/rules/_template.md +32 -0
  71. package/.agent/skills/chrome-devtools/rules/aria-snapshot.md +95 -0
  72. package/.agent/skills/chrome-devtools/rules/engineering-spec.md +510 -0
  73. package/.agent/skills/chrome-devtools/rules/scripts-guide.md +174 -0
  74. package/.agent/skills/chrome-devtools/scripts/aria-snapshot.ts +3 -0
  75. package/.agent/skills/chrome-devtools/scripts/click.ts +3 -0
  76. package/.agent/skills/chrome-devtools/scripts/console.ts +3 -0
  77. package/.agent/skills/chrome-devtools/scripts/core_cli.ts +79 -0
  78. package/.agent/skills/chrome-devtools/scripts/evaluate.ts +3 -0
  79. package/.agent/skills/chrome-devtools/scripts/fill.ts +3 -0
  80. package/.agent/skills/chrome-devtools/scripts/navigate.ts +3 -0
  81. package/.agent/skills/chrome-devtools/scripts/network.ts +3 -0
  82. package/.agent/skills/chrome-devtools/scripts/performance.ts +3 -0
  83. package/.agent/skills/chrome-devtools/scripts/screenshot.ts +3 -0
  84. package/.agent/skills/chrome-devtools/scripts/select-ref.ts +3 -0
  85. package/.agent/skills/cicd-pipeline/AGENTS.md +809 -0
  86. package/.agent/skills/cicd-pipeline/SKILL.md +164 -0
  87. package/.agent/skills/cicd-pipeline/rules/_sections.md +15 -0
  88. package/.agent/skills/cicd-pipeline/rules/_template.md +32 -0
  89. package/.agent/skills/cicd-pipeline/rules/engineering-spec.md +477 -0
  90. package/.agent/skills/cicd-pipeline/scripts/flag-manager.ts +253 -0
  91. package/.agent/skills/cicd-pipeline/scripts/pipeline_validator.ts +133 -0
  92. package/.agent/skills/code-constitution/AGENTS.md +597 -0
  93. package/.agent/skills/code-constitution/CHANGELOG.md +216 -0
  94. package/.agent/skills/code-constitution/SKILL.md +191 -0
  95. package/.agent/skills/code-constitution/VERSION +3 -0
  96. package/.agent/skills/code-constitution/examples/violation-backend-mutation/after.tsx +59 -0
  97. package/.agent/skills/code-constitution/examples/violation-backend-mutation/before.tsx +42 -0
  98. package/.agent/skills/code-constitution/examples/violation-backend-mutation/explanation.md +91 -0
  99. package/.agent/skills/code-constitution/examples/violation-chart-injection/after.tsx +99 -0
  100. package/.agent/skills/code-constitution/examples/violation-chart-injection/before.tsx +57 -0
  101. package/.agent/skills/code-constitution/examples/violation-chart-injection/explanation.md +120 -0
  102. package/.agent/skills/code-constitution/knowledge/lessons-learned.yaml +3 -0
  103. package/.agent/skills/code-constitution/metadata/precedence.yaml +117 -0
  104. package/.agent/skills/code-constitution/metadata/scope-map.yaml +156 -0
  105. package/.agent/skills/code-constitution/proposals/v1.1-change-proposal-template.md +201 -0
  106. package/.agent/skills/code-constitution/resources/AUTHORITY_MODEL.md +115 -0
  107. package/.agent/skills/code-constitution/resources/ENFORCEMENT_GUIDE.md +246 -0
  108. package/.agent/skills/code-constitution/resources/LOAD_ORDER.md +86 -0
  109. package/.agent/skills/code-constitution/rules/_sections.md +15 -0
  110. package/.agent/skills/code-constitution/rules/_template.md +32 -0
  111. package/.agent/skills/code-constitution/rules/constitution/master-constitution.md +210 -0
  112. package/.agent/skills/code-constitution/rules/doctrines/architecture/architecture-doctrine.md +188 -0
  113. package/.agent/skills/code-constitution/rules/doctrines/backend/backend-data-engine-doctrine.md +218 -0
  114. package/.agent/skills/code-constitution/rules/doctrines/commercial/commercial-guardrails-doctrine.md +196 -0
  115. package/.agent/skills/code-constitution/rules/doctrines/data/data-integrity-doctrine.md +202 -0
  116. package/.agent/skills/code-constitution/rules/doctrines/frontend/frontend-mobile-doctrine.md +169 -0
  117. package/.agent/skills/code-constitution/rules/doctrines/frontend/interaction-patterns-doctrine.md +176 -0
  118. package/.agent/skills/code-constitution/rules/doctrines/learning/learning-engine-doctrine.md +192 -0
  119. package/.agent/skills/code-constitution/rules/doctrines/performance/performance-doctrine.md +180 -0
  120. package/.agent/skills/code-constitution/rules/doctrines/review/code-review-doctrine.md +174 -0
  121. package/.agent/skills/code-constitution/rules/enforcement/agents/agent-enforcement-protocol.md +218 -0
  122. package/.agent/skills/code-constitution/rules/enforcement/agents/agent-system-prompt.md +196 -0
  123. package/.agent/skills/code-constitution/rules/enforcement/checklists/backend-api-review-checklist.md +131 -0
  124. package/.agent/skills/code-constitution/rules/enforcement/checklists/chart-component-review-checklist.md +147 -0
  125. package/.agent/skills/code-constitution/rules/enforcement/checklists/frontend-review-checklist.md +194 -0
  126. package/.agent/skills/code-constitution/rules/enforcement/playbooks/doctrine-violation-playbook.md +236 -0
  127. package/.agent/skills/code-constitution/rules/engineering-spec.md +561 -0
  128. package/.agent/skills/code-constitution/scripts/audit_pr.ts +219 -0
  129. package/.agent/skills/code-constitution/scripts/check_boundaries.ts +134 -0
  130. package/.agent/skills/code-constitution/scripts/learn.ts +202 -0
  131. package/.agent/skills/code-constitution/scripts/validate_doctrine.ts +287 -0
  132. package/.agent/skills/code-craft/AGENTS.md +803 -0
  133. package/.agent/skills/code-craft/SKILL.md +170 -0
  134. package/.agent/skills/code-craft/rules/_sections.md +20 -0
  135. package/.agent/skills/code-craft/rules/_template.md +32 -0
  136. package/.agent/skills/code-craft/rules/engineering-spec.md +447 -0
  137. package/.agent/skills/code-craft/rules/verification-scripts.md +83 -0
  138. package/.agent/skills/code-craft/scripts/code_quality_checker.ts +193 -0
  139. package/.agent/skills/code-review/AGENTS.md +1664 -0
  140. package/.agent/skills/code-review/SKILL.md +152 -0
  141. package/.agent/skills/code-review/rules/_sections.md +15 -0
  142. package/.agent/skills/code-review/rules/_template.md +32 -0
  143. package/.agent/skills/code-review/rules/engineering-spec.md +466 -0
  144. package/.agent/skills/code-review/scripts/lint_runner.ts +213 -0
  145. package/.agent/skills/code-review/scripts/type_coverage.ts +118 -0
  146. package/.agent/skills/context-engineering/AGENTS.md +499 -0
  147. package/.agent/skills/context-engineering/SKILL.md +147 -0
  148. package/.agent/skills/context-engineering/rules/_sections.md +15 -0
  149. package/.agent/skills/context-engineering/rules/_template.md +32 -0
  150. package/.agent/skills/context-engineering/rules/engineering-spec.md +463 -0
  151. package/.agent/skills/context-engineering/scripts/context_analyzer.ts +127 -0
  152. package/.agent/skills/copywriting/AGENTS.md +501 -0
  153. package/.agent/skills/copywriting/SKILL.md +188 -0
  154. package/.agent/skills/copywriting/rules/_sections.md +15 -0
  155. package/.agent/skills/copywriting/rules/_template.md +32 -0
  156. package/.agent/skills/copywriting/rules/engineering-spec.md +465 -0
  157. package/.agent/skills/copywriting/scripts/copy_validator.ts +185 -0
  158. package/.agent/skills/data-modeler/AGENTS.md +814 -0
  159. package/.agent/skills/data-modeler/SKILL.md +195 -0
  160. package/.agent/skills/data-modeler/rules/_sections.md +15 -0
  161. package/.agent/skills/data-modeler/rules/_template.md +32 -0
  162. package/.agent/skills/data-modeler/rules/database-selection.md +124 -0
  163. package/.agent/skills/data-modeler/rules/engineering-spec.md +479 -0
  164. package/.agent/skills/data-modeler/rules/indexing.md +166 -0
  165. package/.agent/skills/data-modeler/rules/migrations.md +176 -0
  166. package/.agent/skills/data-modeler/rules/optimization.md +161 -0
  167. package/.agent/skills/data-modeler/rules/orm-selection.md +155 -0
  168. package/.agent/skills/data-modeler/rules/schema-design.md +162 -0
  169. package/.agent/skills/data-modeler/scripts/schema_validator.ts +357 -0
  170. package/.agent/skills/debug-pro/AGENTS.md +798 -0
  171. package/.agent/skills/debug-pro/SKILL.md +193 -0
  172. package/.agent/skills/debug-pro/defense-in-depth/SKILL.md +148 -0
  173. package/.agent/skills/debug-pro/root-cause-tracing/SKILL.md +196 -0
  174. package/.agent/skills/debug-pro/root-cause-tracing/find-polluter.sh +63 -0
  175. package/.agent/skills/debug-pro/rules/_sections.md +15 -0
  176. package/.agent/skills/debug-pro/rules/_template.md +32 -0
  177. package/.agent/skills/debug-pro/rules/engineering-spec.md +491 -0
  178. package/.agent/skills/debug-pro/scripts/debug_verifier.ts +148 -0
  179. package/.agent/skills/debug-pro/verification-before-completion/SKILL.md +160 -0
  180. package/.agent/skills/design-system/AGENTS.md +4216 -0
  181. package/.agent/skills/design-system/SKILL.md +186 -0
  182. package/.agent/skills/design-system/rules/_sections.md +65 -0
  183. package/.agent/skills/design-system/rules/_template.md +32 -0
  184. package/.agent/skills/design-system/rules/animation-guide.md +355 -0
  185. package/.agent/skills/design-system/rules/color-system.md +335 -0
  186. package/.agent/skills/design-system/rules/color-systems.md +133 -0
  187. package/.agent/skills/design-system/rules/decision-trees.md +442 -0
  188. package/.agent/skills/design-system/rules/design-extraction.md +152 -0
  189. package/.agent/skills/design-system/rules/engineering-spec.md +484 -0
  190. package/.agent/skills/design-system/rules/motion-design.md +161 -0
  191. package/.agent/skills/design-system/rules/motion-graphics.md +330 -0
  192. package/.agent/skills/design-system/rules/spatial-composition.md +184 -0
  193. package/.agent/skills/design-system/rules/typography-system.md +369 -0
  194. package/.agent/skills/design-system/rules/typography.md +124 -0
  195. package/.agent/skills/design-system/rules/ux-psychology.md +565 -0
  196. package/.agent/skills/design-system/rules/visual-effects.md +407 -0
  197. package/.agent/skills/design-system/scripts/accessibility_checker.ts +292 -0
  198. package/.agent/skills/design-system/scripts/ux_audit.ts +356 -0
  199. package/.agent/skills/doc-templates/AGENTS.md +820 -0
  200. package/.agent/skills/doc-templates/SKILL.md +260 -0
  201. package/.agent/skills/doc-templates/rules/_sections.md +20 -0
  202. package/.agent/skills/doc-templates/rules/_template.md +32 -0
  203. package/.agent/skills/doc-templates/rules/doc.md +355 -0
  204. package/.agent/skills/doc-templates/rules/engineering-spec.md +422 -0
  205. package/.agent/skills/doc-templates/scripts/editor-server.ts +162 -0
  206. package/.agent/skills/doc-templates/scripts/inject_otel.ts +22 -0
  207. package/.agent/skills/doc-templates/scripts/kanban-server.ts +171 -0
  208. package/.agent/skills/doc-templates/scripts/markdown-server.ts +185 -0
  209. package/.agent/skills/e2e-automation/AGENTS.md +882 -0
  210. package/.agent/skills/e2e-automation/SKILL.md +175 -0
  211. package/.agent/skills/e2e-automation/rules/_sections.md +20 -0
  212. package/.agent/skills/e2e-automation/rules/_template.md +32 -0
  213. package/.agent/skills/e2e-automation/rules/aria-snapshot.md +185 -0
  214. package/.agent/skills/e2e-automation/rules/engineering-spec.md +501 -0
  215. package/.agent/skills/e2e-automation/scripts/playwright_runner.ts +208 -0
  216. package/.agent/skills/execution-reporter/AGENTS.md +419 -0
  217. package/.agent/skills/execution-reporter/SKILL.md +152 -0
  218. package/.agent/skills/execution-reporter/rules/_sections.md +15 -0
  219. package/.agent/skills/execution-reporter/rules/_template.md +32 -0
  220. package/.agent/skills/execution-reporter/rules/engineering-spec.md +389 -0
  221. package/.agent/skills/game-development/2d-games/SKILL.md +140 -0
  222. package/.agent/skills/game-development/3d-games/SKILL.md +156 -0
  223. package/.agent/skills/game-development/AGENTS.md +783 -0
  224. package/.agent/skills/game-development/SKILL.md +178 -0
  225. package/.agent/skills/game-development/game-art/SKILL.md +207 -0
  226. package/.agent/skills/game-development/game-audio/SKILL.md +211 -0
  227. package/.agent/skills/game-development/game-design/SKILL.md +151 -0
  228. package/.agent/skills/game-development/mobile-games/SKILL.md +130 -0
  229. package/.agent/skills/game-development/multiplayer/SKILL.md +154 -0
  230. package/.agent/skills/game-development/pc-games/SKILL.md +167 -0
  231. package/.agent/skills/game-development/rules/_sections.md +15 -0
  232. package/.agent/skills/game-development/rules/_template.md +32 -0
  233. package/.agent/skills/game-development/rules/engineering-spec.md +480 -0
  234. package/.agent/skills/game-development/vr-ar/SKILL.md +144 -0
  235. package/.agent/skills/game-development/web-games/SKILL.md +173 -0
  236. package/.agent/skills/git-workflow/AGENTS.md +554 -0
  237. package/.agent/skills/git-workflow/SKILL.md +181 -0
  238. package/.agent/skills/git-workflow/rules/_sections.md +15 -0
  239. package/.agent/skills/git-workflow/rules/_template.md +32 -0
  240. package/.agent/skills/git-workflow/rules/engineering-spec.md +518 -0
  241. package/.agent/skills/gitops/AGENTS.md +921 -0
  242. package/.agent/skills/gitops/SKILL.md +163 -0
  243. package/.agent/skills/gitops/rules/_sections.md +25 -0
  244. package/.agent/skills/gitops/rules/_template.md +32 -0
  245. package/.agent/skills/gitops/rules/argocd-setup.md +148 -0
  246. package/.agent/skills/gitops/rules/engineering-spec.md +450 -0
  247. package/.agent/skills/gitops/rules/sync-policies.md +145 -0
  248. package/.agent/skills/google-adk-python/AGENTS.md +1054 -0
  249. package/.agent/skills/google-adk-python/SKILL.md +168 -0
  250. package/.agent/skills/google-adk-python/rules/_sections.md +25 -0
  251. package/.agent/skills/google-adk-python/rules/_template.md +32 -0
  252. package/.agent/skills/google-adk-python/rules/deployment.md +138 -0
  253. package/.agent/skills/google-adk-python/rules/engineering-spec.md +451 -0
  254. package/.agent/skills/google-adk-python/rules/multi-agent.md +146 -0
  255. package/.agent/skills/google-adk-python/rules/tools.md +131 -0
  256. package/.agent/skills/idea-storm/AGENTS.md +995 -0
  257. package/.agent/skills/idea-storm/SKILL.md +160 -0
  258. package/.agent/skills/idea-storm/rules/_sections.md +25 -0
  259. package/.agent/skills/idea-storm/rules/_template.md +32 -0
  260. package/.agent/skills/idea-storm/rules/architecture-debate.md +122 -0
  261. package/.agent/skills/idea-storm/rules/dynamic-questioning.md +374 -0
  262. package/.agent/skills/idea-storm/rules/engineering-spec.md +466 -0
  263. package/.agent/skills/knowledge-compiler/SKILL.md +320 -0
  264. package/.agent/skills/knowledge-graph/AGENTS.md +762 -0
  265. package/.agent/skills/knowledge-graph/SKILL.md +157 -0
  266. package/.agent/skills/knowledge-graph/rules/_sections.md +15 -0
  267. package/.agent/skills/knowledge-graph/rules/_template.md +32 -0
  268. package/.agent/skills/knowledge-graph/rules/engineering-spec.md +439 -0
  269. package/.agent/skills/knowledge-linter/SKILL.md +217 -0
  270. package/.agent/skills/lifecycle-orchestrator/AGENTS.md +989 -0
  271. package/.agent/skills/lifecycle-orchestrator/SKILL.md +169 -0
  272. package/.agent/skills/lifecycle-orchestrator/rules/_sections.md +15 -0
  273. package/.agent/skills/lifecycle-orchestrator/rules/_template.md +32 -0
  274. package/.agent/skills/lifecycle-orchestrator/rules/engineering-spec.md +525 -0
  275. package/.agent/skills/lifecycle-orchestrator/scripts/state_manager.ts +189 -0
  276. package/.agent/skills/mcp-builder/AGENTS.md +1653 -0
  277. package/.agent/skills/mcp-builder/SKILL.md +166 -0
  278. package/.agent/skills/mcp-builder/rules/_sections.md +40 -0
  279. package/.agent/skills/mcp-builder/rules/_template.md +32 -0
  280. package/.agent/skills/mcp-builder/rules/best-practices.md +157 -0
  281. package/.agent/skills/mcp-builder/rules/design-principles.md +105 -0
  282. package/.agent/skills/mcp-builder/rules/engineering-spec.md +473 -0
  283. package/.agent/skills/mcp-builder/rules/evaluation.md +103 -0
  284. package/.agent/skills/mcp-builder/rules/python-implementation.md +249 -0
  285. package/.agent/skills/mcp-builder/rules/quickstart.md +111 -0
  286. package/.agent/skills/mcp-builder/rules/typescript-implementation.md +280 -0
  287. package/.agent/skills/mcp-management/AGENTS.md +837 -0
  288. package/.agent/skills/mcp-management/SKILL.md +164 -0
  289. package/.agent/skills/mcp-management/rules/_sections.md +25 -0
  290. package/.agent/skills/mcp-management/rules/_template.md +32 -0
  291. package/.agent/skills/mcp-management/rules/cli-usage.md +146 -0
  292. package/.agent/skills/mcp-management/rules/engineering-spec.md +501 -0
  293. package/.agent/skills/mcp-management/rules/protocol.md +159 -0
  294. package/.agent/skills/media-processing/AGENTS.md +479 -0
  295. package/.agent/skills/media-processing/SKILL.md +176 -0
  296. package/.agent/skills/media-processing/rules/_sections.md +15 -0
  297. package/.agent/skills/media-processing/rules/_template.md +32 -0
  298. package/.agent/skills/media-processing/rules/engineering-spec.md +452 -0
  299. package/.agent/skills/media-processing/scripts/convert-video.ts +155 -0
  300. package/.agent/skills/media-processing/scripts/optimize-image.ts +127 -0
  301. package/.agent/skills/mobile-design/AGENTS.md +6531 -0
  302. package/.agent/skills/mobile-design/SKILL.md +165 -0
  303. package/.agent/skills/mobile-design/rules/_sections.md +45 -0
  304. package/.agent/skills/mobile-design/rules/_template.md +32 -0
  305. package/.agent/skills/mobile-design/rules/decision-trees.md +540 -0
  306. package/.agent/skills/mobile-design/rules/engineering-spec.md +467 -0
  307. package/.agent/skills/mobile-design/rules/mobile-backend.md +516 -0
  308. package/.agent/skills/mobile-design/rules/mobile-color-system.md +436 -0
  309. package/.agent/skills/mobile-design/rules/mobile-debugging.md +146 -0
  310. package/.agent/skills/mobile-design/rules/mobile-design-thinking.md +381 -0
  311. package/.agent/skills/mobile-design/rules/mobile-navigation.md +474 -0
  312. package/.agent/skills/mobile-design/rules/mobile-performance.md +783 -0
  313. package/.agent/skills/mobile-design/rules/mobile-testing.md +380 -0
  314. package/.agent/skills/mobile-design/rules/mobile-typography.md +449 -0
  315. package/.agent/skills/mobile-design/rules/platform-android.md +682 -0
  316. package/.agent/skills/mobile-design/rules/platform-ios.md +577 -0
  317. package/.agent/skills/mobile-design/rules/touch-psychology.md +553 -0
  318. package/.agent/skills/mobile-design/scripts/mobile_audit.ts +309 -0
  319. package/.agent/skills/mobile-developer/AGENTS.md +904 -0
  320. package/.agent/skills/mobile-developer/SKILL.md +194 -0
  321. package/.agent/skills/mobile-developer/rules/_sections.md +75 -0
  322. package/.agent/skills/mobile-developer/rules/_template.md +32 -0
  323. package/.agent/skills/mobile-developer/rules/anti-patterns.md +70 -0
  324. package/.agent/skills/mobile-developer/rules/app-store-optimization.md +319 -0
  325. package/.agent/skills/mobile-developer/rules/decision-trees.md +545 -0
  326. package/.agent/skills/mobile-developer/rules/deep-linking.md +441 -0
  327. package/.agent/skills/mobile-developer/rules/engineering-spec.md +477 -0
  328. package/.agent/skills/mobile-developer/rules/flutter.md +475 -0
  329. package/.agent/skills/mobile-developer/rules/mobile-backend.md +516 -0
  330. package/.agent/skills/mobile-developer/rules/mobile-color-system.md +444 -0
  331. package/.agent/skills/mobile-developer/rules/mobile-debugging.md +428 -0
  332. package/.agent/skills/mobile-developer/rules/mobile-design-thinking.md +367 -0
  333. package/.agent/skills/mobile-developer/rules/mobile-navigation.md +483 -0
  334. package/.agent/skills/mobile-developer/rules/mobile-performance.md +778 -0
  335. package/.agent/skills/mobile-developer/rules/mobile-testing.md +382 -0
  336. package/.agent/skills/mobile-developer/rules/mobile-typography.md +457 -0
  337. package/.agent/skills/mobile-developer/rules/native.md +572 -0
  338. package/.agent/skills/mobile-developer/rules/platform-android.md +676 -0
  339. package/.agent/skills/mobile-developer/rules/platform-ios.md +571 -0
  340. package/.agent/skills/mobile-developer/rules/push-notifications.md +599 -0
  341. package/.agent/skills/mobile-developer/rules/react-native.md +422 -0
  342. package/.agent/skills/mobile-developer/rules/touch-psychology.md +547 -0
  343. package/.agent/skills/mobile-developer/scripts/mobile_audit.ts +701 -0
  344. package/.agent/skills/nextjs-pro/AGENTS.md +3932 -0
  345. package/.agent/skills/nextjs-pro/SKILL.md +171 -0
  346. package/.agent/skills/nextjs-pro/rules/_sections.md +50 -0
  347. package/.agent/skills/nextjs-pro/rules/_template.md +32 -0
  348. package/.agent/skills/nextjs-pro/rules/advanced-event-handler-refs.md +59 -0
  349. package/.agent/skills/nextjs-pro/rules/advanced-init-once.md +46 -0
  350. package/.agent/skills/nextjs-pro/rules/advanced-use-latest.md +43 -0
  351. package/.agent/skills/nextjs-pro/rules/async-api-routes.md +42 -0
  352. package/.agent/skills/nextjs-pro/rules/async-defer-await.md +84 -0
  353. package/.agent/skills/nextjs-pro/rules/async-dependencies.md +55 -0
  354. package/.agent/skills/nextjs-pro/rules/async-parallel.md +32 -0
  355. package/.agent/skills/nextjs-pro/rules/async-suspense-boundaries.md +103 -0
  356. package/.agent/skills/nextjs-pro/rules/bundle-barrel-imports.md +63 -0
  357. package/.agent/skills/nextjs-pro/rules/bundle-conditional.md +35 -0
  358. package/.agent/skills/nextjs-pro/rules/bundle-defer-third-party.md +53 -0
  359. package/.agent/skills/nextjs-pro/rules/bundle-dynamic-imports.md +39 -0
  360. package/.agent/skills/nextjs-pro/rules/bundle-preload.md +54 -0
  361. package/.agent/skills/nextjs-pro/rules/client-event-listeners.md +78 -0
  362. package/.agent/skills/nextjs-pro/rules/client-localstorage-schema.md +75 -0
  363. package/.agent/skills/nextjs-pro/rules/client-passive-event-listeners.md +52 -0
  364. package/.agent/skills/nextjs-pro/rules/client-swr-dedup.md +60 -0
  365. package/.agent/skills/nextjs-pro/rules/engineering-spec.md +440 -0
  366. package/.agent/skills/nextjs-pro/rules/js-batch-dom-css.md +111 -0
  367. package/.agent/skills/nextjs-pro/rules/js-cache-function-results.md +84 -0
  368. package/.agent/skills/nextjs-pro/rules/js-cache-property-access.md +32 -0
  369. package/.agent/skills/nextjs-pro/rules/js-cache-storage.md +74 -0
  370. package/.agent/skills/nextjs-pro/rules/js-combine-iterations.md +36 -0
  371. package/.agent/skills/nextjs-pro/rules/js-early-exit.md +54 -0
  372. package/.agent/skills/nextjs-pro/rules/js-hoist-regexp.md +49 -0
  373. package/.agent/skills/nextjs-pro/rules/js-index-maps.md +41 -0
  374. package/.agent/skills/nextjs-pro/rules/js-length-check-first.md +53 -0
  375. package/.agent/skills/nextjs-pro/rules/js-min-max-loop.md +86 -0
  376. package/.agent/skills/nextjs-pro/rules/js-set-map-lookups.md +28 -0
  377. package/.agent/skills/nextjs-pro/rules/js-tosorted-immutable.md +61 -0
  378. package/.agent/skills/nextjs-pro/rules/rendering-activity.md +30 -0
  379. package/.agent/skills/nextjs-pro/rules/rendering-animate-svg-wrapper.md +51 -0
  380. package/.agent/skills/nextjs-pro/rules/rendering-conditional-render.md +44 -0
  381. package/.agent/skills/nextjs-pro/rules/rendering-content-visibility.md +42 -0
  382. package/.agent/skills/nextjs-pro/rules/rendering-hoist-jsx.md +50 -0
  383. package/.agent/skills/nextjs-pro/rules/rendering-hydration-no-flicker.md +86 -0
  384. package/.agent/skills/nextjs-pro/rules/rendering-hydration-suppress-warning.md +34 -0
  385. package/.agent/skills/nextjs-pro/rules/rendering-svg-precision.md +32 -0
  386. package/.agent/skills/nextjs-pro/rules/rendering-usetransition-loading.md +79 -0
  387. package/.agent/skills/nextjs-pro/rules/rerender-defer-reads.md +43 -0
  388. package/.agent/skills/nextjs-pro/rules/rerender-dependencies.md +49 -0
  389. package/.agent/skills/nextjs-pro/rules/rerender-derived-state-no-effect.md +44 -0
  390. package/.agent/skills/nextjs-pro/rules/rerender-derived-state.md +33 -0
  391. package/.agent/skills/nextjs-pro/rules/rerender-functional-setstate.md +78 -0
  392. package/.agent/skills/nextjs-pro/rules/rerender-lazy-state-init.md +62 -0
  393. package/.agent/skills/nextjs-pro/rules/rerender-memo-with-default-value.md +42 -0
  394. package/.agent/skills/nextjs-pro/rules/rerender-memo.md +48 -0
  395. package/.agent/skills/nextjs-pro/rules/rerender-move-effect-to-event.md +49 -0
  396. package/.agent/skills/nextjs-pro/rules/rerender-simple-expression-in-memo.md +39 -0
  397. package/.agent/skills/nextjs-pro/rules/rerender-transitions.md +44 -0
  398. package/.agent/skills/nextjs-pro/rules/rerender-use-ref-transient-values.md +77 -0
  399. package/.agent/skills/nextjs-pro/rules/schema.json +34 -0
  400. package/.agent/skills/nextjs-pro/rules/server-after-nonblocking.md +77 -0
  401. package/.agent/skills/nextjs-pro/rules/server-auth-actions.md +100 -0
  402. package/.agent/skills/nextjs-pro/rules/server-cache-lru.md +45 -0
  403. package/.agent/skills/nextjs-pro/rules/server-cache-react.md +80 -0
  404. package/.agent/skills/nextjs-pro/rules/server-dedup-props.md +69 -0
  405. package/.agent/skills/nextjs-pro/rules/server-parallel-fetching.md +87 -0
  406. package/.agent/skills/nextjs-pro/rules/server-serialization.md +42 -0
  407. package/.agent/skills/nodejs-pro/AGENTS.md +866 -0
  408. package/.agent/skills/nodejs-pro/SKILL.md +172 -0
  409. package/.agent/skills/nodejs-pro/rules/_sections.md +50 -0
  410. package/.agent/skills/nodejs-pro/rules/_template.md +32 -0
  411. package/.agent/skills/nodejs-pro/rules/architecture-patterns.md +229 -0
  412. package/.agent/skills/nodejs-pro/rules/async-patterns.md +246 -0
  413. package/.agent/skills/nodejs-pro/rules/engineering-spec.md +438 -0
  414. package/.agent/skills/nodejs-pro/rules/error-handling.md +257 -0
  415. package/.agent/skills/nodejs-pro/rules/framework-selection.md +220 -0
  416. package/.agent/skills/nodejs-pro/rules/runtime-modules.md +176 -0
  417. package/.agent/skills/nodejs-pro/rules/testing-strategy.md +266 -0
  418. package/.agent/skills/nodejs-pro/rules/validation-security.md +205 -0
  419. package/.agent/skills/observability/AGENTS.md +607 -0
  420. package/.agent/skills/observability/SKILL.md +178 -0
  421. package/.agent/skills/observability/rules/_sections.md +15 -0
  422. package/.agent/skills/observability/rules/_template.md +32 -0
  423. package/.agent/skills/observability/rules/engineering-spec.md +440 -0
  424. package/.agent/skills/offensive-sec/AGENTS.md +849 -0
  425. package/.agent/skills/offensive-sec/SKILL.md +191 -0
  426. package/.agent/skills/offensive-sec/rules/_sections.md +15 -0
  427. package/.agent/skills/offensive-sec/rules/_template.md +32 -0
  428. package/.agent/skills/offensive-sec/rules/engineering-spec.md +470 -0
  429. package/.agent/skills/perf-optimizer/AGENTS.md +870 -0
  430. package/.agent/skills/perf-optimizer/SKILL.md +189 -0
  431. package/.agent/skills/perf-optimizer/rules/_sections.md +15 -0
  432. package/.agent/skills/perf-optimizer/rules/_template.md +32 -0
  433. package/.agent/skills/perf-optimizer/rules/backend-patterns.md +312 -0
  434. package/.agent/skills/perf-optimizer/rules/engineering-spec.md +428 -0
  435. package/.agent/skills/perf-optimizer/scripts/lighthouse_audit.ts +201 -0
  436. package/.agent/skills/problem-checker/AGENTS.md +519 -0
  437. package/.agent/skills/problem-checker/SKILL.md +189 -0
  438. package/.agent/skills/problem-checker/rules/_sections.md +15 -0
  439. package/.agent/skills/problem-checker/rules/_template.md +32 -0
  440. package/.agent/skills/problem-checker/rules/engineering-spec.md +483 -0
  441. package/.agent/skills/problem-checker/scripts/check_problems.ts +396 -0
  442. package/.agent/skills/project-planner/AGENTS.md +2698 -0
  443. package/.agent/skills/project-planner/SKILL.md +166 -0
  444. package/.agent/skills/project-planner/rules/_sections.md +15 -0
  445. package/.agent/skills/project-planner/rules/_template.md +32 -0
  446. package/.agent/skills/project-planner/rules/engineering-spec.md +420 -0
  447. package/.agent/skills/python-pro/AGENTS.md +1871 -0
  448. package/.agent/skills/python-pro/SKILL.md +182 -0
  449. package/.agent/skills/python-pro/rules/_sections.md +50 -0
  450. package/.agent/skills/python-pro/rules/_template.md +32 -0
  451. package/.agent/skills/python-pro/rules/async-patterns.md +168 -0
  452. package/.agent/skills/python-pro/rules/django-patterns.md +194 -0
  453. package/.agent/skills/python-pro/rules/engineering-spec.md +442 -0
  454. package/.agent/skills/python-pro/rules/fastapi-patterns.md +179 -0
  455. package/.agent/skills/python-pro/rules/framework-selection.md +167 -0
  456. package/.agent/skills/python-pro/rules/project-structure.md +181 -0
  457. package/.agent/skills/python-pro/rules/testing-patterns.md +212 -0
  458. package/.agent/skills/python-pro/rules/type-hints.md +159 -0
  459. package/.agent/skills/react-pro/AGENTS.md +963 -0
  460. package/.agent/skills/react-pro/SKILL.md +232 -0
  461. package/.agent/skills/react-pro/rules/_sections.md +40 -0
  462. package/.agent/skills/react-pro/rules/_template.md +32 -0
  463. package/.agent/skills/react-pro/rules/component-patterns.md +145 -0
  464. package/.agent/skills/react-pro/rules/composition-compound.md +82 -0
  465. package/.agent/skills/react-pro/rules/data-fetching.md +133 -0
  466. package/.agent/skills/react-pro/rules/engineering-spec.md +453 -0
  467. package/.agent/skills/react-pro/rules/error-boundary.md +61 -0
  468. package/.agent/skills/react-pro/rules/file-organization.md +158 -0
  469. package/.agent/skills/react-pro/rules/hooks-custom.md +61 -0
  470. package/.agent/skills/react-pro/rules/mui-styling.md +138 -0
  471. package/.agent/skills/react-pro/rules/patterns.md +24 -0
  472. package/.agent/skills/react-pro/rules/performance-optimization.md +65 -0
  473. package/.agent/skills/react-pro/rules/performance.md +137 -0
  474. package/.agent/skills/react-pro/rules/react19-hooks.md +85 -0
  475. package/.agent/skills/react-pro/rules/state-management.md +90 -0
  476. package/.agent/skills/react-pro/rules/testing-patterns.md +52 -0
  477. package/.agent/skills/registry.json +1251 -0
  478. package/.agent/skills/security-scanner/AGENTS.md +851 -0
  479. package/.agent/skills/security-scanner/SKILL.md +182 -0
  480. package/.agent/skills/security-scanner/rules/_sections.md +15 -0
  481. package/.agent/skills/security-scanner/rules/_template.md +32 -0
  482. package/.agent/skills/security-scanner/rules/auth-patterns.md +281 -0
  483. package/.agent/skills/security-scanner/rules/checklists.md +186 -0
  484. package/.agent/skills/security-scanner/rules/engineering-spec.md +440 -0
  485. package/.agent/skills/security-scanner/scripts/security_scan.ts +513 -0
  486. package/.agent/skills/seo-optimizer/AGENTS.md +839 -0
  487. package/.agent/skills/seo-optimizer/SKILL.md +180 -0
  488. package/.agent/skills/seo-optimizer/rules/_sections.md +15 -0
  489. package/.agent/skills/seo-optimizer/rules/_template.md +32 -0
  490. package/.agent/skills/seo-optimizer/rules/engineering-spec.md +433 -0
  491. package/.agent/skills/seo-optimizer/scripts/geo_checker.ts +109 -0
  492. package/.agent/skills/seo-optimizer/scripts/seo_checker.ts +308 -0
  493. package/.agent/skills/server-ops/AGENTS.md +643 -0
  494. package/.agent/skills/server-ops/SKILL.md +194 -0
  495. package/.agent/skills/server-ops/rules/_sections.md +15 -0
  496. package/.agent/skills/server-ops/rules/_template.md +32 -0
  497. package/.agent/skills/server-ops/rules/engineering-spec.md +450 -0
  498. package/.agent/skills/shell-script/AGENTS.md +499 -0
  499. package/.agent/skills/shell-script/SKILL.md +205 -0
  500. package/.agent/skills/shell-script/rules/_sections.md +15 -0
  501. package/.agent/skills/shell-script/rules/_template.md +32 -0
  502. package/.agent/skills/shell-script/rules/engineering-spec.md +463 -0
  503. package/.agent/skills/skill-generator/SKILL.md +147 -0
  504. package/.agent/skills/smart-router/SKILL.md +95 -0
  505. package/.agent/skills/studio/AGENTS.md +636 -0
  506. package/.agent/skills/studio/SKILL.md +178 -0
  507. package/.agent/skills/studio/data/charts.csv +26 -0
  508. package/.agent/skills/studio/data/colors.csv +97 -0
  509. package/.agent/skills/studio/data/icons.csv +101 -0
  510. package/.agent/skills/studio/data/landing.csv +31 -0
  511. package/.agent/skills/studio/data/products.csv +97 -0
  512. package/.agent/skills/studio/data/prompts.csv +24 -0
  513. package/.agent/skills/studio/data/react-performance.csv +45 -0
  514. package/.agent/skills/studio/data/stacks/flutter.csv +52 -0
  515. package/.agent/skills/studio/data/stacks/html-tailwind.csv +56 -0
  516. package/.agent/skills/studio/data/stacks/jetpack-compose.csv +53 -0
  517. package/.agent/skills/studio/data/stacks/nextjs.csv +53 -0
  518. package/.agent/skills/studio/data/stacks/nuxt-ui.csv +51 -0
  519. package/.agent/skills/studio/data/stacks/nuxtjs.csv +59 -0
  520. package/.agent/skills/studio/data/stacks/react-native.csv +52 -0
  521. package/.agent/skills/studio/data/stacks/react.csv +54 -0
  522. package/.agent/skills/studio/data/stacks/shadcn.csv +61 -0
  523. package/.agent/skills/studio/data/stacks/svelte.csv +54 -0
  524. package/.agent/skills/studio/data/stacks/swiftui.csv +51 -0
  525. package/.agent/skills/studio/data/stacks/vue.csv +50 -0
  526. package/.agent/skills/studio/data/styles.csv +59 -0
  527. package/.agent/skills/studio/data/typography.csv +58 -0
  528. package/.agent/skills/studio/data/ui-reasoning.csv +101 -0
  529. package/.agent/skills/studio/data/ux-guidelines.csv +100 -0
  530. package/.agent/skills/studio/data/web-interface.csv +31 -0
  531. package/.agent/skills/studio/rules/_sections.md +15 -0
  532. package/.agent/skills/studio/rules/_template.md +32 -0
  533. package/.agent/skills/studio/rules/engineering-spec.md +455 -0
  534. package/.agent/skills/studio/scripts/core.ts +345 -0
  535. package/.agent/skills/studio/scripts/design_system.ts +953 -0
  536. package/.agent/skills/studio/scripts/search.ts +197 -0
  537. package/.agent/skills/studio/scripts/types.ts +147 -0
  538. package/.agent/skills/studio/scripts/utils/component-specs.ts +154 -0
  539. package/.agent/skills/studio/scripts/utils/config-loader.ts +165 -0
  540. package/.agent/skills/studio/scripts/utils/css-templates.ts +169 -0
  541. package/.agent/skills/studio/scripts/utils/css-validator.ts +95 -0
  542. package/.agent/skills/studio/scripts/utils/csv-loader.ts +52 -0
  543. package/.agent/skills/studio/scripts/utils/intelligent-overrides.ts +129 -0
  544. package/.agent/skills/studio/scripts/utils/page-override-formatter.ts +143 -0
  545. package/.agent/skills/studio/scripts/utils/page-type-detector.ts +124 -0
  546. package/.agent/skills/studio/scripts/utils/search-cache.ts +165 -0
  547. package/.agent/skills/studio/scripts/utils/text-utils.ts +44 -0
  548. package/.agent/skills/system-design/AGENTS.md +597 -0
  549. package/.agent/skills/system-design/SKILL.md +153 -0
  550. package/.agent/skills/system-design/rules/_sections.md +15 -0
  551. package/.agent/skills/system-design/rules/_template.md +32 -0
  552. package/.agent/skills/system-design/rules/context-discovery.md +117 -0
  553. package/.agent/skills/system-design/rules/engineering-spec.md +437 -0
  554. package/.agent/skills/system-design/rules/examples.md +180 -0
  555. package/.agent/skills/system-design/rules/pattern-selection.md +130 -0
  556. package/.agent/skills/system-design/rules/patterns-reference.md +110 -0
  557. package/.agent/skills/system-design/rules/trade-off-analysis.md +169 -0
  558. package/.agent/skills/tailwind-kit/AGENTS.md +1135 -0
  559. package/.agent/skills/tailwind-kit/SKILL.md +171 -0
  560. package/.agent/skills/tailwind-kit/rules/_sections.md +20 -0
  561. package/.agent/skills/tailwind-kit/rules/_template.md +32 -0
  562. package/.agent/skills/tailwind-kit/rules/components.md +232 -0
  563. package/.agent/skills/tailwind-kit/rules/engineering-spec.md +435 -0
  564. package/.agent/skills/tailwind-kit/rules/responsive.md +221 -0
  565. package/.agent/skills/tailwind-kit/rules/v4-config.md +72 -0
  566. package/.agent/skills/test-architect/AGENTS.md +851 -0
  567. package/.agent/skills/test-architect/SKILL.md +176 -0
  568. package/.agent/skills/test-architect/rules/_sections.md +15 -0
  569. package/.agent/skills/test-architect/rules/_template.md +32 -0
  570. package/.agent/skills/test-architect/rules/engineering-spec.md +434 -0
  571. package/.agent/skills/test-architect/scripts/test_runner.ts +265 -0
  572. package/.agent/skills/typescript-expert/AGENTS.md +1045 -0
  573. package/.agent/skills/typescript-expert/SKILL.md +200 -0
  574. package/.agent/skills/typescript-expert/rules/_sections.md +20 -0
  575. package/.agent/skills/typescript-expert/rules/_template.md +32 -0
  576. package/.agent/skills/typescript-expert/rules/engineering-spec.md +433 -0
  577. package/.agent/skills/typescript-expert/rules/tsconfig-strict.json +92 -0
  578. package/.agent/skills/typescript-expert/rules/typescript-cheatsheet.md +407 -0
  579. package/.agent/skills/typescript-expert/rules/utility-types.ts +264 -0
  580. package/.agent/skills/typescript-expert/scripts/ts_diagnostic.ts +321 -0
  581. package/.agent/skills/vercel-deploy/AGENTS.md +490 -0
  582. package/.agent/skills/vercel-deploy/SKILL.md +175 -0
  583. package/.agent/skills/vercel-deploy/rules/_sections.md +15 -0
  584. package/.agent/skills/vercel-deploy/rules/_template.md +32 -0
  585. package/.agent/skills/vercel-deploy/rules/engineering-spec.md +463 -0
  586. package/.agent/skills/vercel-deploy/scripts/deploy.sh +310 -0
  587. package/.agent/workflows/api.md +377 -0
  588. package/.agent/workflows/autopilot.md +344 -0
  589. package/.agent/workflows/build.md +338 -0
  590. package/.agent/workflows/chronicle.md +279 -0
  591. package/.agent/workflows/cook.md +217 -0
  592. package/.agent/workflows/diagnose.md +302 -0
  593. package/.agent/workflows/fix.md +253 -0
  594. package/.agent/workflows/game.md +329 -0
  595. package/.agent/workflows/inspect.md +276 -0
  596. package/.agent/workflows/knowledge.md +212 -0
  597. package/.agent/workflows/launch.md +345 -0
  598. package/.agent/workflows/mobile.md +354 -0
  599. package/.agent/workflows/monitor.md +239 -0
  600. package/.agent/workflows/optimize.md +269 -0
  601. package/.agent/workflows/plan.md +278 -0
  602. package/.agent/workflows/stage.md +286 -0
  603. package/.agent/workflows/studio.md +276 -0
  604. package/.agent/workflows/think.md +262 -0
  605. package/.agent/workflows/validate.md +289 -0
  606. package/.agentignore +161 -0
  607. package/.gitattributes +16 -0
  608. package/CHANGELOG.md +198 -0
  609. package/LICENSE +40 -0
  610. package/README.md +173 -0
  611. package/docs/SKILL_DESIGN_GUIDE.md +561 -0
  612. package/docs/The-Complete-Guide-to-Building-Skills-for-Claude.md +1207 -0
  613. package/docs/WORKFLOW_DESIGN_GUIDE.md +325 -0
  614. package/package.json +33 -0
  615. package/tsconfig.json +28 -0
@@ -0,0 +1,1207 @@
1
+ # The Complete Guide to Building Skills for Claude
2
+
3
+ ## Contents
4
+
5
+ - [Introduction](#introduction)
6
+ - [Chapter 1: Fundamentals](#chapter-1-fundamentals)
7
+ - [Chapter 2: Planning and Design](#chapter-2-planning-and-design)
8
+ - [Chapter 3: Testing and Iteration](#chapter-3-testing-and-iteration)
9
+ - [Chapter 4: Distribution and Sharing](#chapter-4-distribution-and-sharing)
10
+ - [Chapter 5: Patterns and Troubleshooting](#chapter-5-patterns-and-troubleshooting)
11
+ - [Chapter 6: Resources and References](#chapter-6-resources-and-references)
12
+ - [Reference A: Quick Checklist](#reference-a-quick-checklist)
13
+ - [Reference B: YAML Frontmatter](#reference-b-yaml-frontmatter)
14
+ - [Reference C: Complete Skill Examples](#reference-c-complete-skill-examples)
15
+
16
+ ---
17
+
18
+ ## Introduction
19
+
20
+ A [skill](https://claude.com/blog/skills) is a set of instructions, packaged as a simple folder, that teaches Claude how to handle specific tasks or workflows. Skills are one of the most powerful ways to customize Claude for your specific needs. Instead of re-explaining your preferences, processes, and domain expertise in every conversation, skills let you teach Claude once and benefit every time.
21
+
22
+ Skills are powerful when you have repeatable workflows: generating frontend designs from specs, conducting research with consistent methodology, creating documents that follow your team's style guide, or orchestrating multi-step processes. They work well with Claude's built-in capabilities like code execution and document creation. For those building MCP integrations, skills add another powerful layer helping turn raw tool access into reliable, optimized workflows.
23
+
24
+ This guide covers everything you need to know to build effective skills, from planning and structure to testing and distribution. Whether you're building a skill for yourself, your team, or for the community, you'll find practical patterns and real-world examples throughout.
25
+
26
+ ### What you'll learn
27
+
28
+ - Technical requirements and best practices for skill structure
29
+ - Patterns for standalone skills and MCP-enhanced workflows
30
+ - Patterns we've seen work well across different use cases
31
+ - How to test, iterate, and distribute your skills
32
+
33
+ ### Who this is for
34
+
35
+ - Developers who want Claude to follow specific workflows consistently
36
+ - Power users who want Claude to follow specific workflows
37
+ - Teams looking to standardize how Claude works across their organization
38
+
39
+ ### Two Paths Through This Guide
40
+
41
+ **Building standalone skills?** Focus on Fundamentals, Planning and Design, and category 1-2.
42
+
43
+ **Enhancing an MCP integration?** The "Skills + MCP" section and category 3 are for you.
44
+
45
+ Both paths share the same technical requirements, but you choose what's relevant to your use case.
46
+
47
+ **What you'll get out of this guide:** By the end, you'll be able to build a functional skill in a single sitting. Expect about 15-30 minutes to build and test your first working skill using the skill-creator.
48
+
49
+ ---
50
+
51
+ ## Chapter 1: Fundamentals
52
+
53
+ ### What is a skill?
54
+
55
+ A skill is a folder containing:
56
+
57
+ - **SKILL.md** (required): Instructions in Markdown with YAML frontmatter
58
+ - **scripts/** (optional): Executable code (Python, Bash, etc.)
59
+ - **references/** (optional): Documentation loaded as needed
60
+ - **assets/** (optional): Templates, fonts, icons used in output
61
+
62
+ ### Core design principles
63
+
64
+ #### Progressive Disclosure
65
+
66
+ Skills use a three-level system:
67
+
68
+ - **First level (YAML frontmatter):** Always loaded in Claude's system prompt. Provides just enough information for Claude to know when each skill should be used without loading all of it into context.
69
+ - **Second level (SKILL.md body):** Loaded when Claude thinks the skill is relevant to the current task. Contains the full instructions and guidance.
70
+ - **Third level (Linked files):** Additional files bundled within the skill directory that Claude can choose to navigate and discover only as needed.
71
+
72
+ This progressive disclosure minimizes token usage while maintaining specialized expertise.
73
+
74
+ #### Composability
75
+
76
+ Claude can load multiple skills simultaneously. Your skill should work well alongside others, not assume it's the only capability available.
77
+
78
+ #### Portability
79
+
80
+ Skills work identically across Claude.ai, Claude Code, and API. Create a skill once and it works across all surfaces without modification, provided the environment supports any dependencies the skill requires.
81
+
82
+ ### For MCP Builders: Skills + Connectors
83
+
84
+ > Building standalone skills without MCP? Skip to [Planning and Design](#chapter-2-planning-and-design) - you can always return here later.
85
+
86
+ If you already have a [working MCP server](https://support.claude.com/en/articles/10949351-getting-started-with-local-mcp-servers-on-claude-desktop), you've done the hard part. Skills are the knowledge layer on top, capturing the workflows and best practices you already know, so Claude can apply them consistently.
87
+
88
+ #### The kitchen analogy
89
+
90
+ **MCP** provides the professional kitchen: access to tools, ingredients, and equipment.
91
+
92
+ **Skills** provide the recipes: step-by-step instructions on how to create something valuable.
93
+
94
+ Together, they enable users to accomplish complex tasks without needing to figure out every step themselves.
95
+
96
+ #### How they work together
97
+
98
+ | | MCP (Connectivity) | Skills (Knowledge) |
99
+ |---|---|---|
100
+ | **Purpose** | Connects Claude to your service (Notion, Asana, Linear, etc.) | Teaches Claude how to use your service effectively |
101
+ | **Function** | Provides real-time data access and tool invocation | Captures workflows and best practices |
102
+ | **Scope** | What Claude can do | How Claude should do it |
103
+
104
+ #### Why this matters for your MCP users
105
+
106
+ **Without skills:**
107
+ - Users connect your MCP but don't know what to do next
108
+ - Support tickets asking "how do I do X with your integration"
109
+ - Each conversation starts from scratch
110
+ - Inconsistent results because users prompt differently each time
111
+ - Users blame your connector when the real issue is workflow guidance
112
+
113
+ **With skills:**
114
+ - Pre-built workflows activate automatically when needed
115
+ - Consistent, reliable tool usage
116
+ - Best practices embedded in every interaction
117
+ - Lower learning curve for your integration
118
+
119
+ ---
120
+
121
+ ## Chapter 2: Planning and Design
122
+
123
+ ### Start with use cases
124
+
125
+ Before writing any code, identify 2-3 concrete use cases your skill should enable.
126
+
127
+ **Good use case definition:**
128
+
129
+ ```
130
+ Use Case: Project Sprint Planning
131
+ Trigger: User says "help me plan this sprint" or "create sprint tasks"
132
+ Steps:
133
+ 1. Fetch current project status from Linear (via MCP)
134
+ 2. Analyze team velocity and capacity
135
+ 3. Suggest task prioritization
136
+ 4. Create tasks in Linear with proper labels and estimates
137
+ Result: Fully planned sprint with tasks created
138
+ ```
139
+
140
+ **Ask yourself:**
141
+ - What does a user want to accomplish?
142
+ - What multi-step workflows does this require?
143
+ - Which tools are needed (built-in or MCP?)
144
+ - What domain knowledge or best practices should be embedded?
145
+
146
+ ### Common skill use case categories
147
+
148
+ At Anthropic, we've observed three common use cases:
149
+
150
+ #### Category 1: Document & Asset Creation
151
+
152
+ **Used for:** Creating consistent, high-quality output including documents, presentations, apps, designs, code, etc.
153
+
154
+ **Real example:** [frontend-design skill](https://github.com/anthropics/skills/tree/main/skills/frontend-design) (also see [skills for docx, pptx, xlsx, and ppt](https://github.com/anthropics/skills/tree/main/skills))
155
+
156
+ > "Create distinctive, production-grade frontend interfaces with high design quality. Use when building web components, pages, artifacts, posters, or applications."
157
+
158
+ **Key techniques:**
159
+ - Embedded style guides and brand standards
160
+ - Template structures for consistent output
161
+ - Quality checklists before finalizing
162
+ - No external tools required - uses Claude's built-in capabilities
163
+
164
+ #### Category 2: Workflow Automation
165
+
166
+ **Used for:** Multi-step processes that benefit from consistent methodology, including coordination across multiple MCP servers.
167
+
168
+ **Real example:** [skill-creator skill](https://github.com/anthropics/skills/blob/main/skills/skill-creator/SKILL.md)
169
+
170
+ > "Interactive guide for creating new skills. Walks the user through use case definition, frontmatter generation, instruction writing, and validation."
171
+
172
+ **Key techniques:**
173
+ - Step-by-step workflow with validation gates
174
+ - Templates for common structures
175
+ - Built-in review and improvement suggestions
176
+ - Iterative refinement loops
177
+
178
+ #### Category 3: MCP Enhancement
179
+
180
+ **Used for:** Workflow guidance to enhance the tool access an MCP server provides.
181
+
182
+ **Real example:** [sentry-code-review skill (from Sentry)](https://github.com/getsentry/sentry-for-claude/tree/main/skills)
183
+
184
+ > "Automatically analyzes and fixes detected bugs in GitHub Pull Requests using Sentry's error monitoring data via their MCP server."
185
+
186
+ **Key techniques:**
187
+ - Coordinates multiple MCP calls in sequence
188
+ - Embeds domain expertise
189
+ - Provides context users would otherwise need to specify
190
+ - Error handling for common MCP issues
191
+
192
+ ### Define success criteria
193
+
194
+ How will you know your skill is working?
195
+
196
+ These are aspirational targets, rough benchmarks rather than precise thresholds. Aim for rigor but accept that there will be an element of vibes-based assessment. We are actively developing more robust measurement guidance and tooling.
197
+
198
+ **Quantitative metrics:**
199
+
200
+ - **Skill triggers on 90% of relevant queries**
201
+ - How to measure: Run 10-20 test queries that should trigger your skill. Track how many times it loads automatically vs. requires explicit invocation.
202
+ - **Completes workflow in X tool calls**
203
+ - How to measure: Compare the same task with and without the skill enabled. Count tool calls and total tokens consumed.
204
+ - **0 failed API calls per workflow**
205
+ - How to measure: Monitor MCP server logs during test runs. Track retry rates and error codes.
206
+
207
+ **Qualitative metrics:**
208
+
209
+ - **Users don't need to prompt Claude about next steps**
210
+ - How to assess: During testing, note how often you need to redirect or clarify. Ask beta users for feedback.
211
+ - **Workflows complete without user correction**
212
+ - How to assess: Run the same request 3-5 times. Compare outputs for structural consistency and quality.
213
+ - **Consistent results across sessions**
214
+ - How to assess: Can a new user accomplish the task on first try with minimal guidance?
215
+
216
+ ### Technical requirements
217
+
218
+ #### File structure
219
+
220
+ ```
221
+ your-skill-name/
222
+ ├── SKILL.md # Required - main skill file
223
+ ├── scripts/ # Optional - executable code
224
+ │ ├── process_data.py # Example
225
+ │ └── validate.sh # Example
226
+ ├── references/ # Optional - documentation
227
+ │ ├── api-guide.md # Example
228
+ │ └── examples/ # Example
229
+ └── assets/ # Optional - templates, etc.
230
+ └── report-template.md # Example
231
+ ```
232
+
233
+ #### Critical rules
234
+
235
+ **SKILL.md naming:**
236
+ - Must be exactly `SKILL.md` (case-sensitive)
237
+ - No variations accepted (`SKILL.MD`, `skill.md`, etc.)
238
+
239
+ **Skill folder naming:**
240
+ - Use kebab-case: `notion-project-setup` ✅
241
+ - No spaces: `Notion Project Setup` ❌
242
+ - No underscores: `notion_project_setup` ❌
243
+ - No capitals: `NotionProjectSetup` ❌
244
+
245
+ **No README.md:**
246
+ - Don't include `README.md` inside your skill folder
247
+ - All documentation goes in `SKILL.md` or `references/`
248
+ - Note: when distributing via GitHub, you'll still want a repo-level README for human users (see Distribution and Sharing).
249
+
250
+ ### YAML frontmatter: The most important part
251
+
252
+ The YAML frontmatter is how Claude decides whether to load your skill. Get this right.
253
+
254
+ #### Minimal required format
255
+
256
+ ```yaml
257
+ ---
258
+ name: your-skill-name
259
+ description: What it does. Use when user asks to [specific phrases].
260
+ ---
261
+ ```
262
+
263
+ That's all you need to start.
264
+
265
+ #### Field requirements
266
+
267
+ **name (required):**
268
+ - kebab-case only
269
+ - No spaces or capitals
270
+ - Should match folder name
271
+
272
+ **description (required):**
273
+ - MUST include BOTH:
274
+ - What the skill does
275
+ - When to use it (trigger conditions)
276
+ - Under 1024 characters
277
+ - No XML tags (`<` or `>`)
278
+ - Include specific tasks users might say
279
+ - Mention file types if relevant
280
+
281
+ **license (optional):**
282
+ - Use if making skill open source
283
+ - Common: MIT, Apache-2.0
284
+
285
+ **compatibility (optional):**
286
+ - 1-500 characters
287
+ - Indicates environment requirements: e.g. intended product, required system packages, network access needs, etc.
288
+
289
+ **metadata (optional):**
290
+ - Any custom key-value pairs
291
+ - Suggested: author, version, mcp-server
292
+ - Example:
293
+ ```yaml
294
+ metadata:
295
+ author: ProjectHub
296
+ version: 1.0.0
297
+ mcp-server: projecthub
298
+ ```
299
+
300
+ #### Security restrictions
301
+
302
+ **Forbidden in frontmatter:**
303
+ - XML angle brackets (`<` `>`)
304
+ - Skills with "claude" or "anthropic" in name (reserved)
305
+
306
+ **Why:** Frontmatter appears in Claude's system prompt. Malicious content could inject instructions.
307
+
308
+ ### Writing effective skills
309
+
310
+ #### The description field
311
+
312
+ According to Anthropic's [engineering blog](https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills): "This metadata...provides just enough information for Claude to know when each skill should be used without loading all of it into context." This is the first level of progressive disclosure.
313
+
314
+ **Structure:**
315
+
316
+ ```
317
+ [What it does] + [When to use it] + [Key capabilities]
318
+ ```
319
+
320
+ **Examples of good descriptions:**
321
+
322
+ ```yaml
323
+ # Good - specific and actionable
324
+ description: Analyzes Figma design files and generates developer handoff
325
+ documentation. Use when user uploads .fig files, asks for "design specs",
326
+ "component documentation", or "design-to-code handoff".
327
+
328
+ # Good - includes trigger phrases
329
+ description: Manages Linear project workflows including sprint planning,
330
+ task creation, and status tracking. Use when user mentions "sprint",
331
+ "Linear tasks", "project planning", or asks to "create tickets".
332
+
333
+ # Good - clear value proposition
334
+ description: End-to-end customer onboarding workflow for PayFlow. Handles
335
+ account creation, payment setup, and subscription management. Use when
336
+ user says "onboard new customer", "set up subscription", or "create
337
+ PayFlow account".
338
+ ```
339
+
340
+ **Examples of bad descriptions:**
341
+
342
+ ```yaml
343
+ # Too vague
344
+ description: Helps with projects.
345
+
346
+ # Missing triggers
347
+ description: Creates sophisticated multi-page documentation systems.
348
+
349
+ # Too technical, no user triggers
350
+ description: Implements the Project entity model with hierarchical relationships.
351
+ ```
352
+
353
+ ### Writing the main instructions
354
+
355
+ After the frontmatter, write the actual instructions in Markdown.
356
+
357
+ **Recommended structure:**
358
+
359
+ Adapt this template for your skill. Replace bracketed sections with your specific content.
360
+
361
+ ```markdown
362
+ ---
363
+ name: your-skill
364
+ description: [...]
365
+ ---
366
+
367
+ # Your Skill Name
368
+
369
+ ## Instructions
370
+
371
+ ### Step 1: [First Major Step]
372
+ Clear explanation of what happens.
373
+
374
+ Example:
375
+ ```bash
376
+ python scripts/fetch_data.py --project-id PROJECT_ID
377
+ Expected output: [describe what success looks like]
378
+ ```
379
+
380
+ (Add more steps as needed)
381
+
382
+ ## Examples
383
+
384
+ ### Example 1: [common scenario]
385
+
386
+ User says: "Set up a new marketing campaign"
387
+
388
+ Actions:
389
+ 1. Fetch existing campaigns via MCP
390
+ 2. Create new campaign with provided parameters
391
+
392
+ Result: Campaign created with confirmation link
393
+
394
+ (Add more examples as needed)
395
+
396
+ ## Troubleshooting
397
+
398
+ ### Error: [Common error message]
399
+ Cause: [Why it happens]
400
+ Solution: [How to fix]
401
+
402
+ (Add more error cases as needed)
403
+ ```
404
+
405
+ ### Best Practices for Instructions
406
+
407
+ #### Be Specific and Actionable
408
+
409
+ ✅ **Good:**
410
+
411
+ ```
412
+ Run `python scripts/validate.py --input {filename}` to check data format.
413
+ If validation fails, common issues include:
414
+ - Missing required fields (add them to the CSV)
415
+ - Invalid date formats (use YYYY-MM-DD)
416
+ ```
417
+
418
+ ❌ **Bad:**
419
+
420
+ ```
421
+ Validate the data before proceeding.
422
+ ```
423
+
424
+ #### Include error handling
425
+
426
+ ```markdown
427
+ ## Common Issues
428
+
429
+ ### MCP Connection Failed
430
+ If you see "Connection refused":
431
+ 1. Verify MCP server is running: Check Settings > Extensions
432
+ 2. Confirm API key is valid
433
+ 3. Try reconnecting: Settings > Extensions > [Your Service] > Reconnect
434
+ ```
435
+
436
+ #### Reference bundled resources clearly
437
+
438
+ ```
439
+ Before writing queries, consult `references/api-patterns.md` for:
440
+ - Rate limiting guidance
441
+ - Pagination patterns
442
+ - Error codes and handling
443
+ ```
444
+
445
+ #### Use progressive disclosure
446
+
447
+ Keep `SKILL.md` focused on core instructions. Move detailed documentation to `references/` and link to it. (See [Core Design Principles](https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills) for how the three-level system works.)
448
+
449
+ ---
450
+
451
+ ## Chapter 3: Testing and Iteration
452
+
453
+ Skills can be tested at varying levels of rigor depending on your needs:
454
+
455
+ - **Manual testing in Claude.ai** - Run queries directly and observe behavior. Fast iteration, no setup required.
456
+ - **Scripted testing in Claude Code** - Automate test cases for repeatable validation across changes.
457
+ - **Programmatic testing via skills API** - Build evaluation suites that run systematically against defined test sets.
458
+
459
+ Choose the approach that matches your quality requirements and the visibility of your skill. A skill used internally by a small team has different testing needs than one deployed to thousands of enterprise users.
460
+
461
+ > **Pro Tip: Iterate on a single task before expanding**
462
+ >
463
+ > We've found that the most effective skill creators iterate on a single challenging task until Claude succeeds, then extract the winning approach into a skill. This leverages Claude's in-context learning and provides faster signal than broad testing. Once you have a working foundation, expand to multiple test cases for coverage.
464
+
465
+ ### Recommended Testing Approach
466
+
467
+ Based on early experience, effective skills testing typically covers three areas:
468
+
469
+ #### 1. Triggering tests
470
+
471
+ **Goal:** Ensure your skill loads at the right times.
472
+
473
+ **Test cases:**
474
+ - ✅ Triggers on obvious tasks
475
+ - ✅ Triggers on paraphrased requests
476
+ - ❌ Doesn't trigger on unrelated topics
477
+
478
+ **Example test suite:**
479
+
480
+ ```
481
+ Should trigger:
482
+ - "Help me set up a new ProjectHub workspace"
483
+ - "I need to create a project in ProjectHub"
484
+ - "Initialize a ProjectHub project for Q4 planning"
485
+
486
+ Should NOT trigger:
487
+ - "What's the weather in San Francisco?"
488
+ - "Help me write Python code"
489
+ - "Create a spreadsheet" (unless ProjectHub skill handles sheets)
490
+ ```
491
+
492
+ #### 2. Functional tests
493
+
494
+ **Goal:** Verify the skill produces correct outputs.
495
+
496
+ **Test cases:**
497
+ - Valid outputs generated
498
+ - API calls succeed
499
+ - Error handling works
500
+ - Edge cases covered
501
+
502
+ **Example:**
503
+
504
+ ```
505
+ Test: Create project with 5 tasks
506
+ Given: Project name "Q4 Planning", 5 task descriptions
507
+ When: Skill executes workflow
508
+ Then:
509
+ - Project created in ProjectHub
510
+ - 5 tasks created with correct properties
511
+ - All tasks linked to project
512
+ - No API errors
513
+ ```
514
+
515
+ #### 3. Performance comparison
516
+
517
+ **Goal:** Prove the skill improves results vs. baseline.
518
+
519
+ Use the metrics from Define Success Criteria. Here's what a comparison might look like.
520
+
521
+ **Baseline comparison:**
522
+
523
+ ```
524
+ Without skill:
525
+ - User provides instructions each time
526
+ - 15 back-and-forth messages
527
+ - 3 failed API calls requiring retry
528
+ - 12,000 tokens consumed
529
+
530
+ With skill:
531
+ - Automatic workflow execution
532
+ - 2 clarifying questions only
533
+ - 0 failed API calls
534
+ - 6,000 tokens consumed
535
+ ```
536
+
537
+ ### Using the skill-creator skill
538
+
539
+ The skill-creator skill, available in Claude.ai via plugin directory or download for Claude Code, can help you build and iterate on skills. If you have an MCP server and know your top 2-3 workflows, you can build and test a functional skill in a single sitting, often in 15-30 minutes.
540
+
541
+ **Creating skills:**
542
+ - Generate skills from natural language descriptions
543
+ - Produce properly formatted SKILL.md with frontmatter
544
+ - Suggest trigger phrases and structure
545
+
546
+ **Reviewing skills:**
547
+ - Flag common issues (vague descriptions, missing triggers, structural problems)
548
+ - Identify potential over/under-triggering risks
549
+ - Suggest test cases based on the skill's stated purpose
550
+
551
+ **Iterative improvement:**
552
+ - After using your skill and encountering edge cases or failures, bring those examples back to skill-creator
553
+ - Example: "Use the issues & solution identified in this chat to improve how the skill handles [specific edge case]"
554
+
555
+ **To use:**
556
+
557
+ ```
558
+ "Use the skill-creator skill to help me build a skill for [your use case]"
559
+ ```
560
+
561
+ Note: skill-creator helps you design and refine skills but does not execute automated test suites or produce quantitative evaluation results.
562
+
563
+ ### Iteration based on feedback
564
+
565
+ Skills are living documents. Plan to iterate based on:
566
+
567
+ **Undertriggering signals:**
568
+ - Skill doesn't load when it should
569
+ - Users manually enabling it
570
+ - Support questions about when to use it
571
+
572
+ > **Solution:** Add more detail and nuance to the description - this may include keywords particularly for technical terms
573
+
574
+ **Overtriggering signals:**
575
+ - Skill loads for irrelevant queries
576
+ - Users disabling it
577
+ - Confusion about purpose
578
+
579
+ > **Solution:** Add negative triggers, be more specific
580
+
581
+ **Execution issues:**
582
+ - Inconsistent results
583
+ - API call failures
584
+ - User corrections needed
585
+
586
+ > **Solution:** Improve instructions, add error handling
587
+
588
+ ---
589
+
590
+ ## Chapter 4: Distribution and Sharing
591
+
592
+ Skills make your MCP integration more complete. As users compare connectors, those with skills offer a faster path to value, giving you an edge over MCP-only alternatives.
593
+
594
+ ### Current distribution model (January 2026)
595
+
596
+ **How individual users get skills:**
597
+
598
+ 1. Download the skill folder
599
+ 2. Zip the folder (if needed)
600
+ 3. Upload to Claude.ai via Settings > Capabilities > Skills
601
+ 4. Or place in Claude Code skills directory
602
+
603
+ **Organization-level skills:**
604
+ - Admins can deploy skills workspace-wide (shipped December 18, 2025)
605
+ - Automatic updates
606
+ - Centralized management
607
+
608
+ ### An open standard
609
+
610
+ We've published [Agent Skills](https://agentskills.io/home) as an open standard. Like MCP, we believe skills should be portable across tools and platforms - the same skill should work whether you're using Claude or other AI platforms. That said, some skills are designed to take full advantage of a specific platform's capabilities; authors can note this in the skill's compatibility field. We've been collaborating with members of the ecosystem on the standard, and we're excited by early adoption.
611
+
612
+ ### Using skills via API
613
+
614
+ For programmatic use cases, such as building applications, agents, or automated workflows that leverage skills, the API provides direct control over skill management and execution.
615
+
616
+ **Key capabilities:**
617
+ - `/v1/skills` endpoint for listing and managing skills
618
+ - Add skills to Messages API requests via the `container.skills` parameter
619
+ - Version control and management through the Claude Console
620
+ - Works with the Claude Agent SDK for building custom agents
621
+
622
+ **When to use skills via the API vs. Claude.ai:**
623
+
624
+ | Use Case | Best Surface |
625
+ |---|---|
626
+ | End users interacting with skills directly | Claude.ai / Claude Code |
627
+ | Manual testing and iteration during development | Claude.ai / Claude Code |
628
+ | Individual, ad-hoc workflows | Claude.ai / Claude Code |
629
+ | Applications using skills programmatically | API |
630
+ | Production deployments at scale | API |
631
+ | Automated pipelines and agent systems | API |
632
+
633
+ Note: Skills in the API require the Code Execution Tool beta, which provides the secure environment skills need to run.
634
+
635
+ **For implementation details, see:**
636
+ - [Skills API Quickstart](https://docs.claude.com/en/docs/agents-and-tools/agent-skills/quickstart)
637
+ - [Create Custom skills](https://docs.claude.com/en/api/skills/create-skill)
638
+ - [Skills in the Agent SDK](https://docs.claude.com/en/docs/agent-sdk/skills)
639
+
640
+ ### Recommended approach today
641
+
642
+ Start by hosting your skill on GitHub with a public repo, clear README (for human visitors - this is separate from your skill folder, which should not contain a README.md), and example usage with screenshots. Then add a section to your MCP documentation that links to the skill, explains why using both together is valuable, and provides a quick-start guide.
643
+
644
+ 1. **Host on GitHub**
645
+ - Public repo for open-source skills
646
+ - Clear README with installation instructions
647
+ - Example usage and screenshots
648
+
649
+ 2. **Document in Your MCP Repo**
650
+ - Link to skills from MCP documentation
651
+ - Explain the value of using both together
652
+ - Provide quick-start guide
653
+
654
+ 3. **Create an Installation Guide**
655
+
656
+ ```markdown
657
+ ## Installing the [Your Service] skill
658
+
659
+ 1. Download the skill:
660
+ - Clone repo: `git clone https://github.com/yourcompany/skills`
661
+ - Or download ZIP from Releases
662
+
663
+ 2. Install in Claude:
664
+ - Open Claude.ai > Settings > Skills
665
+ - Click "Upload skill"
666
+ - Select the skill folder (zipped)
667
+
668
+ 3. Enable the skill:
669
+ - Toggle on the [Your Service] skill
670
+ - Ensure your MCP server is connected
671
+
672
+ 4. Test:
673
+ - Ask Claude: "Set up a new project in [Your Service]"
674
+ ```
675
+
676
+ ### Positioning your skill
677
+
678
+ How you describe your skill determines whether users understand its value and actually try it. When writing about your skill - in your README, documentation, or marketing - keep these principles in mind.
679
+
680
+ **Focus on outcomes, not features:**
681
+
682
+ ✅ **Good:**
683
+
684
+ > "The ProjectHub skill enables teams to set up complete project workspaces in seconds - including pages, databases, and templates - instead of spending 30 minutes on manual setup."
685
+
686
+ ❌ **Bad:**
687
+
688
+ > "The ProjectHub skill is a folder containing YAML frontmatter and Markdown instructions that calls our MCP server tools."
689
+
690
+ **Highlight the MCP + skills story:**
691
+
692
+ > "Our MCP server gives Claude access to your Linear projects. Our skills teach Claude your team's sprint planning workflow. Together, they enable AI-powered project management."
693
+
694
+ ---
695
+
696
+ ## Chapter 5: Patterns and Troubleshooting
697
+
698
+ These patterns emerged from skills created by early adopters and internal teams. They represent common approaches we've seen work well, not prescriptive templates.
699
+
700
+ ### Choosing your approach: Problem-first vs. tool-first
701
+
702
+ Think of it like Home Depot. You might walk in with a problem - "I need to fix a kitchen cabinet" - and an employee points you to the right tools. Or you might pick out a new drill and ask how to use it for your specific job.
703
+
704
+ Skills work the same way:
705
+
706
+ - **Problem-first:** "I need to set up a project workspace" - Your skill orchestrates the right MCP calls in the right sequence. Users describe outcomes; the skill handles the tools.
707
+ - **Tool-first:** "I have Notion MCP connected" - Your skill teaches Claude the optimal workflows and best practices. Users have access; the skill provides expertise.
708
+
709
+ Most skills lean one direction. Knowing which framing fits your use case helps you choose the right pattern below.
710
+
711
+ ### Pattern 1: Sequential workflow orchestration
712
+
713
+ **Use when:** Your users need multi-step processes in a specific order.
714
+
715
+ **Example structure:**
716
+
717
+ ```markdown
718
+ ## Workflow: Onboard New Customer
719
+
720
+ ### Step 1: Create Account
721
+ Call MCP tool: `create_customer`
722
+ Parameters: name, email, company
723
+
724
+ ### Step 2: Setup Payment
725
+ Call MCP tool: `setup_payment_method`
726
+ Wait for: payment method verification
727
+
728
+ ### Step 3: Create Subscription
729
+ Call MCP tool: `create_subscription`
730
+ Parameters: plan_id, customer_id (from Step 1)
731
+
732
+ ### Step 4: Send Welcome Email
733
+ Call MCP tool: `send_email`
734
+ Template: welcome_email_template
735
+ ```
736
+
737
+ **Key techniques:**
738
+ - Explicit step ordering
739
+ - Dependencies between steps
740
+ - Validation at each stage
741
+ - Rollback instructions for failures
742
+
743
+ ### Pattern 2: Multi-MCP coordination
744
+
745
+ **Use when:** Workflows span multiple services.
746
+
747
+ **Example: Design-to-development handoff**
748
+
749
+ ```markdown
750
+ ### Phase 1: Design Export (Figma MCP)
751
+ 1. Export design assets from Figma
752
+ 2. Generate design specifications
753
+ 3. Create asset manifest
754
+
755
+ ### Phase 2: Asset Storage (Drive MCP)
756
+ 1. Create project folder in Drive
757
+ 2. Upload all assets
758
+ 3. Generate shareable links
759
+
760
+ ### Phase 3: Task Creation (Linear MCP)
761
+ 1. Create development tasks
762
+ 2. Attach asset links to tasks
763
+ 3. Assign to engineering team
764
+
765
+ ### Phase 4: Notification (Slack MCP)
766
+ 1. Post handoff summary to #engineering
767
+ 2. Include asset links and task references
768
+ ```
769
+
770
+ **Key techniques:**
771
+ - Clear phase separation
772
+ - Data passing between MCPs
773
+ - Validation before moving to next phase
774
+ - Centralized error handling
775
+
776
+ ### Pattern 3: Iterative refinement
777
+
778
+ **Use when:** Output quality improves with iteration.
779
+
780
+ **Example: Report generation**
781
+
782
+ ```markdown
783
+ ## Iterative Report Creation
784
+
785
+ ### Initial Draft
786
+ 1. Fetch data via MCP
787
+ 2. Generate first draft report
788
+ 3. Save to temporary file
789
+
790
+ ### Quality Check
791
+ 1. Run validation script: `scripts/check_report.py`
792
+ 2. Identify issues:
793
+ - Missing sections
794
+ - Inconsistent formatting
795
+ - Data validation errors
796
+
797
+ ### Refinement Loop
798
+ 1. Address each identified issue
799
+ 2. Regenerate affected sections
800
+ 3. Re-validate
801
+ 4. Repeat until quality threshold met
802
+
803
+ ### Finalization
804
+ 1. Apply final formatting
805
+ 2. Generate summary
806
+ 3. Save final version
807
+ ```
808
+
809
+ **Key techniques:**
810
+ - Explicit quality criteria
811
+ - Iterative improvement
812
+ - Validation scripts
813
+ - Know when to stop iterating
814
+
815
+ ### Pattern 4: Context-aware tool selection
816
+
817
+ **Use when:** Same outcome, different tools depending on context.
818
+
819
+ **Example: File storage**
820
+
821
+ ```markdown
822
+ ## Smart File Storage
823
+
824
+ ### Decision Tree
825
+ 1. Check file type and size
826
+ 2. Determine best storage location:
827
+ - Large files (>10MB): Use cloud storage MCP
828
+ - Collaborative docs: Use Notion/Docs MCP
829
+ - Code files: Use GitHub MCP
830
+ - Temporary files: Use local storage
831
+
832
+ ### Execute Storage
833
+ Based on decision:
834
+ - Call appropriate MCP tool
835
+ - Apply service-specific metadata
836
+ - Generate access link
837
+
838
+ ### Provide Context to User
839
+ Explain why that storage was chosen
840
+ ```
841
+
842
+ **Key techniques:**
843
+ - Clear decision criteria
844
+ - Fallback options
845
+ - Transparency about choices
846
+
847
+ ### Pattern 5: Domain-specific intelligence
848
+
849
+ **Use when:** Your skill adds specialized knowledge beyond tool access.
850
+
851
+ **Example: Financial compliance**
852
+
853
+ ```markdown
854
+ ## Payment Processing with Compliance
855
+
856
+ ### Before Processing (Compliance Check)
857
+ 1. Fetch transaction details via MCP
858
+ 2. Apply compliance rules:
859
+ - Check sanctions lists
860
+ - Verify jurisdiction allowances
861
+ - Assess risk level
862
+ 3. Document compliance decision
863
+
864
+ ### Processing
865
+ IF compliance passed:
866
+ - Call payment processing MCP tool
867
+ - Apply appropriate fraud checks
868
+ - Process transaction
869
+ ELSE:
870
+ - Flag for review
871
+ - Create compliance case
872
+
873
+ ### Audit Trail
874
+ - Log all compliance checks
875
+ - Record processing decisions
876
+ - Generate audit report
877
+ ```
878
+
879
+ **Key techniques:**
880
+ - Domain expertise embedded in logic
881
+ - Compliance before action
882
+ - Comprehensive documentation
883
+ - Clear governance
884
+
885
+ ### Troubleshooting
886
+
887
+ #### Skill won't upload
888
+
889
+ **Error: "Could not find SKILL.md in uploaded folder"**
890
+
891
+ Cause: File not named exactly SKILL.md
892
+
893
+ Solution:
894
+ - Rename to `SKILL.md` (case-sensitive)
895
+ - Verify with: `ls -la` should show `SKILL.md`
896
+
897
+ **Error: "Invalid frontmatter"**
898
+
899
+ Cause: YAML formatting issue
900
+
901
+ Common mistakes:
902
+
903
+ ```yaml
904
+ # Wrong - missing delimiters
905
+ name: my-skill
906
+ description: Does things
907
+
908
+ # Wrong - unclosed quotes
909
+ name: my-skill
910
+ description: "Does things
911
+
912
+ # Correct
913
+ ---
914
+ name: my-skill
915
+ description: Does things
916
+ ---
917
+ ```
918
+
919
+ **Error: "Invalid skill name"**
920
+
921
+ Cause: Name has spaces or capitals
922
+
923
+ ```yaml
924
+ # Wrong
925
+ name: My Cool Skill
926
+
927
+ # Correct
928
+ name: my-cool-skill
929
+ ```
930
+
931
+ #### Skill doesn't trigger
932
+
933
+ **Symptom:** Skill never loads automatically
934
+
935
+ **Fix:** Revise your description field. See The Description Field for good/bad examples.
936
+
937
+ **Quick checklist:**
938
+ - Is it too generic? ("Helps with projects" won't work)
939
+ - Does it include trigger phrases users would actually say?
940
+ - Does it mention relevant file types if applicable?
941
+
942
+ **Debugging approach:** Ask Claude: "When would you use the [skill name] skill?" Claude will quote the description back. Adjust based on what's missing.
943
+
944
+ #### Skill triggers too often
945
+
946
+ **Symptom:** Skill loads for unrelated queries
947
+
948
+ **Solutions:**
949
+
950
+ 1. **Add negative triggers**
951
+
952
+ ```yaml
953
+ description: Advanced data analysis for CSV files. Use for statistical
954
+ modeling, regression, clustering. Do NOT use for simple data exploration
955
+ (use data-viz skill instead).
956
+ ```
957
+
958
+ 2. **Be more specific**
959
+
960
+ ```yaml
961
+ # Too broad
962
+ description: Processes documents
963
+
964
+ # More specific
965
+ description: Processes PDF legal documents for contract review
966
+ ```
967
+
968
+ 3. **Clarify scope**
969
+
970
+ ```yaml
971
+ description: PayFlow payment processing for e-commerce. Use specifically
972
+ for online payment workflows, not for general financial queries.
973
+ ```
974
+
975
+ #### MCP connection issues
976
+
977
+ **Symptom:** Skill loads but MCP calls fail
978
+
979
+ **Checklist:**
980
+
981
+ 1. **Verify MCP server is connected**
982
+ - Claude.ai: Settings > Extensions > [Your Service]
983
+ - Should show "Connected" status
984
+
985
+ 2. **Check authentication**
986
+ - API keys valid and not expired
987
+ - Proper permissions/scopes granted
988
+ - OAuth tokens refreshed
989
+
990
+ 3. **Test MCP independently**
991
+ - Ask Claude to call MCP directly (without skill)
992
+ - "Use [Service] MCP to fetch my projects"
993
+ - If this fails, issue is MCP not skill
994
+
995
+ 4. **Verify tool names**
996
+ - Skill references correct MCP tool names
997
+ - Check MCP server documentation
998
+ - Tool names are case-sensitive
999
+
1000
+ #### Instructions not followed
1001
+
1002
+ **Symptom:** Skill loads but Claude doesn't follow instructions
1003
+
1004
+ **Common causes:**
1005
+
1006
+ 1. **Instructions too verbose**
1007
+ - Keep instructions concise
1008
+ - Use bullet points and numbered lists
1009
+ - Move detailed reference to separate files
1010
+
1011
+ 2. **Instructions buried**
1012
+ - Put critical instructions at the top
1013
+ - Use `## Important` or `## Critical` headers
1014
+ - Repeat key points if needed
1015
+
1016
+ 3. **Ambiguous language**
1017
+
1018
+ ```markdown
1019
+ # Bad
1020
+ Make sure to validate things properly
1021
+
1022
+ # Good
1023
+ CRITICAL: Before calling create_project, verify:
1024
+ - Project name is non-empty
1025
+ - At least one team member assigned
1026
+ - Start date is not in the past
1027
+ ```
1028
+
1029
+ **Advanced technique:** For critical validations, consider bundling a script that performs the checks programmatically rather than relying on language instructions. Code is deterministic; language interpretation isn't. See the [Office skills](https://github.com/anthropics/skills/tree/main/skills) for examples of this pattern.
1030
+
1031
+ 4. **Model "laziness"** - Add explicit encouragement:
1032
+
1033
+ ```markdown
1034
+ ## Performance Notes
1035
+ - Take your time to do this thoroughly
1036
+ - Quality is more important than speed
1037
+ - Do not skip validation steps
1038
+ ```
1039
+
1040
+ Note: Adding this to user prompts is more effective than in SKILL.md.
1041
+
1042
+ #### Large context issues
1043
+
1044
+ **Symptom:** Skill seems slow or responses degraded
1045
+
1046
+ **Causes:**
1047
+ - Skill content too large
1048
+ - Too many skills enabled simultaneously
1049
+ - All content loaded instead of progressive disclosure
1050
+
1051
+ **Solutions:**
1052
+
1053
+ 1. **Optimize SKILL.md size**
1054
+ - Move detailed docs to `references/`
1055
+ - Link to references instead of inline
1056
+ - Keep SKILL.md under 5,000 words
1057
+
1058
+ 2. **Reduce enabled skills**
1059
+ - Evaluate if you have more than 20-50 skills enabled simultaneously
1060
+ - Recommend selective enablement
1061
+ - Consider skill "packs" for related capabilities
1062
+
1063
+ ---
1064
+
1065
+ ## Chapter 6: Resources and References
1066
+
1067
+ If you're building your first skill, start with the [Best Practices Guide](https://platform.claude.com/docs/en/agents-and-tools/agent-skills/best-practices), then reference the API docs as needed.
1068
+
1069
+ ### Official Documentation
1070
+
1071
+ **Anthropic Resources:**
1072
+ - [Best Practices Guide](https://platform.claude.com/docs/en/agents-and-tools/agent-skills/best-practices)
1073
+ - [Skills Documentation](https://platform.claude.com/docs/en/agents-and-tools/agent-skills/overview)
1074
+ - [API Reference](https://platform.claude.com/docs/en/api/overview)
1075
+ - [MCP Documentation](https://modelcontextprotocol.io)
1076
+
1077
+ **Blog Posts:**
1078
+ - [Introducing Agent Skills](https://claude.com/blog/skills)
1079
+ - [Engineering Blog: Equipping Agents for the Real World](https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills)
1080
+ - [Skills Explained](https://www.claude.com/blog/skills-explained)
1081
+ - [How to Create Skills for Claude](https://www.claude.com/blog/how-to-create-skills-key-steps-limitations-and-examples)
1082
+ - [Building Skills for Claude Code](https://www.claude.com/blog/building-skills-for-claude-code)
1083
+ - [Improving Frontend Design through Skills](https://www.claude.com/blog/improving-frontend-design-through-skills)
1084
+
1085
+ ### Example skills
1086
+
1087
+ **Public skills repository:**
1088
+ - GitHub: [anthropics/skills](https://github.com/anthropics/skills)
1089
+ - Contains Anthropic-created skills you can customize
1090
+
1091
+ ### Tools and Utilities
1092
+
1093
+ **skill-creator skill:**
1094
+ - Built into Claude.ai and available for Claude Code
1095
+ - Can generate skills from descriptions
1096
+ - Reviews and provides recommendations
1097
+ - Use: "Help me build a skill using skill-creator"
1098
+
1099
+ **Validation:**
1100
+ - skill-creator can assess your skills
1101
+ - Ask: "Review this skill and suggest improvements"
1102
+
1103
+ ### Getting Support
1104
+
1105
+ **For Technical Questions:**
1106
+ - General questions: Community forums at the [Claude Developers Discord](https://discord.com/invite/6PPFFzqPDZ)
1107
+
1108
+ **For Bug Reports:**
1109
+ - GitHub Issues: [anthropics/skills/issues](https://github.com/anthropics/skills/issues)
1110
+ - Include: Skill name, error message, steps to reproduce
1111
+
1112
+ ---
1113
+
1114
+ ## Reference A: Quick Checklist
1115
+
1116
+ Use this checklist to validate your skill before and after upload. If you want a faster start, use the skill-creator skill to generate your first draft, then run through this list to make sure you haven't missed anything.
1117
+
1118
+ ### Before you start
1119
+
1120
+ - [ ] Identified 2-3 concrete use cases
1121
+ - [ ] Tools identified (built-in or MCP)
1122
+ - [ ] Reviewed this guide and example skills
1123
+ - [ ] Planned folder structure
1124
+
1125
+ ### During development
1126
+
1127
+ - [ ] Folder named in kebab-case
1128
+ - [ ] SKILL.md file exists (exact spelling)
1129
+ - [ ] YAML frontmatter has `---` delimiters
1130
+ - [ ] name field: kebab-case, no spaces, no capitals
1131
+ - [ ] description includes WHAT and WHEN
1132
+ - [ ] No XML tags (`<` `>`) anywhere
1133
+ - [ ] Instructions are clear and actionable
1134
+ - [ ] Error handling included
1135
+ - [ ] Examples provided
1136
+ - [ ] References clearly linked
1137
+
1138
+ ### Before upload
1139
+
1140
+ - [ ] Tested triggering on obvious tasks
1141
+ - [ ] Tested triggering on paraphrased requests
1142
+ - [ ] Verified doesn't trigger on unrelated topics
1143
+ - [ ] Functional tests pass
1144
+ - [ ] Tool integration works (if applicable)
1145
+ - [ ] Compressed as .zip file
1146
+
1147
+ ### After upload
1148
+
1149
+ - [ ] Test in real conversations
1150
+ - [ ] Monitor for under/over-triggering
1151
+ - [ ] Collect user feedback
1152
+ - [ ] Iterate on description and instructions
1153
+ - [ ] Update version in metadata
1154
+
1155
+ ---
1156
+
1157
+ ## Reference B: YAML Frontmatter
1158
+
1159
+ ### Required fields
1160
+
1161
+ ```yaml
1162
+ ---
1163
+ name: skill-name-in-kebab-case
1164
+ description: What it does and when to use it. Include specific trigger phrases.
1165
+ ---
1166
+ ```
1167
+
1168
+ ### All optional fields
1169
+
1170
+ ```yaml
1171
+ name: skill-name
1172
+ description: [required description]
1173
+ license: MIT # Optional: License for open-source
1174
+ allowed-tools: "Bash(python:*) Bash(npm:*) WebFetch" # Optional: Restrict tool access
1175
+ metadata: # Optional: Custom fields
1176
+ author: Company Name
1177
+ version: 1.0.0
1178
+ mcp-server: server-name
1179
+ category: productivity
1180
+ tags: [project-management, automation]
1181
+ documentation: https://example.com/docs
1182
+ support: support@example.com
1183
+ ```
1184
+
1185
+ ### Security notes
1186
+
1187
+ **Allowed:**
1188
+ - Any standard YAML types (strings, numbers, booleans, lists, objects)
1189
+ - Custom metadata fields
1190
+ - Long descriptions (up to 1024 characters)
1191
+
1192
+ **Forbidden:**
1193
+ - XML angle brackets (`<` `>`) - security restriction
1194
+ - Code execution in YAML (uses safe YAML parsing)
1195
+ - Skills named with "claude" or "anthropic" prefix (reserved)
1196
+
1197
+ ---
1198
+
1199
+ ## Reference C: Complete Skill Examples
1200
+
1201
+ For full, production-ready skills demonstrating the patterns in this guide:
1202
+
1203
+ - **Document Skills** - [PDF](https://github.com/anthropics/skills/tree/main/skills/pdf), [DOCX](https://github.com/anthropics/skills/tree/main/skills/docx), [PPTX](https://github.com/anthropics/skills/tree/main/skills/pptx), [XLSX](https://github.com/anthropics/skills/tree/main/skills/xlsx) creation
1204
+ - **[Example Skills](https://github.com/anthropics/skills/tree/main/skills)** - Various workflow patterns
1205
+ - **[Partner Skills Directory](https://www.claude.com/connectors)** - View skills from various partners such as Asana, Atlassian, Canva, Figma, Sentry, Zapier, and more
1206
+
1207
+ These repositories stay up-to-date and include additional examples beyond what's covered here. Clone them, modify them for your use case, and use them as templates.