ai-playbook 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (424) hide show
  1. package/README.md +146 -0
  2. package/agents/README.md +168 -0
  3. package/agents/SKILL.md +633 -0
  4. package/agents/architect/AGENT.md +44 -0
  5. package/agents/architect/README.md +5 -0
  6. package/agents/coder/AGENT.md +43 -0
  7. package/agents/coder/README.md +5 -0
  8. package/agents/debugger/AGENT.md +42 -0
  9. package/agents/debugger/README.md +6 -0
  10. package/agents/devops/AGENT.md +43 -0
  11. package/agents/devops/README.md +5 -0
  12. package/agents/documentation/AGENT.md +45 -0
  13. package/agents/documentation/README.md +5 -0
  14. package/agents/examples.md +550 -0
  15. package/agents/performance/AGENT.md +45 -0
  16. package/agents/performance/README.md +6 -0
  17. package/agents/planner/AGENT.md +44 -0
  18. package/agents/planner/README.md +6 -0
  19. package/agents/product-owner/AGENT.md +46 -0
  20. package/agents/product-owner/README.md +6 -0
  21. package/agents/refactorer/AGENT.md +44 -0
  22. package/agents/refactorer/README.md +6 -0
  23. package/agents/release-manager/AGENT.md +45 -0
  24. package/agents/release-manager/README.md +6 -0
  25. package/agents/researcher/AGENT.md +44 -0
  26. package/agents/researcher/README.md +6 -0
  27. package/agents/reviewer/AGENT.md +43 -0
  28. package/agents/reviewer/README.md +6 -0
  29. package/agents/security/AGENT.md +46 -0
  30. package/agents/security/README.md +6 -0
  31. package/agents/support/AGENT.md +45 -0
  32. package/agents/support/README.md +6 -0
  33. package/agents/tester/AGENT.md +46 -0
  34. package/agents/tester/README.md +5 -0
  35. package/bin/cli.js +186 -0
  36. package/commands/README.md +266 -0
  37. package/commands/build.md +135 -0
  38. package/commands/clean.md +126 -0
  39. package/commands/deploy-prod.md +171 -0
  40. package/commands/deploy-staging.md +147 -0
  41. package/commands/deps.md +169 -0
  42. package/commands/dev.md +132 -0
  43. package/commands/format.md +142 -0
  44. package/commands/lint.md +125 -0
  45. package/commands/migrate.md +159 -0
  46. package/commands/release.md +183 -0
  47. package/commands/rollback.md +152 -0
  48. package/commands/seed.md +178 -0
  49. package/commands/setup.md +109 -0
  50. package/commands/test.md +134 -0
  51. package/commands/validate.md +147 -0
  52. package/context/README.md +7 -0
  53. package/context/aem.md +47 -0
  54. package/context/architecture.md +51 -0
  55. package/context/bullminder.md +57 -0
  56. package/context/coding-style.md +42 -0
  57. package/context/communication.md +53 -0
  58. package/context/company.md +46 -0
  59. package/context/engineering.md +63 -0
  60. package/context/project-template.md +71 -0
  61. package/context/trading.md +52 -0
  62. package/hooks/README.md +326 -0
  63. package/hooks/code-review/README.md +6 -0
  64. package/hooks/code-review/check-coverage.md +101 -0
  65. package/hooks/custom/README.md +6 -0
  66. package/hooks/custom/project-specific-hooks.md +273 -0
  67. package/hooks/deployment/README.md +6 -0
  68. package/hooks/deployment/health-check.md +102 -0
  69. package/hooks/deployment/pre-deploy-check.md +84 -0
  70. package/hooks/documentation/README.md +6 -0
  71. package/hooks/documentation/update-changelog.md +146 -0
  72. package/hooks/post-task/README.md +5 -0
  73. package/hooks/post-task/run-tests.md +61 -0
  74. package/hooks/pre-commit/README.md +6 -0
  75. package/hooks/pre-commit/format.md +63 -0
  76. package/hooks/pre-commit/lint.md +62 -0
  77. package/hooks/pre-commit/type-check.md +78 -0
  78. package/hooks/pre-task/README.md +6 -0
  79. package/hooks/pre-task/check-branch.md +48 -0
  80. package/hooks/pre-task/validate-environment.md +48 -0
  81. package/hooks/security-check/README.md +6 -0
  82. package/hooks/security-check/dependency-audit.md +85 -0
  83. package/hooks/security-check/secrets-scan.md +77 -0
  84. package/hooks/test-before-finish/README.md +6 -0
  85. package/hooks/test-before-finish/run-all-tests.md +128 -0
  86. package/index.js +69 -0
  87. package/knowledge/README.md +33 -0
  88. package/knowledge/ai-agents.md +74 -0
  89. package/knowledge/decision-making.md +73 -0
  90. package/knowledge/documentation.md +67 -0
  91. package/knowledge/engineering-principles.md +65 -0
  92. package/knowledge/product-discovery.md +68 -0
  93. package/knowledge/security-privacy.md +54 -0
  94. package/knowledge/testing-quality.md +63 -0
  95. package/package.json +63 -0
  96. package/patterns/README.md +7 -0
  97. package/prompts/README.md +208 -0
  98. package/prompts/architect/README.md +96 -0
  99. package/prompts/architect/design-system.md +140 -0
  100. package/prompts/debugger/README.md +96 -0
  101. package/prompts/debugger/diagnose-issue.md +141 -0
  102. package/prompts/developer/README.md +129 -0
  103. package/prompts/developer/fix-bug.md +136 -0
  104. package/prompts/developer/implement-feature.md +133 -0
  105. package/prompts/product-owner/README.md +116 -0
  106. package/prompts/product-owner/define-feature.md +145 -0
  107. package/prompts/reviewer/README.md +91 -0
  108. package/prompts/reviewer/code-review.md +129 -0
  109. package/prompts/support/README.md +154 -0
  110. package/prompts/support/resolve-issue.md +124 -0
  111. package/roles/README.md +6 -0
  112. package/roles/design-architect/README.md +98 -0
  113. package/roles/design-architect/accessibility/README.md +33 -0
  114. package/roles/design-architect/accessibility/checklists.md +29 -0
  115. package/roles/design-architect/accessibility/examples.md +35 -0
  116. package/roles/design-architect/checklists.md +76 -0
  117. package/roles/design-architect/component-library/README.md +35 -0
  118. package/roles/design-architect/component-library/checklists.md +29 -0
  119. package/roles/design-architect/component-library/examples.md +35 -0
  120. package/roles/design-architect/design-system/README.md +35 -0
  121. package/roles/design-architect/design-system/checklists.md +27 -0
  122. package/roles/design-architect/design-system/examples.md +41 -0
  123. package/roles/design-architect/examples/README.md +31 -0
  124. package/roles/design-architect/examples/checklists.md +26 -0
  125. package/roles/design-architect/examples/examples.md +46 -0
  126. package/roles/design-architect/examples.md +90 -0
  127. package/roles/design-architect/figma/README.md +33 -0
  128. package/roles/design-architect/figma/checklists.md +27 -0
  129. package/roles/design-architect/figma/examples.md +38 -0
  130. package/roles/design-architect/responsibilities.md +73 -0
  131. package/roles/design-architect/responsive/README.md +34 -0
  132. package/roles/design-architect/responsive/checklists.md +26 -0
  133. package/roles/design-architect/responsive/examples.md +39 -0
  134. package/roles/design-architect/role.md +129 -0
  135. package/roles/design-architect/skill-map.md +42 -0
  136. package/roles/design-architect/triggers.md +110 -0
  137. package/roles/design-architect/ui/README.md +36 -0
  138. package/roles/design-architect/ui/checklists.md +29 -0
  139. package/roles/design-architect/ui/examples.md +28 -0
  140. package/roles/design-architect/usability/README.md +34 -0
  141. package/roles/design-architect/usability/checklists.md +28 -0
  142. package/roles/design-architect/usability/examples.md +31 -0
  143. package/roles/design-architect/ux/README.md +36 -0
  144. package/roles/design-architect/ux/checklists.md +28 -0
  145. package/roles/design-architect/ux/examples.md +37 -0
  146. package/roles/design-architect/wireframes/README.md +34 -0
  147. package/roles/design-architect/wireframes/checklists.md +25 -0
  148. package/roles/design-architect/wireframes/examples.md +32 -0
  149. package/roles/design-architect/workflow.md +80 -0
  150. package/roles/devops/README.md +101 -0
  151. package/roles/devops/ansible/README.md +6 -0
  152. package/roles/devops/checklists.md +413 -0
  153. package/roles/devops/ci-cd/README.md +169 -0
  154. package/roles/devops/ci-cd/checklists.md +289 -0
  155. package/roles/devops/ci-cd/examples.md +429 -0
  156. package/roles/devops/cloud-platforms/README.md +109 -0
  157. package/roles/devops/cost-optimization/README.md +131 -0
  158. package/roles/devops/disaster-recovery/README.md +118 -0
  159. package/roles/devops/docker/README.md +6 -0
  160. package/roles/devops/examples/README.md +6 -0
  161. package/roles/devops/examples.md +775 -0
  162. package/roles/devops/github-actions/README.md +6 -0
  163. package/roles/devops/helm/README.md +6 -0
  164. package/roles/devops/infrastructure-as-code/README.md +160 -0
  165. package/roles/devops/infrastructure-as-code/checklists.md +124 -0
  166. package/roles/devops/jenkins/README.md +6 -0
  167. package/roles/devops/kubernetes/README.md +150 -0
  168. package/roles/devops/kubernetes/checklists.md +192 -0
  169. package/roles/devops/kubernetes/examples.md +189 -0
  170. package/roles/devops/monitoring/README.md +93 -0
  171. package/roles/devops/networking/README.md +83 -0
  172. package/roles/devops/performance/README.md +104 -0
  173. package/roles/devops/responsibilities.md +95 -0
  174. package/roles/devops/role.md +130 -0
  175. package/roles/devops/security/README.md +126 -0
  176. package/roles/devops/skill-map.md +162 -0
  177. package/roles/devops/terraform/README.md +6 -0
  178. package/roles/devops/triggers.md +241 -0
  179. package/roles/devops/workflow.md +197 -0
  180. package/roles/qa/README.md +16 -0
  181. package/roles/qa/api-testing/README.md +6 -0
  182. package/roles/qa/automation/README.md +6 -0
  183. package/roles/qa/checklists.md +24 -0
  184. package/roles/qa/examples/README.md +6 -0
  185. package/roles/qa/examples.md +27 -0
  186. package/roles/qa/performance/README.md +6 -0
  187. package/roles/qa/playwright/README.md +6 -0
  188. package/roles/qa/responsibilities.md +16 -0
  189. package/roles/qa/role.md +47 -0
  190. package/roles/qa/selenium/README.md +6 -0
  191. package/roles/qa/skill-map.md +14 -0
  192. package/roles/qa/triggers.md +10 -0
  193. package/roles/qa/workflow.md +9 -0
  194. package/roles/software-architect/README.md +16 -0
  195. package/roles/software-architect/agents/README.md +6 -0
  196. package/roles/software-architect/ai-architecture/README.md +6 -0
  197. package/roles/software-architect/aws/README.md +6 -0
  198. package/roles/software-architect/azure/README.md +6 -0
  199. package/roles/software-architect/caching/README.md +6 -0
  200. package/roles/software-architect/checklists.md +25 -0
  201. package/roles/software-architect/cloud/README.md +6 -0
  202. package/roles/software-architect/database-design/README.md +6 -0
  203. package/roles/software-architect/diagrams/README.md +6 -0
  204. package/roles/software-architect/distributed-systems/README.md +7 -0
  205. package/roles/software-architect/docker/README.md +6 -0
  206. package/roles/software-architect/event-driven/README.md +7 -0
  207. package/roles/software-architect/examples/README.md +6 -0
  208. package/roles/software-architect/examples.md +22 -0
  209. package/roles/software-architect/gcp/README.md +6 -0
  210. package/roles/software-architect/kubernetes/README.md +6 -0
  211. package/roles/software-architect/messaging/README.md +6 -0
  212. package/roles/software-architect/rag/README.md +7 -0
  213. package/roles/software-architect/responsibilities.md +17 -0
  214. package/roles/software-architect/role.md +46 -0
  215. package/roles/software-architect/scalability/README.md +6 -0
  216. package/roles/software-architect/security/README.md +6 -0
  217. package/roles/software-architect/skill-map.md +15 -0
  218. package/roles/software-architect/system-design/README.md +6 -0
  219. package/roles/software-architect/triggers.md +10 -0
  220. package/roles/software-architect/vector-db/README.md +6 -0
  221. package/roles/software-architect/workflow.md +9 -0
  222. package/roles/software-developer/README.md +116 -0
  223. package/roles/software-developer/api/README.md +365 -0
  224. package/roles/software-developer/api/checklist.md +131 -0
  225. package/roles/software-developer/api/examples.md +459 -0
  226. package/roles/software-developer/authentication/README.md +26 -0
  227. package/roles/software-developer/authentication/checklists.md +22 -0
  228. package/roles/software-developer/authentication/examples.md +32 -0
  229. package/roles/software-developer/authorization/README.md +26 -0
  230. package/roles/software-developer/authorization/checklists.md +21 -0
  231. package/roles/software-developer/authorization/examples.md +27 -0
  232. package/roles/software-developer/backend/README.md +26 -0
  233. package/roles/software-developer/backend/checklists.md +21 -0
  234. package/roles/software-developer/backend/examples.md +21 -0
  235. package/roles/software-developer/cache/README.md +25 -0
  236. package/roles/software-developer/cache/checklists.md +21 -0
  237. package/roles/software-developer/cache/examples.md +22 -0
  238. package/roles/software-developer/checklists.md +122 -0
  239. package/roles/software-developer/code-review/README.md +23 -0
  240. package/roles/software-developer/code-review/checklists.md +22 -0
  241. package/roles/software-developer/code-review/examples.md +20 -0
  242. package/roles/software-developer/database/README.md +27 -0
  243. package/roles/software-developer/database/checklists.md +21 -0
  244. package/roles/software-developer/database/examples.md +27 -0
  245. package/roles/software-developer/debugging/README.md +24 -0
  246. package/roles/software-developer/debugging/checklists.md +20 -0
  247. package/roles/software-developer/debugging/examples.md +28 -0
  248. package/roles/software-developer/examples/README.md +22 -0
  249. package/roles/software-developer/examples/checklists.md +8 -0
  250. package/roles/software-developer/examples/examples.md +25 -0
  251. package/roles/software-developer/examples.md +378 -0
  252. package/roles/software-developer/frontend/README.md +76 -0
  253. package/roles/software-developer/frontend/accessibility/README.md +136 -0
  254. package/roles/software-developer/frontend/accessibility/best-practices.md +368 -0
  255. package/roles/software-developer/frontend/code-quality/README.md +136 -0
  256. package/roles/software-developer/frontend/code-quality/best-practices.md +309 -0
  257. package/roles/software-developer/frontend/components/README.md +65 -0
  258. package/roles/software-developer/frontend/components/best-practices.md +273 -0
  259. package/roles/software-developer/frontend/debugging/README.md +149 -0
  260. package/roles/software-developer/frontend/debugging/best-practices.md +329 -0
  261. package/roles/software-developer/frontend/examples/README.md +19 -0
  262. package/roles/software-developer/frontend/examples/checklists.md +8 -0
  263. package/roles/software-developer/frontend/examples/examples.md +17 -0
  264. package/roles/software-developer/frontend/logging-observability/README.md +196 -0
  265. package/roles/software-developer/frontend/logging-observability/best-practices.md +430 -0
  266. package/roles/software-developer/frontend/performance/README.md +99 -0
  267. package/roles/software-developer/frontend/performance/best-practices.md +350 -0
  268. package/roles/software-developer/frontend/state-management/README.md +85 -0
  269. package/roles/software-developer/frontend/state-management/best-practices.md +344 -0
  270. package/roles/software-developer/frontend/testing/README.md +114 -0
  271. package/roles/software-developer/frontend/testing/best-practices.md +272 -0
  272. package/roles/software-developer/fullstack/README.md +25 -0
  273. package/roles/software-developer/fullstack/checklists.md +19 -0
  274. package/roles/software-developer/fullstack/examples.md +14 -0
  275. package/roles/software-developer/graphql/README.md +24 -0
  276. package/roles/software-developer/graphql/checklists.md +20 -0
  277. package/roles/software-developer/graphql/examples.md +24 -0
  278. package/roles/software-developer/integration-tests/README.md +25 -0
  279. package/roles/software-developer/integration-tests/checklists.md +20 -0
  280. package/roles/software-developer/integration-tests/examples.md +18 -0
  281. package/roles/software-developer/java/README.md +24 -0
  282. package/roles/software-developer/java/checklists.md +16 -0
  283. package/roles/software-developer/java/examples.md +22 -0
  284. package/roles/software-developer/javascript/README.md +24 -0
  285. package/roles/software-developer/javascript/checklists.md +15 -0
  286. package/roles/software-developer/javascript/examples.md +18 -0
  287. package/roles/software-developer/logging/README.md +105 -0
  288. package/roles/software-developer/logging/checklists.md +48 -0
  289. package/roles/software-developer/logging/examples.md +135 -0
  290. package/roles/software-developer/messaging/README.md +24 -0
  291. package/roles/software-developer/messaging/checklists.md +21 -0
  292. package/roles/software-developer/messaging/examples.md +26 -0
  293. package/roles/software-developer/microservices/README.md +25 -0
  294. package/roles/software-developer/microservices/checklists.md +21 -0
  295. package/roles/software-developer/microservices/examples.md +21 -0
  296. package/roles/software-developer/node/README.md +25 -0
  297. package/roles/software-developer/node/checklists.md +15 -0
  298. package/roles/software-developer/node/examples.md +15 -0
  299. package/roles/software-developer/nosql/README.md +24 -0
  300. package/roles/software-developer/nosql/checklists.md +21 -0
  301. package/roles/software-developer/nosql/examples.md +20 -0
  302. package/roles/software-developer/observability/README.md +25 -0
  303. package/roles/software-developer/observability/checklists.md +21 -0
  304. package/roles/software-developer/observability/examples.md +22 -0
  305. package/roles/software-developer/performance/README.md +26 -0
  306. package/roles/software-developer/performance/checklists.md +20 -0
  307. package/roles/software-developer/performance/examples.md +20 -0
  308. package/roles/software-developer/python/README.md +25 -0
  309. package/roles/software-developer/python/checklists.md +15 -0
  310. package/roles/software-developer/python/examples.md +17 -0
  311. package/roles/software-developer/react/README.md +24 -0
  312. package/roles/software-developer/react/checklists.md +15 -0
  313. package/roles/software-developer/react/examples.md +22 -0
  314. package/roles/software-developer/refactoring/README.md +23 -0
  315. package/roles/software-developer/refactoring/checklists.md +21 -0
  316. package/roles/software-developer/refactoring/examples.md +11 -0
  317. package/roles/software-developer/responsibilities.md +58 -0
  318. package/roles/software-developer/role.md +127 -0
  319. package/roles/software-developer/skill-map.md +88 -0
  320. package/roles/software-developer/springboot/README.md +25 -0
  321. package/roles/software-developer/springboot/checklists.md +15 -0
  322. package/roles/software-developer/springboot/examples.md +21 -0
  323. package/roles/software-developer/sql/README.md +24 -0
  324. package/roles/software-developer/sql/checklists.md +22 -0
  325. package/roles/software-developer/sql/examples.md +20 -0
  326. package/roles/software-developer/testing/README.md +25 -0
  327. package/roles/software-developer/testing/checklists.md +21 -0
  328. package/roles/software-developer/testing/examples.md +19 -0
  329. package/roles/software-developer/triggers.md +550 -0
  330. package/roles/software-developer/typescript/README.md +25 -0
  331. package/roles/software-developer/typescript/checklists.md +15 -0
  332. package/roles/software-developer/typescript/examples.md +18 -0
  333. package/roles/software-developer/unit-tests/README.md +24 -0
  334. package/roles/software-developer/unit-tests/checklists.md +19 -0
  335. package/roles/software-developer/unit-tests/examples.md +22 -0
  336. package/roles/software-developer/workflow.md +196 -0
  337. package/roles/sre/README.md +16 -0
  338. package/roles/sre/alerts/README.md +6 -0
  339. package/roles/sre/availability/README.md +6 -0
  340. package/roles/sre/chaos/README.md +6 -0
  341. package/roles/sre/checklists.md +24 -0
  342. package/roles/sre/examples/README.md +6 -0
  343. package/roles/sre/examples.md +19 -0
  344. package/roles/sre/observability/README.md +6 -0
  345. package/roles/sre/reliability/README.md +6 -0
  346. package/roles/sre/responsibilities.md +16 -0
  347. package/roles/sre/role.md +46 -0
  348. package/roles/sre/skill-map.md +14 -0
  349. package/roles/sre/slos/README.md +6 -0
  350. package/roles/sre/triggers.md +10 -0
  351. package/roles/sre/workflow.md +9 -0
  352. package/roles/support-engineer/README.md +16 -0
  353. package/roles/support-engineer/checklists.md +24 -0
  354. package/roles/support-engineer/datadog/README.md +6 -0
  355. package/roles/support-engineer/examples/README.md +6 -0
  356. package/roles/support-engineer/examples.md +17 -0
  357. package/roles/support-engineer/incident-response/README.md +6 -0
  358. package/roles/support-engineer/kubernetes/README.md +6 -0
  359. package/roles/support-engineer/linux/README.md +6 -0
  360. package/roles/support-engineer/logs/README.md +6 -0
  361. package/roles/support-engineer/monitoring/README.md +6 -0
  362. package/roles/support-engineer/networking/README.md +6 -0
  363. package/roles/support-engineer/newrelic/README.md +6 -0
  364. package/roles/support-engineer/postmortem/README.md +6 -0
  365. package/roles/support-engineer/production/README.md +6 -0
  366. package/roles/support-engineer/responsibilities.md +16 -0
  367. package/roles/support-engineer/role.md +47 -0
  368. package/roles/support-engineer/root-cause-analysis/README.md +6 -0
  369. package/roles/support-engineer/runbooks/README.md +6 -0
  370. package/roles/support-engineer/skill-map.md +14 -0
  371. package/roles/support-engineer/splunk/README.md +6 -0
  372. package/roles/support-engineer/triggers.md +10 -0
  373. package/roles/support-engineer/troubleshooting/README.md +6 -0
  374. package/roles/support-engineer/workflow.md +9 -0
  375. package/setup.sh +204 -0
  376. package/skills/.claude/README.md +7 -0
  377. package/skills/README.md +21 -0
  378. package/skills/ai-agents/README.md +207 -0
  379. package/skills/ai-agents/examples.md +335 -0
  380. package/skills/ai-agents/skill.md +392 -0
  381. package/skills/architecture/README.md +198 -0
  382. package/skills/architecture/examples.md +316 -0
  383. package/skills/architecture/skill.md +189 -0
  384. package/skills/design-architecture/README.md +107 -0
  385. package/skills/design-architecture/examples.md +84 -0
  386. package/skills/design-architecture/skill.md +192 -0
  387. package/skills/devops/README.md +177 -0
  388. package/skills/devops/examples.md +376 -0
  389. package/skills/devops/skill.md +210 -0
  390. package/skills/documentation/README.md +182 -0
  391. package/skills/documentation/examples.md +364 -0
  392. package/skills/documentation/skill.md +200 -0
  393. package/skills/performance/README.md +177 -0
  394. package/skills/performance/examples.md +376 -0
  395. package/skills/performance/skill.md +199 -0
  396. package/skills/qa/README.md +106 -0
  397. package/skills/qa/examples.md +84 -0
  398. package/skills/qa/skill.md +384 -0
  399. package/skills/security/README.md +108 -0
  400. package/skills/security/examples.md +85 -0
  401. package/skills/security/skill.md +223 -0
  402. package/skills/software-development/README.md +239 -0
  403. package/skills/software-development/assessment.md +0 -0
  404. package/skills/software-development/checklists.md +0 -0
  405. package/skills/software-development/examples.md +375 -0
  406. package/skills/software-development/prompts.md +0 -0
  407. package/skills/software-development/skill.md +390 -0
  408. package/skills/software-development/templates/README.md +7 -0
  409. package/skills/software-development/templates/api-development.md +0 -0
  410. package/skills/software-development/templates/bug-fix.md +0 -0
  411. package/skills/software-development/templates/code-review.md +0 -0
  412. package/skills/software-development/templates/feature-implementation.md +0 -0
  413. package/skills/software-development/templates/llm-integration.md +0 -0
  414. package/skills/software-development/templates/performance-review.md +0 -0
  415. package/skills/software-development/templates/security-review.md +0 -0
  416. package/skills/software-development/templates/test-generation.md +0 -0
  417. package/skills/software-development/tools.md +0 -0
  418. package/skills/software-development/workflows.md +0 -0
  419. package/skills/sre/README.md +107 -0
  420. package/skills/sre/examples.md +379 -0
  421. package/skills/sre/skill.md +256 -0
  422. package/skills/support-engineering/README.md +107 -0
  423. package/skills/support-engineering/examples.md +85 -0
  424. package/skills/support-engineering/skill.md +103 -0
@@ -0,0 +1,199 @@
1
+ # Performance Skill
2
+
3
+ ## Purpose
4
+
5
+ The Performance skill enables the analysis, optimization, and sustainment of software system performance to meet response time, throughput, and resource utilization goals while maintaining scalability and reliability. This skill encompasses performance metrics and measurement, profiling and analysis techniques, code and database optimization, infrastructure optimization, and load testing strategies. Performance engineering is about making data-driven optimization decisions rather than premature or speculative improvements.
6
+
7
+ ---
8
+
9
+ ## Table of Contents
10
+
11
+ 1. [Core Competencies](#core-competencies)
12
+ 2. [Specific Domains & Tools](#specific-domains--tools)
13
+ 3. [Best Practices](#best-practices)
14
+ 4. [Deliverables](#deliverables)
15
+ 5. [Success Criteria](#success-criteria)
16
+
17
+ ---
18
+
19
+ ## Core Competencies
20
+
21
+ ### 1. **Performance Measurement & Metrics**
22
+ Establish clear performance metrics aligned with user experience and business goals. Measure response times (p50, p95, p99), throughput, error rates, and resource utilization. Distinguish between synthetic monitoring (controlled tests) and real user monitoring (production data). Track trends over time.
23
+
24
+ **Application**: Setting performance goals, monitoring progress, detecting regressions, understanding performance distribution.
25
+
26
+ ### 2. **Profiling & Performance Analysis**
27
+ Use profiling tools to identify bottlenecks and understand where time is spent. Conduct CPU profiling to find hot code paths. Analyze memory usage and garbage collection impact. Trace database queries and network calls. Use flame graphs to visualize call stacks.
28
+
29
+ **Application**: Finding optimization opportunities, understanding bottlenecks, prioritizing optimization efforts, validating optimizations.
30
+
31
+ ### 3. **Algorithm & Code Optimization**
32
+ Optimize code for better algorithmic complexity, memory efficiency, and CPU performance. Improve loop efficiency, reduce memory allocations, optimize string operations. Optimize concurrency and synchronization patterns. Balance code clarity with performance.
33
+
34
+ **Application**: Reducing CPU usage, improving responsiveness, enabling scaling, reducing memory footprint.
35
+
36
+ ### 4. **Database Performance Optimization**
37
+ Optimize database queries and schema design for performance. Create appropriate indexes, analyze query execution plans, optimize for access patterns. Implement query result caching, connection pooling, and batch operations. Plan for database scaling through replication and partitioning.
38
+
39
+ **Application**: Reducing query latency, improving throughput, enabling database scaling, reducing database load.
40
+
41
+ ### 5. **Caching Strategy Design**
42
+ Design multi-level caching strategies that improve performance while maintaining consistency. Implement in-process caching, distributed caching, and HTTP caching. Design cache invalidation strategies that balance freshness and performance. Plan cache warming strategies.
43
+
44
+ **Application**: Reducing latency, reducing database load, improving hit rates, enabling scalability.
45
+
46
+ ### 6. **Infrastructure & Resource Optimization**
47
+ Optimize infrastructure for performance through proper sizing, configuration, and resource allocation. Plan for load balancing, auto-scaling, and resource constraints. Optimize CPU, memory, disk I/O, and network usage. Design for efficient resource utilization.
48
+
49
+ **Application**: Improving throughput, reducing latency, optimizing costs, enabling scaling.
50
+
51
+ ### 7. **Load Testing & Capacity Planning**
52
+ Design and execute load tests that validate performance at expected scale. Create baseline tests, ramp-up tests, spike tests, and sustained load tests. Identify performance degradation patterns. Plan capacity based on growth projections.
53
+
54
+ **Application**: Validating scalability, finding bottlenecks under load, capacity planning, testing disaster recovery.
55
+
56
+ ### 8. **Frontend Performance Optimization**
57
+ Optimize browser-based performance through JavaScript optimization, CSS optimization, image optimization, and asset loading strategies. Implement code splitting, lazy loading, and progressive rendering. Optimize for Core Web Vitals (LCP, FID, CLS).
58
+
59
+ **Application**: Improving page load times, improving Core Web Vitals, reducing JavaScript bundle size, improving user experience.
60
+
61
+ ### 9. **Network & CDN Optimization**
62
+ Optimize network utilization and latency through CDN usage, compression, connection pooling, and protocol optimization. Reduce payload sizes, minimize round trips, and leverage edge caching. Optimize for slow networks and high latency scenarios.
63
+
64
+ **Application**: Improving responsiveness for geographically distributed users, reducing bandwidth costs, improving load times.
65
+
66
+ ### 10. **Concurrency & Parallelization**
67
+ Design systems that effectively use concurrency for improved performance. Implement thread pools, async/await patterns, and reactive programming. Optimize for multi-core systems. Manage contention and synchronization overhead.
68
+
69
+ **Application**: Improving throughput, improving responsiveness under concurrent load, enabling scaling.
70
+
71
+ ### 11. **Memory Optimization**
72
+ Optimize memory usage through efficient data structures, garbage collection tuning, and memory pooling. Reduce memory leaks and unnecessary allocations. Optimize object reuse. Design for memory-constrained environments.
73
+
74
+ **Application**: Reducing memory footprint, improving garbage collection performance, enabling deployment on smaller machines.
75
+
76
+ ### 12. **Distributed System Performance**
77
+ Design distributed systems for performance considering latency, throughput, and consistency trade-offs. Optimize for network latency and bandwidth. Minimize inter-service communication. Design for efficient data partitioning.
78
+
79
+ **Application**: Designing high-performance distributed systems, optimizing service-to-service communication, scaling to large systems.
80
+
81
+ ### 13. **Real User Monitoring (RUM)**
82
+ Implement monitoring that captures real user experience in production. Collect performance metrics from actual browsers and devices. Identify performance issues affecting real users. Segment performance by user, device, and network characteristics.
83
+
84
+ **Application**: Understanding real-world performance, detecting regressions in production, identifying user experience issues.
85
+
86
+ ### 14. **Performance Budgets & Regression Detection**
87
+ Establish performance budgets that prevent regressions. Implement automated detection of performance regressions. Create performance SLOs. Monitor trends to detect subtle performance degradation.
88
+
89
+ **Application**: Preventing performance regressions, maintaining performance over time, early detection of issues.
90
+
91
+ ### 15. **Scalability Analysis & Planning**
92
+ Analyze systems for scalability limitations. Identify bottlenecks that prevent scaling. Plan for growth and future requirements. Design for horizontal and vertical scalability.
93
+
94
+ **Application**: Capacity planning, preventing scalability surprises, enabling growth, planning infrastructure expansion.
95
+
96
+ ### 16. **Benchmarking & Comparison**
97
+ Design benchmarks that accurately measure performance improvements. Compare performance before and after optimization. Use appropriate metrics for comparison. Account for variability in measurements.
98
+
99
+ **Application**: Validating optimization impact, comparing alternatives, tracking progress.
100
+
101
+ ### 17. **Performance Debugging & Root Cause Analysis**
102
+ Systematically debug performance issues to find root causes. Use profilers, traces, and logs to understand behavior. Test hypotheses about performance issues. Validate fixes.
103
+
104
+ **Application**: Finding performance issues, understanding unexpected behavior, validating fixes.
105
+
106
+ ### 18. **Trade-off Analysis & Decision Making**
107
+ Analyze trade-offs between performance, maintainability, complexity, and other concerns. Make informed decisions about optimization. Document rationale for performance decisions.
108
+
109
+ **Application**: Deciding what to optimize, balancing concerns, justifying optimization efforts.
110
+
111
+ ---
112
+
113
+ ## Specific Domains & Tools
114
+
115
+ ### Profiling Tools
116
+ - **CPU Profilers**: perf, py-spy, Java Flight Recorder, Chrome DevTools
117
+ - **Memory Profilers**: Valgrind, Java Flight Recorder, Chrome DevTools
118
+ - **Network Analysis**: Wireshark, Chrome DevTools, network monitoring tools
119
+ - **Tracing Tools**: Jaeger, Zipkin, distributed tracing platforms
120
+
121
+ ### Performance Measurement
122
+ - **Synthetic Monitoring**: Lighthouse, WebPageTest, k6, JMeter
123
+ - **Real User Monitoring**: Google Analytics, Sentry, New Relic
124
+ - **APM Tools**: Datadog, New Relic, Elastic APM
125
+ - **Metrics**: Prometheus, Grafana, time-series databases
126
+
127
+ ### Load Testing Tools
128
+ - **k6**: Modern load testing platform
129
+ - **Apache JMeter**: Open-source load testing
130
+ - **Gatling**: Scala-based load testing
131
+ - **Locust**: Python-based load testing
132
+
133
+ ### Frontend Performance
134
+ - **Webpack**: JavaScript bundling and optimization
135
+ - **Lighthouse**: Performance auditing
136
+ - **Chrome DevTools**: Browser performance profiling
137
+ - **Web Vitals**: Core Web Vitals measurement
138
+
139
+ ### Database Tools
140
+ - **EXPLAIN plans**: Query analysis
141
+ - **Slow query logs**: Query performance monitoring
142
+ - **Database profilers**: Detailed database performance analysis
143
+ - **Index analysis tools**: Index optimization recommendations
144
+
145
+ ---
146
+
147
+ ## Best Practices
148
+
149
+ 1. **Measure Before Optimizing**: Use data to identify bottlenecks. Don't optimize speculatively. Profile to understand current behavior.
150
+
151
+ 2. **Focus on Bottlenecks First**: Address the 20% of code that uses 80% of resources. Optimize the hottest paths first.
152
+
153
+ 3. **Set Clear Performance Goals**: Establish targets for response time, throughput, and resource utilization. Align with user experience requirements.
154
+
155
+ 4. **Test Optimizations Thoroughly**: Validate that optimizations actually improve performance. Measure before and after. Look for regressions.
156
+
157
+ 5. **Monitor in Production**: Don't rely only on synthetic monitoring. Monitor real users. Detect regressions early.
158
+
159
+ 6. **Consider Trade-offs**: Optimization often involves trade-offs with maintainability, complexity, or readability. Evaluate trade-offs.
160
+
161
+ 7. **Think Globally**: Consider entire system performance, not just individual components. Optimize bottlenecks, not randomly.
162
+
163
+ 8. **Automate Performance Testing**: Include performance tests in CI/CD. Detect regressions automatically.
164
+
165
+ 9. **Document Decisions**: Explain why optimizations were made. Document performance trade-offs.
166
+
167
+ 10. **Iterate & Measure**: Optimization is iterative. Measure progress. Set new goals as old ones are met.
168
+
169
+ ---
170
+
171
+ ## Deliverables
172
+
173
+ - **Performance Analysis Report**: Bottleneck identification and optimization recommendations
174
+ - **Performance Baselines**: Current performance metrics and targets
175
+ - **Load Test Results**: Capacity and scalability findings
176
+ - **Optimization Plan**: Prioritized list of optimizations with estimated impact
177
+ - **Performance Dashboards**: Real-time performance monitoring
178
+ - **Performance Budgets**: Defined performance targets and monitoring
179
+ - **Benchmarking Results**: Before/after comparison of optimizations
180
+ - **Profiling Reports**: Detailed analysis of code/system performance
181
+ - **Scalability Assessment**: Analysis of scaling limitations and recommendations
182
+ - **Monitoring Configuration**: Alerts and metrics for ongoing performance tracking
183
+ - **Tuning Recommendations**: System configuration optimizations
184
+ - **Documentation**: Performance goals, optimization decisions, and trade-offs
185
+
186
+ ---
187
+
188
+ ## Success Criteria
189
+
190
+ 1. **Goals Met**: System meets established performance targets (response time, throughput)
191
+ 2. **Bottlenecks Eliminated**: Primary performance bottlenecks identified and addressed
192
+ 3. **Scalable**: System scales to handle growth without performance degradation
193
+ 4. **Maintainable**: Optimizations don't compromise code quality or maintainability
194
+ 5. **Monitored**: Performance monitored continuously with regressions detected early
195
+ 6. **Consistent**: Performance consistent across different scenarios and load patterns
196
+ 7. **Documented**: Performance goals and decisions documented clearly
197
+ 8. **Sustainable**: Performance improvements sustained over time without ongoing tuning
198
+ 9. **Proportional**: Optimization effort proportional to impact
199
+ 10. **User Experience**: End users perceive responsive, fast system
@@ -0,0 +1,106 @@
1
+ # Quality Assurance (QA)
2
+
3
+ ## Overview
4
+
5
+ The **QA** skill enables AI models to design, implement, execute, and maintain comprehensive quality assurance strategies that ensure software reliability, functionality, security, performance, and user satisfaction throughout the development lifecycle.
6
+
7
+ This skill covers test planning, test execution, test automation, defect management, and quality metrics across multiple testing types and platforms.
8
+
9
+ ---
10
+
11
+ # Goals
12
+
13
+ * Design comprehensive test strategies
14
+ * Identify defects before production
15
+ * Achieve defined coverage targets
16
+ * Execute tests efficiently and reliably
17
+ * Provide clear quality visibility
18
+ * Enable confident deployments
19
+ * Support rapid iteration cycles
20
+ * Maintain quality consistently
21
+
22
+ ---
23
+
24
+ # Capabilities
25
+
26
+ ## Test Planning
27
+ * Test strategy design
28
+ * Test plan development
29
+ * Risk-based testing
30
+ * Coverage planning
31
+
32
+ ## Testing Types
33
+ * Functional testing
34
+ * Non-functional testing
35
+ * Regression testing
36
+ * User acceptance testing
37
+ * Exploratory testing
38
+
39
+ ## Automation
40
+ * Test automation design
41
+ * Test framework selection
42
+ * Test data management
43
+ * CI/CD integration
44
+
45
+ ## Defect Management
46
+ * Defect triage and prioritization
47
+ * Root cause analysis
48
+ * Defect tracking and metrics
49
+
50
+ ---
51
+
52
+ # When to Use
53
+
54
+ * Planning testing strategy
55
+ * Creating test cases
56
+ * Setting up test automation
57
+ * Analyzing defects
58
+ * Improving test coverage
59
+ * Conducting security/performance testing
60
+ * Preparing for releases
61
+
62
+ ---
63
+
64
+ # Expected Workflow
65
+
66
+ ```
67
+ Define Requirements
68
+
69
+ Design Test Strategy
70
+
71
+ Create Test Cases
72
+
73
+ Execute Tests
74
+
75
+ Analyze Defects
76
+
77
+ Report Results
78
+
79
+ Iterate & Improve
80
+ ```
81
+
82
+ ---
83
+
84
+ # Best Practices
85
+
86
+ Always:
87
+ * Define clear test objectives
88
+ * Design tests based on requirements
89
+ * Execute in controlled environments
90
+ * Document findings thoroughly
91
+ * Prioritize critical functionality
92
+ * Keep tests maintainable
93
+ * Track metrics consistently
94
+
95
+ Never:
96
+ * Test in production
97
+ * Skip regression testing
98
+ * Assume testing is unneeded
99
+ * Ignore performance issues
100
+ * Skip accessibility testing
101
+
102
+ ---
103
+
104
+ # Success Criteria
105
+
106
+ Successful QA should identify defects before production, achieve coverage targets, provide reliable results, enable confident deployments, and maintain quality consistently.
@@ -0,0 +1,84 @@
1
+ # QA Skill - Examples
2
+
3
+ This document contains practical examples demonstrating when and how to use the QA Skill.
4
+
5
+ ---
6
+
7
+ # Example 1 - Test Plan Development
8
+
9
+ ## User Request
10
+ Create a comprehensive test plan for a new user authentication feature.
11
+
12
+ ## Expected Behavior
13
+ * Define test scope and objectives
14
+ * Identify test levels (unit, integration, system, acceptance)
15
+ * Design test cases for happy path and edge cases
16
+ * Plan for security testing
17
+ * Define entry and exit criteria
18
+ * Estimate testing effort and timeline
19
+
20
+ ---
21
+
22
+ # Example 2 - Test Automation Strategy
23
+
24
+ ## User Request
25
+ Design a test automation strategy for this REST API.
26
+
27
+ ## Expected Behavior
28
+ * Identify which tests to automate
29
+ * Choose appropriate testing framework
30
+ * Design test data strategy
31
+ * Plan API test coverage
32
+ * Create test execution pipeline
33
+ * Design error handling and retries
34
+
35
+ ---
36
+
37
+ # Example 3 - Performance Testing
38
+
39
+ ## User Request
40
+ Design and execute performance tests for this API.
41
+
42
+ ## Expected Behavior
43
+ * Define performance objectives
44
+ * Design load scenarios
45
+ * Create test data
46
+ * Execute load tests
47
+ * Analyze results
48
+ * Recommend optimizations
49
+
50
+ ---
51
+
52
+ # Example 4 - Security Testing
53
+
54
+ ## User Request
55
+ Plan security testing for this payment processing system.
56
+
57
+ ## Expected Behavior
58
+ * Identify security risks
59
+ * Design security test cases
60
+ * Test authentication/authorization
61
+ * Verify encryption
62
+ * Test input validation
63
+ * Create security test report
64
+
65
+ ---
66
+
67
+ # Example 5 - Accessibility Testing
68
+
69
+ ## User Request
70
+ Verify this web application meets WCAG AA standards.
71
+
72
+ ## Expected Behavior
73
+ * Check color contrast
74
+ * Verify keyboard navigation
75
+ * Test screen reader compatibility
76
+ * Validate form accessibility
77
+ * Document issues found
78
+ * Plan for continuous verification
79
+
80
+ ---
81
+
82
+ # Success Criteria
83
+
84
+ A successful QA effort should find defects before production, achieve coverage targets, execute efficiently, provide visibility, and enable confident deployments.