just-vibe 0.7.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 (512) hide show
  1. package/.agents/plugins/marketplace.json +12 -0
  2. package/.claude-plugin/marketplace.json +12 -0
  3. package/CHANGELOG.md +49 -0
  4. package/LICENSE +21 -0
  5. package/README.md +282 -0
  6. package/bin/just-vibe.mjs +3 -0
  7. package/docs/command-quality.md +74 -0
  8. package/docs/compatibility.md +29 -0
  9. package/docs/releases.md +51 -0
  10. package/evals/README.md +47 -0
  11. package/evals/behavior/cases/arch-events/flow.json +12 -0
  12. package/evals/behavior/cases/arch-events/task.md +3 -0
  13. package/evals/behavior/cases/authz/access.mjs +1 -0
  14. package/evals/behavior/cases/authz/task.md +3 -0
  15. package/evals/behavior/cases/checkout/checkout.mjs +1 -0
  16. package/evals/behavior/cases/checkout/contract.md +1 -0
  17. package/evals/behavior/cases/checkout/keep.txt +1 -0
  18. package/evals/behavior/cases/checkout/task.md +3 -0
  19. package/evals/behavior/cases/data-reconcile/source.json +14 -0
  20. package/evals/behavior/cases/data-reconcile/target.json +14 -0
  21. package/evals/behavior/cases/data-reconcile/task.md +3 -0
  22. package/evals/behavior/cases/db-migrate/context.json +13 -0
  23. package/evals/behavior/cases/db-migrate/migration.sql +3 -0
  24. package/evals/behavior/cases/db-migrate/task.md +3 -0
  25. package/evals/behavior/cases/db-query/query.sql +1 -0
  26. package/evals/behavior/cases/db-query/rows.json +32 -0
  27. package/evals/behavior/cases/db-query/task.md +3 -0
  28. package/evals/behavior/cases/decision-matrix/decision.json +22 -0
  29. package/evals/behavior/cases/decision-matrix/task.md +3 -0
  30. package/evals/behavior/cases/github-pr/prs.json +16 -0
  31. package/evals/behavior/cases/github-pr/request.json +9 -0
  32. package/evals/behavior/cases/github-pr/task.md +3 -0
  33. package/evals/behavior/cases/idempotency/contract.md +1 -0
  34. package/evals/behavior/cases/idempotency/orders.mjs +1 -0
  35. package/evals/behavior/cases/idempotency/task.md +3 -0
  36. package/evals/behavior/cases/ml-checkpoint/checkpoint.json +6 -0
  37. package/evals/behavior/cases/ml-checkpoint/task.md +3 -0
  38. package/evals/behavior/cases/ml-checkpoint/training.json +16 -0
  39. package/evals/behavior/cases/ml-evaluate/labels.json +18 -0
  40. package/evals/behavior/cases/ml-evaluate/predictions.json +14 -0
  41. package/evals/behavior/cases/ml-evaluate/task.md +3 -0
  42. package/evals/behavior/cases/ml-leakage/task.json +30 -0
  43. package/evals/behavior/cases/ml-leakage/task.md +3 -0
  44. package/evals/behavior/cases/ml-parity/serving.json +16 -0
  45. package/evals/behavior/cases/ml-parity/task.md +3 -0
  46. package/evals/behavior/cases/ml-parity/training.json +16 -0
  47. package/evals/behavior/cases/ml-split/task.json +7 -0
  48. package/evals/behavior/cases/ml-split/task.md +3 -0
  49. package/evals/behavior/cases/ops-logs/context.json +4 -0
  50. package/evals/behavior/cases/ops-logs/events.json +17 -0
  51. package/evals/behavior/cases/ops-logs/task.md +3 -0
  52. package/evals/behavior/cases/rag-boundary/documents.json +26 -0
  53. package/evals/behavior/cases/rag-boundary/query.json +5 -0
  54. package/evals/behavior/cases/rag-boundary/task.md +3 -0
  55. package/evals/behavior/cases/react-race/AccountPanel.jsx +1 -0
  56. package/evals/behavior/cases/react-race/loader.mjs +1 -0
  57. package/evals/behavior/cases/react-race/task.md +3 -0
  58. package/evals/behavior/cases/regression-test/checkout.mjs +1 -0
  59. package/evals/behavior/cases/regression-test/contract.md +1 -0
  60. package/evals/behavior/cases/regression-test/task.md +3 -0
  61. package/evals/behavior/cases/ui-accessibility/observations.json +17 -0
  62. package/evals/behavior/cases/ui-accessibility/task.md +3 -0
  63. package/evals/behavior/cases/vercel-env/consumers.json +13 -0
  64. package/evals/behavior/cases/vercel-env/metadata.json +11 -0
  65. package/evals/behavior/cases/vercel-env/task.md +3 -0
  66. package/evals/behavior/cases/vite-assets/deployment.json +8 -0
  67. package/evals/behavior/cases/vite-assets/render.mjs +1 -0
  68. package/evals/behavior/cases/vite-assets/task.md +3 -0
  69. package/evals/behavior/cases/vite-assets/vite.config.mjs +1 -0
  70. package/evals/behavior/cases.json +185 -0
  71. package/evals/behavior/code-oracles.mjs +58 -0
  72. package/evals/behavior/harness.mjs +109 -0
  73. package/evals/behavior/oracles.json +196 -0
  74. package/evals/benchmark/README.md +57 -0
  75. package/evals/benchmark/cases.json +9 -0
  76. package/evals/benchmark/harness.mjs +231 -0
  77. package/evals/benchmark/oracles/node.mjs +69 -0
  78. package/evals/benchmark/oracles/python.py +117 -0
  79. package/evals/benchmark/report.mjs +62 -0
  80. package/evals/benchmark/repos/async-cache/README.md +12 -0
  81. package/evals/benchmark/repos/async-cache/TASK.md +1 -0
  82. package/evals/benchmark/repos/async-cache/package.json +1 -0
  83. package/evals/benchmark/repos/async-cache/src/cache.mjs +13 -0
  84. package/evals/benchmark/repos/async-cache/src/view.mjs +9 -0
  85. package/evals/benchmark/repos/async-cache/test/smoke.test.mjs +9 -0
  86. package/evals/benchmark/repos/ledger/README.md +11 -0
  87. package/evals/benchmark/repos/ledger/TASK.md +1 -0
  88. package/evals/benchmark/repos/ledger/src/service.py +14 -0
  89. package/evals/benchmark/repos/ledger/src/store.py +12 -0
  90. package/evals/benchmark/repos/ledger/test/test_smoke.py +9 -0
  91. package/evals/benchmark/repos/scoped-commit/README.md +5 -0
  92. package/evals/benchmark/repos/scoped-commit/TASK.md +1 -0
  93. package/evals/benchmark/repos/scoped-commit/package.json +1 -0
  94. package/evals/benchmark/repos/scoped-commit/src/invoice.mjs +8 -0
  95. package/evals/benchmark/repos/scoped-commit/test/invoice.test.mjs +4 -0
  96. package/evals/benchmark/repos/temporal-ml/README.md +12 -0
  97. package/evals/benchmark/repos/temporal-ml/TASK.md +1 -0
  98. package/evals/benchmark/repos/temporal-ml/src/features.py +9 -0
  99. package/evals/benchmark/repos/temporal-ml/src/pipeline.py +10 -0
  100. package/evals/benchmark/repos/temporal-ml/src/report.py +2 -0
  101. package/evals/benchmark/repos/temporal-ml/test/test_smoke.py +7 -0
  102. package/evals/benchmark/support/commit-tree.mjs +11 -0
  103. package/evals/benchmark/support/python-test-report.py +48 -0
  104. package/evals/fixtures/checkout/checkout.mjs +4 -0
  105. package/evals/fixtures/checkout/checkout.test.mjs +13 -0
  106. package/evals/fixtures/checkout/package.json +6 -0
  107. package/evals/fixtures/checkout/unrelated.txt +1 -0
  108. package/evals/fixtures/ml/observations.csv +5 -0
  109. package/evals/fixtures/ml/task.md +1 -0
  110. package/evals/releases/0.2.0.md +45 -0
  111. package/evals/releases/0.3.0.md +23 -0
  112. package/evals/releases/0.4.0-results.json +1274 -0
  113. package/evals/releases/0.4.0.md +55 -0
  114. package/evals/releases/0.5.0.md +28 -0
  115. package/evals/releases/0.6.0-after-results.json +1307 -0
  116. package/evals/releases/0.6.0-before-results.json +4850 -0
  117. package/evals/releases/0.6.0.md +94 -0
  118. package/evals/releases/0.7.0.md +32 -0
  119. package/evals/scenarios.json +7777 -0
  120. package/package.json +50 -0
  121. package/plugins/just-vibe/.claude-plugin/plugin.json +11 -0
  122. package/plugins/just-vibe/.codex-plugin/plugin.json +24 -0
  123. package/plugins/just-vibe/LICENSE +21 -0
  124. package/plugins/just-vibe/catalog/commands.json +16757 -0
  125. package/plugins/just-vibe/catalog/packs.json +115 -0
  126. package/plugins/just-vibe/catalog/profiles.json +2503 -0
  127. package/plugins/just-vibe/hooks/hooks.json +11 -0
  128. package/plugins/just-vibe/references/command-reference.md +328 -0
  129. package/plugins/just-vibe/references/daily-workflows.md +133 -0
  130. package/plugins/just-vibe/references/execution.md +60 -0
  131. package/plugins/just-vibe/references/instruction-memory.md +86 -0
  132. package/plugins/just-vibe/references/packs/api.md +27 -0
  133. package/plugins/just-vibe/references/packs/architecture.md +29 -0
  134. package/plugins/just-vibe/references/packs/backend.md +43 -0
  135. package/plugins/just-vibe/references/packs/data.md +27 -0
  136. package/plugins/just-vibe/references/packs/database.md +32 -0
  137. package/plugins/just-vibe/references/packs/decisions.md +29 -0
  138. package/plugins/just-vibe/references/packs/general.md +34 -0
  139. package/plugins/just-vibe/references/packs/git.md +45 -0
  140. package/plugins/just-vibe/references/packs/github.md +31 -0
  141. package/plugins/just-vibe/references/packs/installation.md +27 -0
  142. package/plugins/just-vibe/references/packs/llm.md +33 -0
  143. package/plugins/just-vibe/references/packs/ml-data.md +43 -0
  144. package/plugins/just-vibe/references/packs/ml-deployment.md +31 -0
  145. package/plugins/just-vibe/references/packs/ml-evaluation.md +29 -0
  146. package/plugins/just-vibe/references/packs/ml-experiments.md +29 -0
  147. package/plugins/just-vibe/references/packs/operations.md +35 -0
  148. package/plugins/just-vibe/references/packs/react.md +29 -0
  149. package/plugins/just-vibe/references/packs/security.md +31 -0
  150. package/plugins/just-vibe/references/packs/testing.md +35 -0
  151. package/plugins/just-vibe/references/packs/ui.md +29 -0
  152. package/plugins/just-vibe/references/packs/vercel.md +29 -0
  153. package/plugins/just-vibe/references/packs/vite.md +29 -0
  154. package/plugins/just-vibe/references/profile-reference.md +155 -0
  155. package/plugins/just-vibe/references/profiles/accessibility-engineer.md +31 -0
  156. package/plugins/just-vibe/references/profiles/agent-systems-engineer.md +31 -0
  157. package/plugins/just-vibe/references/profiles/ai-evaluation-engineer.md +31 -0
  158. package/plugins/just-vibe/references/profiles/ai-security-engineer.md +31 -0
  159. package/plugins/just-vibe/references/profiles/analytics-engineer.md +31 -0
  160. package/plugins/just-vibe/references/profiles/android-engineer.md +31 -0
  161. package/plugins/just-vibe/references/profiles/api-engineer.md +31 -0
  162. package/plugins/just-vibe/references/profiles/application-security-engineer.md +31 -0
  163. package/plugins/just-vibe/references/profiles/applied-ai-engineer.md +31 -0
  164. package/plugins/just-vibe/references/profiles/backend-engineer.md +31 -0
  165. package/plugins/just-vibe/references/profiles/bioinformatics-engineer.md +31 -0
  166. package/plugins/just-vibe/references/profiles/blockchain-engineer.md +31 -0
  167. package/plugins/just-vibe/references/profiles/build-release-engineer.md +31 -0
  168. package/plugins/just-vibe/references/profiles/business-intelligence-engineer.md +31 -0
  169. package/plugins/just-vibe/references/profiles/capacity-engineer.md +31 -0
  170. package/plugins/just-vibe/references/profiles/causal-inference-scientist.md +31 -0
  171. package/plugins/just-vibe/references/profiles/cloud-architect.md +31 -0
  172. package/plugins/just-vibe/references/profiles/cloud-engineer.md +31 -0
  173. package/plugins/just-vibe/references/profiles/cloud-security-engineer.md +31 -0
  174. package/plugins/just-vibe/references/profiles/compiler-engineer.md +31 -0
  175. package/plugins/just-vibe/references/profiles/computer-vision-engineer.md +31 -0
  176. package/plugins/just-vibe/references/profiles/controls-engineer.md +31 -0
  177. package/plugins/just-vibe/references/profiles/creative-technologist.md +31 -0
  178. package/plugins/just-vibe/references/profiles/cryptography-engineer.md +31 -0
  179. package/plugins/just-vibe/references/profiles/data-analyst.md +31 -0
  180. package/plugins/just-vibe/references/profiles/data-architect.md +31 -0
  181. package/plugins/just-vibe/references/profiles/data-engineer.md +31 -0
  182. package/plugins/just-vibe/references/profiles/data-governance-engineer.md +31 -0
  183. package/plugins/just-vibe/references/profiles/data-platform-engineer.md +31 -0
  184. package/plugins/just-vibe/references/profiles/data-quality-engineer.md +31 -0
  185. package/plugins/just-vibe/references/profiles/data-scientist.md +31 -0
  186. package/plugins/just-vibe/references/profiles/database-engineer.md +31 -0
  187. package/plugins/just-vibe/references/profiles/database-reliability-engineer.md +31 -0
  188. package/plugins/just-vibe/references/profiles/design-systems-engineer.md +31 -0
  189. package/plugins/just-vibe/references/profiles/desktop-engineer.md +31 -0
  190. package/plugins/just-vibe/references/profiles/detection-engineer.md +31 -0
  191. package/plugins/just-vibe/references/profiles/developer-advocate.md +31 -0
  192. package/plugins/just-vibe/references/profiles/developer-experience-engineer.md +31 -0
  193. package/plugins/just-vibe/references/profiles/devops-engineer.md +31 -0
  194. package/plugins/just-vibe/references/profiles/distributed-systems-engineer.md +31 -0
  195. package/plugins/just-vibe/references/profiles/edge-engineer.md +31 -0
  196. package/plugins/just-vibe/references/profiles/embedded-engineer.md +31 -0
  197. package/plugins/just-vibe/references/profiles/engineering-manager.md +31 -0
  198. package/plugins/just-vibe/references/profiles/enterprise-architect.md +31 -0
  199. package/plugins/just-vibe/references/profiles/experimentation-engineer.md +31 -0
  200. package/plugins/just-vibe/references/profiles/finops-engineer.md +31 -0
  201. package/plugins/just-vibe/references/profiles/firmware-engineer.md +31 -0
  202. package/plugins/just-vibe/references/profiles/frontend-architect.md +31 -0
  203. package/plugins/just-vibe/references/profiles/frontend-engineer.md +31 -0
  204. package/plugins/just-vibe/references/profiles/fullstack-engineer.md +31 -0
  205. package/plugins/just-vibe/references/profiles/game-networking-engineer.md +31 -0
  206. package/plugins/just-vibe/references/profiles/gameplay-engineer.md +31 -0
  207. package/plugins/just-vibe/references/profiles/geospatial-engineer.md +31 -0
  208. package/plugins/just-vibe/references/profiles/graphics-engineer.md +31 -0
  209. package/plugins/just-vibe/references/profiles/hpc-engineer.md +31 -0
  210. package/plugins/just-vibe/references/profiles/identity-access-engineer.md +31 -0
  211. package/plugins/just-vibe/references/profiles/inference-engineer.md +31 -0
  212. package/plugins/just-vibe/references/profiles/infrastructure-engineer.md +31 -0
  213. package/plugins/just-vibe/references/profiles/integration-architect.md +31 -0
  214. package/plugins/just-vibe/references/profiles/integration-engineer.md +31 -0
  215. package/plugins/just-vibe/references/profiles/ios-engineer.md +31 -0
  216. package/plugins/just-vibe/references/profiles/iot-engineer.md +31 -0
  217. package/plugins/just-vibe/references/profiles/kubernetes-engineer.md +31 -0
  218. package/plugins/just-vibe/references/profiles/llm-engineer.md +31 -0
  219. package/plugins/just-vibe/references/profiles/machine-learning-engineer.md +31 -0
  220. package/plugins/just-vibe/references/profiles/ml-architect.md +31 -0
  221. package/plugins/just-vibe/references/profiles/ml-data-engineer.md +31 -0
  222. package/plugins/just-vibe/references/profiles/ml-platform-engineer.md +31 -0
  223. package/plugins/just-vibe/references/profiles/mlops-engineer.md +31 -0
  224. package/plugins/just-vibe/references/profiles/mobile-engineer.md +31 -0
  225. package/plugins/just-vibe/references/profiles/network-engineer.md +31 -0
  226. package/plugins/just-vibe/references/profiles/nlp-engineer.md +31 -0
  227. package/plugins/just-vibe/references/profiles/observability-engineer.md +31 -0
  228. package/plugins/just-vibe/references/profiles/performance-engineer.md +31 -0
  229. package/plugins/just-vibe/references/profiles/platform-architect.md +31 -0
  230. package/plugins/just-vibe/references/profiles/platform-engineer.md +31 -0
  231. package/plugins/just-vibe/references/profiles/principal-engineer.md +31 -0
  232. package/plugins/just-vibe/references/profiles/privacy-engineer.md +31 -0
  233. package/plugins/just-vibe/references/profiles/product-engineer.md +31 -0
  234. package/plugins/just-vibe/references/profiles/product-security-engineer.md +31 -0
  235. package/plugins/just-vibe/references/profiles/protocol-engineer.md +31 -0
  236. package/plugins/just-vibe/references/profiles/qa-automation-engineer.md +31 -0
  237. package/plugins/just-vibe/references/profiles/recommendation-engineer.md +31 -0
  238. package/plugins/just-vibe/references/profiles/reinforcement-learning-engineer.md +31 -0
  239. package/plugins/just-vibe/references/profiles/research-engineer.md +31 -0
  240. package/plugins/just-vibe/references/profiles/research-scientist.md +31 -0
  241. package/plugins/just-vibe/references/profiles/responsible-ai-engineer.md +31 -0
  242. package/plugins/just-vibe/references/profiles/robotics-engineer.md +31 -0
  243. package/plugins/just-vibe/references/profiles/runtime-engineer.md +31 -0
  244. package/plugins/just-vibe/references/profiles/scientific-software-engineer.md +31 -0
  245. package/plugins/just-vibe/references/profiles/search-engineer.md +31 -0
  246. package/plugins/just-vibe/references/profiles/security-architect.md +31 -0
  247. package/plugins/just-vibe/references/profiles/security-automation-engineer.md +31 -0
  248. package/plugins/just-vibe/references/profiles/security-incident-responder.md +31 -0
  249. package/plugins/just-vibe/references/profiles/senior-software-engineer.md +31 -0
  250. package/plugins/just-vibe/references/profiles/simulation-engineer.md +31 -0
  251. package/plugins/just-vibe/references/profiles/site-reliability-engineer.md +31 -0
  252. package/plugins/just-vibe/references/profiles/software-architect.md +31 -0
  253. package/plugins/just-vibe/references/profiles/solutions-architect.md +31 -0
  254. package/plugins/just-vibe/references/profiles/speech-engineer.md +31 -0
  255. package/plugins/just-vibe/references/profiles/staff-engineer.md +31 -0
  256. package/plugins/just-vibe/references/profiles/storage-engineer.md +31 -0
  257. package/plugins/just-vibe/references/profiles/streaming-data-engineer.md +31 -0
  258. package/plugins/just-vibe/references/profiles/supply-chain-security-engineer.md +31 -0
  259. package/plugins/just-vibe/references/profiles/systems-engineer.md +31 -0
  260. package/plugins/just-vibe/references/profiles/tech-lead.md +31 -0
  261. package/plugins/just-vibe/references/profiles/technical-writer.md +31 -0
  262. package/plugins/just-vibe/references/profiles/test-infrastructure-engineer.md +31 -0
  263. package/plugins/just-vibe/references/profiles/ui-engineer.md +31 -0
  264. package/plugins/just-vibe/references/profiles/ux-engineer.md +31 -0
  265. package/plugins/just-vibe/references/profiles/web-performance-engineer.md +31 -0
  266. package/plugins/just-vibe/references/profiles/xr-engineer.md +31 -0
  267. package/plugins/just-vibe/references/profiles.md +59 -0
  268. package/plugins/just-vibe/references/runtime.md +70 -0
  269. package/plugins/just-vibe/references/scenarios/auth.md +31 -0
  270. package/plugins/just-vibe/references/scenarios/combobox.md +9 -0
  271. package/plugins/just-vibe/references/scenarios/date-picker.md +9 -0
  272. package/plugins/just-vibe/references/scenarios/delivery-evidence.md +21 -0
  273. package/plugins/just-vibe/references/scenarios/dialog.md +9 -0
  274. package/plugins/just-vibe/references/scenarios/training.md +21 -0
  275. package/plugins/just-vibe/references/teach-test.md +37 -0
  276. package/plugins/just-vibe/references/teaching.md +34 -0
  277. package/plugins/just-vibe/references/validation.md +11 -0
  278. package/plugins/just-vibe/scripts/discover-capabilities.mjs +3 -0
  279. package/plugins/just-vibe/scripts/hooks.mjs +14 -0
  280. package/plugins/just-vibe/scripts/inspect-project.mjs +3 -0
  281. package/plugins/just-vibe/scripts/installer.mjs +280 -0
  282. package/plugins/just-vibe/scripts/lib/automation.mjs +142 -0
  283. package/plugins/just-vibe/scripts/lib/bundle.mjs +100 -0
  284. package/plugins/just-vibe/scripts/lib/catalog.mjs +135 -0
  285. package/plugins/just-vibe/scripts/lib/command.mjs +26 -0
  286. package/plugins/just-vibe/scripts/lib/continuity.mjs +77 -0
  287. package/plugins/just-vibe/scripts/lib/discovery.mjs +84 -0
  288. package/plugins/just-vibe/scripts/lib/entrypoint.mjs +12 -0
  289. package/plugins/just-vibe/scripts/lib/evidence.mjs +136 -0
  290. package/plugins/just-vibe/scripts/lib/process.mjs +44 -0
  291. package/plugins/just-vibe/scripts/lib/profiles.mjs +83 -0
  292. package/plugins/just-vibe/scripts/lib/project.mjs +60 -0
  293. package/plugins/just-vibe/scripts/lib/routing.mjs +82 -0
  294. package/plugins/just-vibe/scripts/lib/run.mjs +248 -0
  295. package/plugins/just-vibe/scripts/lib/storage.mjs +84 -0
  296. package/plugins/just-vibe/scripts/lib/teaching.mjs +118 -0
  297. package/plugins/just-vibe/scripts/toolkit.mjs +225 -0
  298. package/plugins/just-vibe/skills/a11y/SKILL.md +8 -0
  299. package/plugins/just-vibe/skills/api-breaking/SKILL.md +56 -0
  300. package/plugins/just-vibe/skills/api-client/SKILL.md +56 -0
  301. package/plugins/just-vibe/skills/api-contract-test/SKILL.md +56 -0
  302. package/plugins/just-vibe/skills/api-design/SKILL.md +56 -0
  303. package/plugins/just-vibe/skills/api-errors/SKILL.md +56 -0
  304. package/plugins/just-vibe/skills/api-openapi/SKILL.md +56 -0
  305. package/plugins/just-vibe/skills/api-pagination/SKILL.md +56 -0
  306. package/plugins/just-vibe/skills/api-webhooks/SKILL.md +56 -0
  307. package/plugins/just-vibe/skills/arch-boundaries/SKILL.md +58 -0
  308. package/plugins/just-vibe/skills/arch-contracts/SKILL.md +56 -0
  309. package/plugins/just-vibe/skills/arch-event-flow/SKILL.md +56 -0
  310. package/plugins/just-vibe/skills/arch-feature/SKILL.md +57 -0
  311. package/plugins/just-vibe/skills/arch-map/SKILL.md +56 -0
  312. package/plugins/just-vibe/skills/arch-modernize/SKILL.md +56 -0
  313. package/plugins/just-vibe/skills/arch-scale/SKILL.md +58 -0
  314. package/plugins/just-vibe/skills/arch-tenancy/SKILL.md +56 -0
  315. package/plugins/just-vibe/skills/auto/SKILL.md +67 -0
  316. package/plugins/just-vibe/skills/automate/SKILL.md +56 -0
  317. package/plugins/just-vibe/skills/backend-auth/SKILL.md +63 -0
  318. package/plugins/just-vibe/skills/backend-cache/SKILL.md +59 -0
  319. package/plugins/just-vibe/skills/backend-concurrency/SKILL.md +58 -0
  320. package/plugins/just-vibe/skills/backend-idempotency/SKILL.md +58 -0
  321. package/plugins/just-vibe/skills/backend-jobs/SKILL.md +56 -0
  322. package/plugins/just-vibe/skills/backend-permissions/SKILL.md +56 -0
  323. package/plugins/just-vibe/skills/backend-resilience/SKILL.md +56 -0
  324. package/plugins/just-vibe/skills/backend-service/SKILL.md +56 -0
  325. package/plugins/just-vibe/skills/brainstorm/SKILL.md +56 -0
  326. package/plugins/just-vibe/skills/build/SKILL.md +56 -0
  327. package/plugins/just-vibe/skills/challenge/SKILL.md +56 -0
  328. package/plugins/just-vibe/skills/checkpoint/SKILL.md +59 -0
  329. package/plugins/just-vibe/skills/ci/SKILL.md +56 -0
  330. package/plugins/just-vibe/skills/cleanup/SKILL.md +56 -0
  331. package/plugins/just-vibe/skills/compare/SKILL.md +56 -0
  332. package/plugins/just-vibe/skills/copy/SKILL.md +56 -0
  333. package/plugins/just-vibe/skills/coverage/SKILL.md +56 -0
  334. package/plugins/just-vibe/skills/data-backfill/SKILL.md +56 -0
  335. package/plugins/just-vibe/skills/data-contract/SKILL.md +56 -0
  336. package/plugins/just-vibe/skills/data-incremental/SKILL.md +56 -0
  337. package/plugins/just-vibe/skills/data-lineage/SKILL.md +56 -0
  338. package/plugins/just-vibe/skills/data-pipeline/SKILL.md +56 -0
  339. package/plugins/just-vibe/skills/data-profile/SKILL.md +56 -0
  340. package/plugins/just-vibe/skills/data-quality/SKILL.md +56 -0
  341. package/plugins/just-vibe/skills/data-reconcile/SKILL.md +56 -0
  342. package/plugins/just-vibe/skills/db-access/SKILL.md +56 -0
  343. package/plugins/just-vibe/skills/db-explain/SKILL.md +56 -0
  344. package/plugins/just-vibe/skills/db-index/SKILL.md +56 -0
  345. package/plugins/just-vibe/skills/db-integrity/SKILL.md +57 -0
  346. package/plugins/just-vibe/skills/db-locks/SKILL.md +56 -0
  347. package/plugins/just-vibe/skills/db-migrate/SKILL.md +63 -0
  348. package/plugins/just-vibe/skills/db-query/SKILL.md +56 -0
  349. package/plugins/just-vibe/skills/db-schema/SKILL.md +56 -0
  350. package/plugins/just-vibe/skills/debug/SKILL.md +56 -0
  351. package/plugins/just-vibe/skills/decide/SKILL.md +57 -0
  352. package/plugins/just-vibe/skills/decision-adr/SKILL.md +56 -0
  353. package/plugins/just-vibe/skills/decision-buy-build/SKILL.md +56 -0
  354. package/plugins/just-vibe/skills/decision-matrix/SKILL.md +56 -0
  355. package/plugins/just-vibe/skills/decision-premortem/SKILL.md +56 -0
  356. package/plugins/just-vibe/skills/decision-reversible/SKILL.md +56 -0
  357. package/plugins/just-vibe/skills/decision-revisit/SKILL.md +56 -0
  358. package/plugins/just-vibe/skills/decision-spike/SKILL.md +58 -0
  359. package/plugins/just-vibe/skills/deploy/SKILL.md +56 -0
  360. package/plugins/just-vibe/skills/deps/SKILL.md +56 -0
  361. package/plugins/just-vibe/skills/design/SKILL.md +56 -0
  362. package/plugins/just-vibe/skills/do/SKILL.md +8 -0
  363. package/plugins/just-vibe/skills/docs/SKILL.md +56 -0
  364. package/plugins/just-vibe/skills/doctor/SKILL.md +58 -0
  365. package/plugins/just-vibe/skills/explain/SKILL.md +56 -0
  366. package/plugins/just-vibe/skills/fix/SKILL.md +57 -0
  367. package/plugins/just-vibe/skills/git-bisect/SKILL.md +58 -0
  368. package/plugins/just-vibe/skills/git-commit/SKILL.md +59 -0
  369. package/plugins/just-vibe/skills/git-conflicts/SKILL.md +58 -0
  370. package/plugins/just-vibe/skills/git-diff/SKILL.md +58 -0
  371. package/plugins/just-vibe/skills/git-recover/SKILL.md +58 -0
  372. package/plugins/just-vibe/skills/git-split/SKILL.md +58 -0
  373. package/plugins/just-vibe/skills/git-status/SKILL.md +58 -0
  374. package/plugins/just-vibe/skills/git-worktree/SKILL.md +58 -0
  375. package/plugins/just-vibe/skills/github-actions/SKILL.md +64 -0
  376. package/plugins/just-vibe/skills/github-address-review/SKILL.md +58 -0
  377. package/plugins/just-vibe/skills/github-fix-ci/SKILL.md +63 -0
  378. package/plugins/just-vibe/skills/github-issue/SKILL.md +58 -0
  379. package/plugins/just-vibe/skills/github-pr/SKILL.md +63 -0
  380. package/plugins/just-vibe/skills/github-release/SKILL.md +58 -0
  381. package/plugins/just-vibe/skills/github-review/SKILL.md +58 -0
  382. package/plugins/just-vibe/skills/github-triage/SKILL.md +58 -0
  383. package/plugins/just-vibe/skills/handoff/SKILL.md +62 -0
  384. package/plugins/just-vibe/skills/help/SKILL.md +63 -0
  385. package/plugins/just-vibe/skills/integrate/SKILL.md +56 -0
  386. package/plugins/just-vibe/skills/learn/SKILL.md +56 -0
  387. package/plugins/just-vibe/skills/llm-cost/SKILL.md +56 -0
  388. package/plugins/just-vibe/skills/llm-evals/SKILL.md +58 -0
  389. package/plugins/just-vibe/skills/llm-injection/SKILL.md +56 -0
  390. package/plugins/just-vibe/skills/llm-prompt/SKILL.md +56 -0
  391. package/plugins/just-vibe/skills/llm-rag/SKILL.md +56 -0
  392. package/plugins/just-vibe/skills/llm-retrieval/SKILL.md +56 -0
  393. package/plugins/just-vibe/skills/llm-structured/SKILL.md +56 -0
  394. package/plugins/just-vibe/skills/llm-tools/SKILL.md +58 -0
  395. package/plugins/just-vibe/skills/map/SKILL.md +56 -0
  396. package/plugins/just-vibe/skills/match/SKILL.md +56 -0
  397. package/plugins/just-vibe/skills/migrate/SKILL.md +56 -0
  398. package/plugins/just-vibe/skills/ml-ablation/SKILL.md +56 -0
  399. package/plugins/just-vibe/skills/ml-baseline/SKILL.md +56 -0
  400. package/plugins/just-vibe/skills/ml-batch/SKILL.md +56 -0
  401. package/plugins/just-vibe/skills/ml-calibrate/SKILL.md +56 -0
  402. package/plugins/just-vibe/skills/ml-dataset/SKILL.md +56 -0
  403. package/plugins/just-vibe/skills/ml-dataset-version/SKILL.md +56 -0
  404. package/plugins/just-vibe/skills/ml-debug-training/SKILL.md +56 -0
  405. package/plugins/just-vibe/skills/ml-drift/SKILL.md +56 -0
  406. package/plugins/just-vibe/skills/ml-error-analysis/SKILL.md +56 -0
  407. package/plugins/just-vibe/skills/ml-evaluate/SKILL.md +56 -0
  408. package/plugins/just-vibe/skills/ml-experiments/SKILL.md +56 -0
  409. package/plugins/just-vibe/skills/ml-explain/SKILL.md +56 -0
  410. package/plugins/just-vibe/skills/ml-features/SKILL.md +59 -0
  411. package/plugins/just-vibe/skills/ml-frame/SKILL.md +56 -0
  412. package/plugins/just-vibe/skills/ml-imbalance/SKILL.md +56 -0
  413. package/plugins/just-vibe/skills/ml-inference-perf/SKILL.md +56 -0
  414. package/plugins/just-vibe/skills/ml-labels/SKILL.md +56 -0
  415. package/plugins/just-vibe/skills/ml-leakage/SKILL.md +64 -0
  416. package/plugins/just-vibe/skills/ml-monitor/SKILL.md +56 -0
  417. package/plugins/just-vibe/skills/ml-package/SKILL.md +56 -0
  418. package/plugins/just-vibe/skills/ml-parity/SKILL.md +56 -0
  419. package/plugins/just-vibe/skills/ml-report/SKILL.md +56 -0
  420. package/plugins/just-vibe/skills/ml-reproduce/SKILL.md +56 -0
  421. package/plugins/just-vibe/skills/ml-robustness/SKILL.md +56 -0
  422. package/plugins/just-vibe/skills/ml-rollout/SKILL.md +56 -0
  423. package/plugins/just-vibe/skills/ml-serving/SKILL.md +56 -0
  424. package/plugins/just-vibe/skills/ml-slices/SKILL.md +56 -0
  425. package/plugins/just-vibe/skills/ml-split/SKILL.md +58 -0
  426. package/plugins/just-vibe/skills/ml-threshold/SKILL.md +56 -0
  427. package/plugins/just-vibe/skills/ml-train/SKILL.md +62 -0
  428. package/plugins/just-vibe/skills/ml-training-cost/SKILL.md +56 -0
  429. package/plugins/just-vibe/skills/ml-tune/SKILL.md +56 -0
  430. package/plugins/just-vibe/skills/ops-alerts/SKILL.md +56 -0
  431. package/plugins/just-vibe/skills/ops-container/SKILL.md +56 -0
  432. package/plugins/just-vibe/skills/ops-incident/SKILL.md +56 -0
  433. package/plugins/just-vibe/skills/ops-logs/SKILL.md +56 -0
  434. package/plugins/just-vibe/skills/ops-observability/SKILL.md +56 -0
  435. package/plugins/just-vibe/skills/ops-postmortem/SKILL.md +56 -0
  436. package/plugins/just-vibe/skills/ops-restore/SKILL.md +56 -0
  437. package/plugins/just-vibe/skills/ops-runbook/SKILL.md +56 -0
  438. package/plugins/just-vibe/skills/orient/SKILL.md +58 -0
  439. package/plugins/just-vibe/skills/perf/SKILL.md +56 -0
  440. package/plugins/just-vibe/skills/plan/SKILL.md +56 -0
  441. package/plugins/just-vibe/skills/polish/SKILL.md +56 -0
  442. package/plugins/just-vibe/skills/pr/SKILL.md +58 -0
  443. package/plugins/just-vibe/skills/profile/SKILL.md +66 -0
  444. package/plugins/just-vibe/skills/profiles/SKILL.md +58 -0
  445. package/plugins/just-vibe/skills/react-async/SKILL.md +57 -0
  446. package/plugins/just-vibe/skills/react-audit/SKILL.md +56 -0
  447. package/plugins/just-vibe/skills/react-component/SKILL.md +65 -0
  448. package/plugins/just-vibe/skills/react-effects/SKILL.md +58 -0
  449. package/plugins/just-vibe/skills/react-forms/SKILL.md +56 -0
  450. package/plugins/just-vibe/skills/react-hydration/SKILL.md +57 -0
  451. package/plugins/just-vibe/skills/react-rerenders/SKILL.md +56 -0
  452. package/plugins/just-vibe/skills/react-state/SKILL.md +56 -0
  453. package/plugins/just-vibe/skills/refactor/SKILL.md +56 -0
  454. package/plugins/just-vibe/skills/release/SKILL.md +58 -0
  455. package/plugins/just-vibe/skills/remember/SKILL.md +70 -0
  456. package/plugins/just-vibe/skills/repro/SKILL.md +56 -0
  457. package/plugins/just-vibe/skills/research/SKILL.md +56 -0
  458. package/plugins/just-vibe/skills/responsive/SKILL.md +8 -0
  459. package/plugins/just-vibe/skills/resume/SKILL.md +63 -0
  460. package/plugins/just-vibe/skills/review/SKILL.md +56 -0
  461. package/plugins/just-vibe/skills/scope/SKILL.md +56 -0
  462. package/plugins/just-vibe/skills/security/SKILL.md +56 -0
  463. package/plugins/just-vibe/skills/security-authz/SKILL.md +56 -0
  464. package/plugins/just-vibe/skills/security-config/SKILL.md +56 -0
  465. package/plugins/just-vibe/skills/security-dependencies/SKILL.md +56 -0
  466. package/plugins/just-vibe/skills/security-fix/SKILL.md +56 -0
  467. package/plugins/just-vibe/skills/security-inputs/SKILL.md +56 -0
  468. package/plugins/just-vibe/skills/security-secrets/SKILL.md +56 -0
  469. package/plugins/just-vibe/skills/security-threat-model/SKILL.md +56 -0
  470. package/plugins/just-vibe/skills/security-uploads/SKILL.md +56 -0
  471. package/plugins/just-vibe/skills/setup/SKILL.md +60 -0
  472. package/plugins/just-vibe/skills/skill/SKILL.md +56 -0
  473. package/plugins/just-vibe/skills/spec/SKILL.md +56 -0
  474. package/plugins/just-vibe/skills/tasks/SKILL.md +56 -0
  475. package/plugins/just-vibe/skills/teach/SKILL.md +63 -0
  476. package/plugins/just-vibe/skills/teach-test/SKILL.md +65 -0
  477. package/plugins/just-vibe/skills/test/SKILL.md +56 -0
  478. package/plugins/just-vibe/skills/test-e2e/SKILL.md +56 -0
  479. package/plugins/just-vibe/skills/test-fixtures/SKILL.md +56 -0
  480. package/plugins/just-vibe/skills/test-flaky/SKILL.md +56 -0
  481. package/plugins/just-vibe/skills/test-integration/SKILL.md +56 -0
  482. package/plugins/just-vibe/skills/test-load/SKILL.md +56 -0
  483. package/plugins/just-vibe/skills/test-property/SKILL.md +56 -0
  484. package/plugins/just-vibe/skills/test-regression/SKILL.md +57 -0
  485. package/plugins/just-vibe/skills/test-unit/SKILL.md +56 -0
  486. package/plugins/just-vibe/skills/tools/SKILL.md +64 -0
  487. package/plugins/just-vibe/skills/trace/SKILL.md +56 -0
  488. package/plugins/just-vibe/skills/ui-accessibility/SKILL.md +57 -0
  489. package/plugins/just-vibe/skills/ui-audit/SKILL.md +56 -0
  490. package/plugins/just-vibe/skills/ui-flow/SKILL.md +56 -0
  491. package/plugins/just-vibe/skills/ui-motion/SKILL.md +56 -0
  492. package/plugins/just-vibe/skills/ui-responsive/SKILL.md +56 -0
  493. package/plugins/just-vibe/skills/ui-states/SKILL.md +56 -0
  494. package/plugins/just-vibe/skills/ui-system/SKILL.md +56 -0
  495. package/plugins/just-vibe/skills/ui-visual-diff/SKILL.md +56 -0
  496. package/plugins/just-vibe/skills/vercel-audit/SKILL.md +56 -0
  497. package/plugins/just-vibe/skills/vercel-build-fix/SKILL.md +63 -0
  498. package/plugins/just-vibe/skills/vercel-env/SKILL.md +56 -0
  499. package/plugins/just-vibe/skills/vercel-performance/SKILL.md +56 -0
  500. package/plugins/just-vibe/skills/vercel-preview/SKILL.md +56 -0
  501. package/plugins/just-vibe/skills/vercel-release-check/SKILL.md +57 -0
  502. package/plugins/just-vibe/skills/vercel-routing/SKILL.md +56 -0
  503. package/plugins/just-vibe/skills/vercel-runtime/SKILL.md +61 -0
  504. package/plugins/just-vibe/skills/verify/SKILL.md +59 -0
  505. package/plugins/just-vibe/skills/vite-assets/SKILL.md +57 -0
  506. package/plugins/just-vibe/skills/vite-bundle/SKILL.md +58 -0
  507. package/plugins/just-vibe/skills/vite-chunks/SKILL.md +56 -0
  508. package/plugins/just-vibe/skills/vite-config/SKILL.md +56 -0
  509. package/plugins/just-vibe/skills/vite-env/SKILL.md +56 -0
  510. package/plugins/just-vibe/skills/vite-hmr/SKILL.md +56 -0
  511. package/plugins/just-vibe/skills/vite-setup/SKILL.md +56 -0
  512. package/plugins/just-vibe/skills/vite-upgrade/SKILL.md +56 -0
@@ -0,0 +1,29 @@
1
+ # ML experiment methods
2
+
3
+ Resolve dataset/split identity, objective, metric, code/environment, hardware and time/compute budget. Record configuration and seed, but do not promise determinism from a seed alone. Keep the held-out test set untouched during model selection.
4
+
5
+ Establish a naive and simple-model baseline under the same protocol. Training begins with a small shape/data/loss smoke check, then bounded execution with checkpoints, optimizer/scheduler state and resume instructions. NaNs, exhausted budgets and partial runs have explicit terminal states.
6
+
7
+ Debug the first numerical or semantic divergence: inputs/targets, scale, loss, gradients, optimizer and update behavior. A tiny-batch overfit probe can discriminate pipeline failures from generalization problems; it is not a reason to launch a large new run.
8
+
9
+ Tuning fixes search space, trial budget, pruning and selection criteria before execution. Ablations hold data/protocol constant and distinguish noise from component contribution. Run comparison checks dataset, metric definitions and failures, not just headline scores. Reproduction uses exact artifacts or declares substitutions and tolerances. Cost analysis separates loading/compute/checkpoint time and only uses verified rates for monetary estimates.
10
+
11
+ ## Applied methods
12
+
13
+ ### Framework branches
14
+
15
+ For classical estimators, preserve fitted preprocessing and the estimator together, record train/validation membership and compare a naive baseline. For iterative tensor training, inspect data/target shapes, device and dtype, loss inputs, gradient flow and optimizer updates on a small controlled batch before a longer run. Respect the repository's framework/version conventions rather than introducing a second training stack.
16
+
17
+ ### Checkpoint acceptance
18
+
19
+ A PyTorch checkpoint for continuing training normally includes model and optimizer state plus progress; restoring weights alone does not reproduce optimizer history. Select train/eval mode deliberately after loading. [PyTorch checkpoint guidance](https://docs.pytorch.org/tutorials/recipes/recipes/saving_and_loading_a_general_checkpoint.html).
20
+
21
+ For the actual project, also inventory scheduler, mixed-precision scaler when used, RNG state, data/sampler position and gradient-accumulation state if resuming mid-step. Record what the framework owns automatically. A safe simpler policy may checkpoint only at defined completed-step/epoch boundaries and document the resume granularity. Write atomically, identify code/data/config, and retain the last known-good checkpoint.
22
+
23
+ Test an interrupted run against an uninterrupted short run under declared tolerances. Report nondeterministic differences rather than promising determinism from a seed. A missing continuation component means restart or approximate resume, not exact continuation.
24
+
25
+ ### Debugging and selection
26
+
27
+ Locate the first divergent batch/tensor/update for NaNs or non-learning. Check objective semantics and target scale before changing model size. A tiny-batch overfit probe tests plumbing, not generalization.
28
+
29
+ Freeze tuning space, metric, trial caps and selection data first. Keep failed/pruned trials in the ledger. Compare ablations under matched data/protocol; separate noise from component contribution. Test-set feedback must not become another optimization loop. Track resource use per completed useful result, not only the best successful trial.
@@ -0,0 +1,35 @@
1
+ # Operations methods
2
+
3
+ Resolve service/environment, incident window, revision and authorized evidence sources. Normalize timezone/clock differences and correlate request/job IDs. Separate customer impact, observed facts, hypotheses and proposed interventions. Missing telemetry is not proof of no impact.
4
+
5
+ Start with evidence-preserving diagnostics. A coincident deployment is not automatically causal. Restarts, failovers, cancellation, traffic changes and customer messages need the exact requested operational authority; do not perform them while merely writing an incident brief.
6
+
7
+ Instrumentation answers concrete questions with redacted fields and bounded cardinality/overhead. Alerts connect a meaningful signal/window to a responder action, missing-data behavior and recovery; writing a rule does not enable notifications or establish ownership.
8
+
9
+ Runbooks use verified target checks, commands, expected results, abort conditions and recovery. Container diagnosis compares build/runtime stages, paths, user permissions, entrypoints and health behavior; no privileged mounts by default. Restore exercises verify backup identity and an isolated destination, then schema/counts/integrity/application behavior and recovery timing. A readable backup is not a successful restore.
10
+
11
+ Postmortems preserve uncertainty, distinguish trigger from systemic contributors, and map each follow-up to a demonstrated failure mechanism. Do not invent impact counts, owners or consensus, or post reports/tickets without instructions.
12
+
13
+ ## Applied methods
14
+
15
+ ### Incident ledger
16
+
17
+ Record timestamp/time zone, observation, source, hypothesis, action, expected result and actual result. Establish customer impact and affected revision separately from correlated changes. A deployment near the failure is a hypothesis until supported. Preserve logs/state before interventions that may erase evidence.
18
+
19
+ ### Logs and instrumentation
20
+
21
+ Follow stable request/job IDs across asynchronous boundaries and account for clock skew. Repeated retry errors may be symptoms of one earlier cause. Missing spans remain gaps. Query bounded time ranges and redact sensitive values.
22
+
23
+ Design telemetry around questions: which revision, tenant-safe cohort, dependency, stage and failure category? Keep arbitrary user IDs out of metric labels. Check success and failure instrumentation plus privacy and overhead on controlled requests.
24
+
25
+ ### Runbook and alert example
26
+
27
+ For a queue backlog alert, define sustained age/impact, missing telemetry, recovery condition and responder action. A transient spike may need no page; absent data should not silently count as healthy. Name ownership as proposed when it is unknown.
28
+
29
+ A runbook step states exact target, precondition, action, expected observation and abort/recovery path. Mark unexercised commands clearly. Writing a runbook does not authorize executing its production steps.
30
+
31
+ ### Restore and postmortem
32
+
33
+ Rehearse backups in an isolated destination with verified identity and keys. Validate schema, membership/counts, integrity and application behavior; a readable archive alone does not demonstrate recovery. Record elapsed recovery and the actual data-loss window.
34
+
35
+ Postmortems distinguish trigger, contributing conditions and detection/recovery gaps. Each action should address an observed failure mechanism with a measurable outcome. Preserve unknown root cause or impact instead of inventing a complete story.
@@ -0,0 +1,29 @@
1
+ # React methods
2
+
3
+ Identify React/framework versions, server/client boundaries, data-fetching conventions and component state owners. Follow data from the source of truth through props, context, hooks and derived state. Preserve the existing state/fetch library unless changing it is requested.
4
+
5
+ Effects synchronize external systems. Check identity, dependency, cleanup and remount behavior; do not suppress dependency warnings to disguise stale closures. Reproduce out-of-order requests deterministically, and ensure stale responses cannot overwrite a newer account/query. Cancellation does not undo server-side effects.
6
+
7
+ Render performance requires profiler/interaction evidence. Find changing props/context and expensive work before introducing memoization, then compare the same interaction. State refactoring must preserve independent instances, resets, persistence and user-visible transitions.
8
+
9
+ Components/forms include valid, loading, invalid, failed, disabled and success behavior where applicable. Preserve input on recoverable errors; connect labels, errors and focus. Hydration work compares server and first client output, including time, randomness, locale, browser-only data and invalid nesting; suppressing the warning is not a fix.
10
+
11
+ ## Applied methods
12
+
13
+ ### Request-race fixture
14
+
15
+ For an account panel, control two deferred responses: select A, select B, resolve B, then resolve A. The final visible account must remain B. Separately unmount before completion. A cleanup abort may reduce work, but response identity or an equivalent library guarantee must prevent stale state updates. Do not assert that aborting a request reverses a server-side mutation.
16
+
17
+ Effects synchronize with external systems. Derived display values often belong in rendering. Check dependencies and cleanup across setup, changed inputs and unmount; development remount checks can reveal missing cleanup. Follow the installed React/framework semantics rather than suppressing warnings. [React useEffect](https://react.dev/reference/react/useEffect).
18
+
19
+ ### State and form contracts
20
+
21
+ Name the source of truth for each value. A draft may intentionally differ from a prop; define when it resets instead of copying props into state on every update. Test two independent component instances to catch accidental shared state.
22
+
23
+ For forms, exercise editing, invalid input, pending submission, server rejection and retry. Preserve values after a recoverable rejection, associate field errors programmatically and return focus deliberately. UI pending state alone does not prevent duplicate server effects.
24
+
25
+ ### Performance and hydration
26
+
27
+ Capture one slow interaction with fixed data. Inspect render and commit duration, changing prop/context identities and expensive work before memoization. Re-run the same interaction and check that callbacks/data remain current; lower render count alone is not a useful result.
28
+
29
+ For hydration, compare server markup and first client output before effects. Check locale, time, randomness, browser-only storage and invalid nesting. Resolve an inconsistent initial snapshot or define an intentional boundary; hiding warnings does not establish matching output or working controls.
@@ -0,0 +1,31 @@
1
+ # Security methods
2
+
3
+ Define assets, trust boundaries, entry points, authorized code/environment and relevant policies. Follow reachable data/privilege paths and distinguish demonstrated weaknesses from speculation. Read-only source audits do not authorize live attacks or third-party probing.
4
+
5
+ Authorization covers direct IDs, alternate methods, exports, jobs and tenant boundaries, using isolated identities for active checks. Input audits trace values to actual interpreters/sinks and account for contextual escaping or parameterization; user input alone is not proof of injection.
6
+
7
+ Secret scanning reports redacted location/type/confidence. Never print or validate suspected live credentials against a provider without authorization. Rotation, history rewriting and incident notification are separate actions. Upload audits follow validation, processing, path/storage boundaries and download authorization; do not execute hostile files to prove a point.
8
+
9
+ Dependencies are assessed against resolved versions, current authoritative advisories and actual exposure. Config review distinguishes development from production and inspects effective settings when available. Fixes test the original unsafe path plus legitimate behavior at the correct boundary; a code patch does not erase prior data or credential exposure.
10
+
11
+ ## Applied methods
12
+
13
+ ### Evidence classification
14
+
15
+ For each finding record attacker capability, source, transformations, sensitive sink, existing control, triggering condition and impact. Separate confirmed reachable defects from conditional risks and unknown configuration. A suspicious function name or dependency advisory alone does not prove exploitability.
16
+
17
+ ### Authorization and input examples
18
+
19
+ Build positive and negative cases for subject/action/resource/tenant. Test direct IDs, alternate methods, exports and workers with synthetic identities. An authenticated user is not necessarily authorized for the resource; UI visibility is not enforcement.
20
+
21
+ For injection, trace the final interpreter boundary. Parameterized SQL and appropriate contextual escaping can change the conclusion even when input is untrusted. Avoid destructive payloads; use controlled fixtures that demonstrate the violated invariant.
22
+
23
+ ### Upload and secret lifecycle
24
+
25
+ Check upload receipt, quarantine, processing, storage and download authorization. Validate actual content and resource bounds as applicable; do not trust a filename extension or let quarantined files bypass controls through another endpoint. Keep hostile samples inert and isolated.
26
+
27
+ Secret reports contain locations/types and redacted evidence, never credential values. Distinguish test placeholders. Do not try suspected credentials against providers. A code fix does not rotate an exposed credential or erase its history; list operational follow-up separately.
28
+
29
+ ### Dependency and configuration triage
30
+
31
+ Match advisories to resolved versions, deployed use and required configuration. Separate dev tooling from runtime exposure. Review effective production settings rather than labeling every development exception a live incident. Missing access means unknown coverage. Repair the owning boundary and test both abuse and legitimate behavior before claiming the requested vulnerability is fixed.
@@ -0,0 +1,35 @@
1
+ # Testing methods
2
+
3
+ Read behavior requirements and existing test conventions. Choose the lowest layer that reliably protects the invariant: unit for isolated behavior, integration for real boundaries, end-to-end for critical journeys. Preserve the distinction between real dependency evidence and mocks.
4
+
5
+ Regression tests reproduce the actual trigger and, when feasible, fail on the broken revision before passing on the fix. Assertions target behavior, not helper call order. Fixtures use minimal realistic deterministic data, isolated identities and cleanup; never copy private production data for convenience.
6
+
7
+ Flaky tests require controlled order/seed/repetition evidence. Diagnose shared state, timing, races, environment and cleanup before changing timeouts. Record trial counts and residual uncertainty. Retries/skips do not repair a flaky invariant.
8
+
9
+ Property tests define valid generators and invariants, bound iterations, shrink failures and record seeds. Avoid filtering away difficult inputs or asserting tautologies. Load tests require exact authorized target, workload, rate/concurrency/duration caps, observability and error/resource stop thresholds. Neither a local fixture nor a staging test implies permission to stress production or trigger real payments/messages.
10
+
11
+ ## Applied methods
12
+
13
+ ### Layer choice
14
+
15
+ Use a unit test for a pure contract, integration test for a real boundary and end-to-end test for a critical user journey. Do not put all edge permutations in the browser when a lower layer observes the same invariant reliably. Conversely, a mocked database is not proof of real transaction or policy behavior.
16
+
17
+ ### Independent assertion example
18
+
19
+ For a checkout total, calculate a small expected amount from the stated pricing rule rather than calling the same helper as the implementation. Cover null coupon and zero-valued discount separately. A regression test should fail on the actual broken path; setup failure does not demonstrate regression sensitivity. Preserve the original assertion while fixing the implementation.
20
+
21
+ When checking sensitivity, isolate the broken implementation in a temporary copy or worktree and preserve the real index and unrelated edits. Record the failing assertion or unexpected behavior exception and its causal path. A missing new helper import, parse failure in the test, or timeout before any assertion is inconclusive. An exception raised by the original implementation on a documented valid input can be the actual regression; do not require every useful test failure to have one exception class. For asynchronous tests, bound waits and release deferred resources even when an assertion fails so later checks can finish.
22
+
23
+ Test evaluators too: known-good controls should pass, seeded defects should fail, missing output and incomplete runs must not become successes. If an evaluator bug is found, retain the original scores, document the correction and rescore every affected arm under the same rule. Never silently alter a rubric for one favored result.
24
+
25
+ ### Flakes and fixtures
26
+
27
+ Capture test order, seed, clock and resource identity. Force the suspected interleaving with controlled deferred work instead of arbitrary sleeps. Reproduce at a bounded repeat count and report the observed sample; zero failures does not mathematically prove absence.
28
+
29
+ Fixtures need valid defaults and intentional invalid variants, unique identities under concurrency and cleanup after partial setup. Property tests need independently stated invariants and constructive generators; reject excessive filtering and preserve shrunk counterexamples/seeds.
30
+
31
+ ### Load and browser evidence
32
+
33
+ Before load generation, fix endpoint/environment, rate/concurrency/duration caps, error/load stop thresholds and side-effect isolation. Stop on thresholds and record the last stable conditions.
34
+
35
+ Browser tests should use user-visible outcomes and resilient semantic locators, inspect pending/error/recovery states and preserve useful artifacts on failure. A screenshot can establish appearance at one state; it does not establish keyboard behavior or every viewport. Unavailable dependencies remain explicit coverage gaps.
@@ -0,0 +1,29 @@
1
+ # UI methods
2
+
3
+ Read existing tokens/components and inspect the actual requested flow before editing. Establish viewport, theme, content, state and font conditions for comparisons. Screenshots at different conditions cannot support precise visual-difference claims.
4
+
5
+ Prioritize hierarchy, readability, primary action, recovery and content flow. Responsive work examines intrinsic widths, long text, intermediate breakpoints, zoom and input method; do not hide required content to fit a screenshot. Reuse semantic tokens rather than scatter near-duplicate hard-coded values.
6
+
7
+ Accessibility checks combine source/automated evidence with keyboard and focus behavior. Verify dialog entry/escape/return focus, error associations and dynamic announcements; label screen-reader checks unverified if not exercised. Motion needs interruption, cancellation and reduced-motion behavior that preserves all functionality.
8
+
9
+ For flows, enumerate entry, normal completion, cancellation, failure/retry and back navigation. Product policy determines transitions; do not invent billing or account rules. Report exactly which views/states were inspected and which remain unverified.
10
+
11
+ ## Applied methods
12
+
13
+ ### State and viewport matrix
14
+
15
+ Choose representative normal, empty, loading, error and long-content states for the actual journey. Inspect a narrow, intermediate and wide layout plus relevant zoom/input conditions. These are samples, not a claim of every device. Capture the viewport, DPR, theme, fonts and content when comparing visuals.
16
+
17
+ For a narrow settings screen, identify the intrinsic constraint causing overflow: fixed width, unbreakable content, grid minimum or an oversized child. Reflow it and verify focus and actions remain reachable. Hiding required controls is not responsive repair.
18
+
19
+ ### Interaction checks
20
+
21
+ For a dialog: open by keyboard, confirm initial focus, traverse the intended focus sequence, close through supported methods and verify focus returns appropriately. For a form: activate labels, submit invalid data, inspect error association/announcement and retry while retaining input. Record the browser and assistive technology actually used. Automated scans and source review do not establish complete accessibility conformance.
22
+
23
+ For partial-data errors, keep valid content visible and identify the failed region. Empty data and failed fetching have different recovery actions. Motion must tolerate interruption and provide equivalent information with reduced motion enabled.
24
+
25
+ ### Tokens and visual comparison
26
+
27
+ Use semantic tokens such as text-muted or surface-warning only when their roles remain coherent across themes and component states. Inspect representative specimens before broad adoption.
28
+
29
+ For visual diffs, match capture conditions and suppress only justified nondeterminism. A dynamic timestamp can be masked; a shifting panel cannot be dismissed merely because its content is dynamic. Report user-impacting geometry and state differences rather than blindly accepting a changed snapshot.
@@ -0,0 +1,29 @@
1
+ # Vercel methods
2
+
3
+ Resolve the exact team, project, deployment ID, environment and Git revision before diagnosing or mutating. Use available project/deployment metadata and logs via a connector or installed CLI; verify its supported read commands. Do not relink a project or create `.vercel` configuration just to inspect it.
4
+
5
+ Compare repository root, framework, build command, output path, runtime/package-manager versions and variable **names/scopes** with deployment settings. A preview can differ from production and local builds. Locate the first failing build or runtime boundary rather than patching symptoms.
6
+
7
+ Inspect redirect/rewrite precedence and framework routing together. Test read-only URLs only within the requested scope; preserve API routes and nested asset paths. Separate cold/warm/cache-hit/cache-miss timing before making performance claims.
8
+
9
+ Environment reports contain names, required presence and target scope, never values. Avoid commands that download secrets as an incidental audit step. Preview creation, production promotion, DNS/alias changes and rollback are different actions. For releases verify deployed revision, health, schema compatibility and previous known-good target; reverting a deployment may not revert data.
10
+
11
+ ## Applied methods
12
+
13
+ ### Configuration diagnosis
14
+
15
+ Start with exact team/project, deployment ID, Git SHA and environment. Compare project root with the package that owns the build script; inspect the monorepo install root separately. Record build command, output directory, framework preset and Node/package-manager versions from evidence. Do not relink the project just to discover its identity.
16
+
17
+ For a local-success/deployment-failure case, locate the first causal build line. Compare resolved dependencies, runtime and working directory before editing application code. A dependency accidentally supplied through local hoisting may be absent from the deployed workspace.
18
+
19
+ ### Environment and runtime branches
20
+
21
+ Record variable names, consumer and environment/branch scope. Build-time client substitution differs from server runtime lookup. A changed variable may require a new deployment; existing compiled assets do not update simply because project metadata changed. Preview, production and development are distinct environments. [Vercel environments](https://vercel.com/docs/deployments/environments).
22
+
23
+ For a runtime failure, trace handler entry, validation, dependency acquisition, downstream wait and response. A build pass establishes no handler health. Compare cold/warm and cache-hit/cache-miss samples under equivalent region, payload and revision conditions before attributing latency.
24
+
25
+ ### Preview and release evidence
26
+
27
+ Use supported read operations from the installed CLI/connector to locate matching deployments before creating another. After requested creation, verify SHA, URL, access protection, nested route, API path and asset content type. A protected preview may be healthy even when anonymous requests cannot inspect it.
28
+
29
+ Keep a release gate table with candidate revision, checks, health, environment requirements, observability and rollback target. Code rollback does not reverse data changes. If the previous deployment cannot read the new schema, record that recovery limit before a readiness claim.
@@ -0,0 +1,29 @@
1
+ # Vite methods
2
+
3
+ Read the installed Vite, framework and plugin versions, lockfile, build scripts and config sources. Do not execute imported config during read-only review; configuration may contain arbitrary code. Consult version-specific primary migration/configuration documentation when editing options.
4
+
5
+ Aliases must agree between TypeScript/editor resolution and runtime/build resolution. Environment loading depends on mode; client-exposed prefixes are not a place for secrets. Inspect generated assets for exposure only when existing or when a build is authorized, and redact values in findings.
6
+
7
+ For HMR, follow file watcher → module graph → framework refresh → browser transport. Distinguish a full reload from preserved hot state. For assets, exercise dev and production output at root, nested and requested base paths. Public files and imported hashed assets have different path semantics.
8
+
9
+ For bundles/chunks compare the same build mode and dependency versions. Trace large modules to imports, inspect duplicated modules and lazy boundaries, and measure transferred/compressed versus raw bytes explicitly. Avoid arbitrary chunking rules and blanket dependency removal. Verify deep links and lazy routes after changes.
10
+
11
+ ## Applied methods
12
+
13
+ ### Resolve the actual invocation
14
+
15
+ Read the package script and workspace working directory before configuration. Record command, mode, root, envDir, base, aliases and framework plugins. Config may branch on build versus serve; static inspection does not authorize running arbitrary imported configuration code.
16
+
17
+ Mode and NODE_ENV are separate inputs. Trace environment precedence against the installed Vite version and inspect names rather than values. Client-exposed variables are compiled into browser code; adding a public prefix to a secret is not a fix. Restart/rebuild requirements depend on where the value is read. [Vite environment and mode documentation](https://vite.dev/guide/env-and-mode).
18
+
19
+ ### Three concrete diagnoses
20
+
21
+ 1. Alias typechecks but fails at runtime: compare TypeScript paths with effective bundler resolution and the exact path/case present in the deployed filesystem.
22
+ 2. Images work at / but fail at /dashboard/: distinguish imported hashed assets from public files and runtime string concatenation. Inspect the emitted URL and test direct nested navigation, not only navigation from the root.
23
+ 3. HMR fails behind a proxy: trace watcher event, module invalidation, websocket connection and framework refresh boundary. Diagnose the missing boundary before relaxing host/filesystem restrictions.
24
+
25
+ ### Bundle and upgrade evidence
26
+
27
+ A size comparison uses the same build conditions and distinguishes raw, compressed and transferred bytes. Map a large module to when a real route requests it. Splitting can reduce initial bytes while adding a network waterfall or changing module side-effect order; inspect route behavior after the change.
28
+
29
+ For upgrades, check the target's migration notes plus Node and framework-plugin support. Verify development refresh, production build and a representative preview path. Keep unrelated major upgrades out of the change and do not claim success if a required plugin has no compatible version.
@@ -0,0 +1,155 @@
1
+ # Engineering profiles
2
+
3
+ 112 task profiles. [Selection, scope and precedence](profiles.md). Read only the roles relevant to the request. Suggested workflows do not imply available tools or authorization.
4
+
5
+ ## Application engineering
6
+
7
+ | Profile | Purpose |
8
+ |---|---|
9
+ | [Frontend engineer](profiles/frontend-engineer.md) | Build reliable browser features around user interaction and data flow. |
10
+ | [Fullstack engineer](profiles/fullstack-engineer.md) | Deliver complete features across UI, API and persistence. |
11
+ | [Backend engineer](profiles/backend-engineer.md) | Implement service behavior with explicit consistency and failure semantics. |
12
+ | [Product engineer](profiles/product-engineer.md) | Turn a user problem into a small measurable product improvement. |
13
+ | [Mobile engineer](profiles/mobile-engineer.md) | Build mobile experiences that survive lifecycle and network changes. |
14
+ | [iOS engineer](profiles/ios-engineer.md) | Implement iOS features with lifecycle, concurrency and platform interaction in mind. |
15
+ | [Android engineer](profiles/android-engineer.md) | Implement Android features with explicit state ownership and lifecycle handling. |
16
+ | [Desktop application engineer](profiles/desktop-engineer.md) | Build reliable installed applications and native integrations. |
17
+ | [API engineer](profiles/api-engineer.md) | Design interfaces with clear semantics and compatible evolution. |
18
+ | [Integration engineer](profiles/integration-engineer.md) | Connect systems with explicit identity, delivery and reconciliation rules. |
19
+
20
+ ## Interface and experience
21
+
22
+ | Profile | Purpose |
23
+ |---|---|
24
+ | [UI engineer](profiles/ui-engineer.md) | Implement visual components with complete interaction states. |
25
+ | [UX engineer](profiles/ux-engineer.md) | Prototype and implement interaction flows that reduce user effort. |
26
+ | [Design systems engineer](profiles/design-systems-engineer.md) | Maintain reusable tokens and components with clear adoption contracts. |
27
+ | [Accessibility engineer](profiles/accessibility-engineer.md) | Find and repair barriers in real user interactions. |
28
+ | [Web performance engineer](profiles/web-performance-engineer.md) | Improve browser performance from measured bottlenecks. |
29
+ | [Creative technologist](profiles/creative-technologist.md) | Build expressive interactive experiences within practical constraints. |
30
+
31
+ ## Platform and infrastructure
32
+
33
+ | Profile | Purpose |
34
+ |---|---|
35
+ | [Platform engineer](profiles/platform-engineer.md) | Create internal capabilities that make product teams more effective. |
36
+ | [DevOps engineer](profiles/devops-engineer.md) | Improve build and delivery flow with reproducible operations. |
37
+ | [Site reliability engineer](profiles/site-reliability-engineer.md) | Manage service reliability through measurable user impact and controlled recovery. |
38
+ | [Cloud engineer](profiles/cloud-engineer.md) | Design and operate cloud resources around workload and identity requirements. |
39
+ | [Infrastructure engineer](profiles/infrastructure-engineer.md) | Maintain reproducible compute, network and storage foundations. |
40
+ | [Developer experience engineer](profiles/developer-experience-engineer.md) | Remove measurable friction from development and debugging. |
41
+ | [Build and release engineer](profiles/build-release-engineer.md) | Produce reproducible, traceable artifacts and controlled releases. |
42
+ | [Observability engineer](profiles/observability-engineer.md) | Make system behavior diagnosable with useful signals. |
43
+ | [Network engineer](profiles/network-engineer.md) | Reason about connectivity, routing and protocol behavior. |
44
+ | [FinOps engineer](profiles/finops-engineer.md) | Explain and reduce infrastructure cost without hiding service tradeoffs. |
45
+ | [Storage engineer](profiles/storage-engineer.md) | Design durable storage behavior around access and recovery requirements. |
46
+ | [Capacity planning engineer](profiles/capacity-engineer.md) | Plan service capacity from workload shape and constrained resources. |
47
+ | [Edge computing engineer](profiles/edge-engineer.md) | Place execution and data near users or devices with explicit constraints. |
48
+ | [Kubernetes engineer](profiles/kubernetes-engineer.md) | Operate container workloads with explicit scheduling and recovery behavior. |
49
+
50
+ ## Data and databases
51
+
52
+ | Profile | Purpose |
53
+ |---|---|
54
+ | [Data engineer](profiles/data-engineer.md) | Build reliable data movement and transformations. |
55
+ | [Analytics engineer](profiles/analytics-engineer.md) | Create trustworthy analytical models and shared business definitions. |
56
+ | [Data scientist](profiles/data-scientist.md) | Answer empirical questions with defensible analysis and uncertainty. |
57
+ | [Data analyst](profiles/data-analyst.md) | Produce clear, accurate answers from operational and analytical data. |
58
+ | [Business intelligence engineer](profiles/business-intelligence-engineer.md) | Build dependable reporting models and dashboards. |
59
+ | [Database engineer](profiles/database-engineer.md) | Design schemas and queries around integrity and workload. |
60
+ | [Database reliability engineer](profiles/database-reliability-engineer.md) | Maintain database availability, recoverability and safe change. |
61
+ | [Streaming data engineer](profiles/streaming-data-engineer.md) | Process continuous events with explicit time and delivery semantics. |
62
+ | [Data platform engineer](profiles/data-platform-engineer.md) | Provide shared data infrastructure with usable governance and operations. |
63
+ | [Data quality engineer](profiles/data-quality-engineer.md) | Detect and localize data failures that matter to downstream use. |
64
+ | [Data governance engineer](profiles/data-governance-engineer.md) | Make data ownership, retention and permitted use technically enforceable. |
65
+ | [Search engineer](profiles/search-engineer.md) | Improve retrieval relevance, latency and index correctness. |
66
+
67
+ ## Machine learning and AI
68
+
69
+ | Profile | Purpose |
70
+ |---|---|
71
+ | [Machine learning engineer](profiles/machine-learning-engineer.md) | Turn a modeling task into a reproducible, deployable prediction system. |
72
+ | [Applied AI engineer](profiles/applied-ai-engineer.md) | Use models to solve an application problem with measurable quality and fallback behavior. |
73
+ | [Research engineer](profiles/research-engineer.md) | Make research ideas reproducible and experimentally testable. |
74
+ | [Research scientist](profiles/research-scientist.md) | Evaluate novel hypotheses through rigorous experimental design. |
75
+ | [MLOps engineer](profiles/mlops-engineer.md) | Operate reproducible model training and release workflows. |
76
+ | [ML platform engineer](profiles/ml-platform-engineer.md) | Build shared infrastructure for model development and operation. |
77
+ | [Inference engineer](profiles/inference-engineer.md) | Improve model serving efficiency while preserving output quality. |
78
+ | [LLM engineer](profiles/llm-engineer.md) | Build reliable language-model applications with explicit evidence and tool boundaries. |
79
+ | [Natural language processing engineer](profiles/nlp-engineer.md) | Model language tasks with careful data and evaluation semantics. |
80
+ | [Computer vision engineer](profiles/computer-vision-engineer.md) | Build image and video models with valid spatial and temporal evaluation. |
81
+ | [Speech and audio engineer](profiles/speech-engineer.md) | Build audio systems with explicit timing, speaker and acoustic assumptions. |
82
+ | [Recommendation systems engineer](profiles/recommendation-engineer.md) | Rank useful items while respecting temporal and exposure effects. |
83
+ | [Reinforcement learning engineer](profiles/reinforcement-learning-engineer.md) | Develop sequential decision systems with controlled interaction and evaluation. |
84
+ | [AI evaluation engineer](profiles/ai-evaluation-engineer.md) | Measure model and agent behavior with independent, representative tests. |
85
+ | [Responsible AI engineer](profiles/responsible-ai-engineer.md) | Investigate model harms and implement measurable risk controls. |
86
+ | [ML data engineer](profiles/ml-data-engineer.md) | Build reproducible training data and point-in-time feature pipelines. |
87
+ | [Agent systems engineer](profiles/agent-systems-engineer.md) | Build bounded agent workflows with explicit state and tool effects. |
88
+ | [AI security engineer](profiles/ai-security-engineer.md) | Assess model-system trust boundaries and abuse paths. |
89
+ | [Causal inference scientist](profiles/causal-inference-scientist.md) | Estimate intervention effects under explicit identification assumptions. |
90
+ | [Experimentation engineer](profiles/experimentation-engineer.md) | Build trustworthy online experiments and measurement infrastructure. |
91
+
92
+ ## Security and privacy
93
+
94
+ | Profile | Purpose |
95
+ |---|---|
96
+ | [Application security engineer](profiles/application-security-engineer.md) | Find and repair exploitable application trust-boundary failures. |
97
+ | [Product security engineer](profiles/product-security-engineer.md) | Integrate threat-informed controls into product design and release. |
98
+ | [Cloud security engineer](profiles/cloud-security-engineer.md) | Protect cloud identity, network and resource boundaries. |
99
+ | [Detection engineer](profiles/detection-engineer.md) | Build actionable detections from observable attack behavior. |
100
+ | [Security incident responder](profiles/security-incident-responder.md) | Contain and investigate security incidents while preserving evidence. |
101
+ | [Privacy engineer](profiles/privacy-engineer.md) | Implement data minimization and lifecycle controls in software. |
102
+ | [Identity and access engineer](profiles/identity-access-engineer.md) | Design authentication and authorization with explicit identity boundaries. |
103
+ | [Software supply chain security engineer](profiles/supply-chain-security-engineer.md) | Protect dependency, build and artifact trust chains. |
104
+ | [Security automation engineer](profiles/security-automation-engineer.md) | Automate repeatable security work with reviewable actions and recovery. |
105
+ | [Cryptography engineer](profiles/cryptography-engineer.md) | Integrate established cryptographic mechanisms with sound key and protocol handling. |
106
+
107
+ ## Quality and technical leadership
108
+
109
+ | Profile | Purpose |
110
+ |---|---|
111
+ | [QA automation engineer](profiles/qa-automation-engineer.md) | Turn important user behavior into reliable automated coverage. |
112
+ | [Test infrastructure engineer](profiles/test-infrastructure-engineer.md) | Build fast, trustworthy test execution and fixture systems. |
113
+ | [Performance engineer](profiles/performance-engineer.md) | Improve system performance from controlled measurements. |
114
+ | [Senior software engineer](profiles/senior-software-engineer.md) | Own a bounded implementation with sound tradeoffs and maintainability. |
115
+ | [Staff engineer](profiles/staff-engineer.md) | Resolve cross-team technical problems and make adoption practical. |
116
+ | [Principal engineer](profiles/principal-engineer.md) | Guide long-term technical direction across systems and teams. |
117
+ | [Software architect](profiles/software-architect.md) | Design system boundaries and contracts around actual quality requirements. |
118
+ | [Solutions architect](profiles/solutions-architect.md) | Map a concrete business use case onto a workable technical system. |
119
+ | [Enterprise architect](profiles/enterprise-architect.md) | Align shared systems, capabilities and migration dependencies across an organization. |
120
+ | [Data architect](profiles/data-architect.md) | Design data ownership, models and movement across systems. |
121
+ | [Cloud architect](profiles/cloud-architect.md) | Design cloud topology and service choices from workload requirements. |
122
+ | [Security architect](profiles/security-architect.md) | Design enforceable trust boundaries across a system. |
123
+ | [Technical lead](profiles/tech-lead.md) | Coordinate a technical change through clear decisions and integration boundaries. |
124
+ | [Engineering manager](profiles/engineering-manager.md) | Structure engineering planning around capacity, risk and delivery evidence. |
125
+ | [Technical writer](profiles/technical-writer.md) | Create documentation that lets the intended reader complete a task. |
126
+ | [Developer advocate](profiles/developer-advocate.md) | Create accurate developer examples and feedback grounded in real use. |
127
+ | [Frontend architect](profiles/frontend-architect.md) | Design frontend boundaries and evolution across substantial applications. |
128
+ | [ML systems architect](profiles/ml-architect.md) | Design the complete data-to-decision lifecycle across ML systems. |
129
+ | [Platform architect](profiles/platform-architect.md) | Design shared platform capabilities and their long-term operating model. |
130
+ | [Integration architect](profiles/integration-architect.md) | Design cross-system contracts and consistency boundaries. |
131
+
132
+ ## Systems and specialized computing
133
+
134
+ | Profile | Purpose |
135
+ |---|---|
136
+ | [Systems software engineer](profiles/systems-engineer.md) | Build low-level software with explicit resource and concurrency behavior. |
137
+ | [Distributed systems engineer](profiles/distributed-systems-engineer.md) | Design behavior under partial failure, concurrency and delayed information. |
138
+ | [Embedded software engineer](profiles/embedded-engineer.md) | Implement constrained-device software with explicit timing and resource limits. |
139
+ | [Firmware engineer](profiles/firmware-engineer.md) | Build boot, device-control and update logic with recoverable state transitions. |
140
+ | [Robotics software engineer](profiles/robotics-engineer.md) | Integrate sensing, planning and actuation with explicit physical assumptions. |
141
+ | [Controls software engineer](profiles/controls-engineer.md) | Implement feedback behavior with explicit dynamics and stability assumptions. |
142
+ | [Gameplay engineer](profiles/gameplay-engineer.md) | Implement game rules and interaction with clear state and timing. |
143
+ | [Game networking engineer](profiles/game-networking-engineer.md) | Build multiplayer behavior under latency, loss and untrusted clients. |
144
+ | [Graphics engineer](profiles/graphics-engineer.md) | Implement rendering with measurable visual and resource behavior. |
145
+ | [AR and VR engineer](profiles/xr-engineer.md) | Build spatial interfaces with careful tracking, latency and comfort constraints. |
146
+ | [Compiler engineer](profiles/compiler-engineer.md) | Implement language transformations that preserve defined semantics. |
147
+ | [Language runtime engineer](profiles/runtime-engineer.md) | Build execution machinery with explicit memory and concurrency semantics. |
148
+ | [High-performance computing engineer](profiles/hpc-engineer.md) | Scale numerical workloads with measured compute and communication behavior. |
149
+ | [Scientific software engineer](profiles/scientific-software-engineer.md) | Build reproducible computational tools that preserve scientific meaning. |
150
+ | [Bioinformatics engineer](profiles/bioinformatics-engineer.md) | Build reproducible biological-data workflows with clear provenance. |
151
+ | [Geospatial engineer](profiles/geospatial-engineer.md) | Implement spatial data processing with explicit coordinate and topology semantics. |
152
+ | [Blockchain engineer](profiles/blockchain-engineer.md) | Implement ledger integrations with explicit finality and authority assumptions. |
153
+ | [Protocol engineer](profiles/protocol-engineer.md) | Specify interoperable message and state-machine behavior. |
154
+ | [IoT engineer](profiles/iot-engineer.md) | Connect constrained devices to services with resilient identity and synchronization. |
155
+ | [Simulation engineer](profiles/simulation-engineer.md) | Build simulations that expose assumptions and support defensible comparisons. |
@@ -0,0 +1,31 @@
1
+ # Accessibility engineer
2
+
3
+ Find and repair barriers in real user interactions.
4
+
5
+ Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
6
+
7
+ ## Priorities
8
+
9
+ - Trace keyboard focus, semantics, labels and error recovery.
10
+ - Distinguish automated findings from manual and assistive-technology evidence.
11
+
12
+ ## Decision rule
13
+
14
+ Prefer native controls when they satisfy the behavior; custom widgets need complete interaction semantics.
15
+
16
+ ## Verify when relevant
17
+
18
+ - Exercise keyboard entry, operation and exit.
19
+ - Check relevant screen-reader behavior and contrast with available tools.
20
+
21
+ ## Boundary
22
+
23
+ A clean automated scan is not a conformance claim.
24
+
25
+ ## Candidate workflows
26
+
27
+ - [ui-accessibility](../../skills/ui-accessibility/SKILL.md)
28
+ - [ui-flow](../../skills/ui-flow/SKILL.md)
29
+ - [test-e2e](../../skills/test-e2e/SKILL.md)
30
+
31
+ Example: Audit and repair a dialog and its focus restoration.
@@ -0,0 +1,31 @@
1
+ # Agent systems engineer
2
+
3
+ Build bounded agent workflows with explicit state and tool effects.
4
+
5
+ Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
6
+
7
+ ## Priorities
8
+
9
+ - Separate planning, execution, observation and verified completion.
10
+ - Carry user constraints and action authority through retries.
11
+
12
+ ## Decision rule
13
+
14
+ Use deterministic state transitions when recovery or external effects require auditable bookkeeping.
15
+
16
+ ## Verify when relevant
17
+
18
+ - Test interruption, duplicate actions and unavailable tools.
19
+ - Verify original success criteria and budget preservation.
20
+
21
+ ## Boundary
22
+
23
+ A role, plan or tool suggestion never grants new authority.
24
+
25
+ ## Candidate workflows
26
+
27
+ - [llm-tools](../../skills/llm-tools/SKILL.md)
28
+ - [llm-evals](../../skills/llm-evals/SKILL.md)
29
+ - [auto](../../skills/auto/SKILL.md)
30
+
31
+ Example: Design an agent that can recover from a failed diagnostic step.
@@ -0,0 +1,31 @@
1
+ # AI evaluation engineer
2
+
3
+ Measure model and agent behavior with independent, representative tests.
4
+
5
+ Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
6
+
7
+ ## Priorities
8
+
9
+ - Separate fixtures, judge criteria and implementation instructions.
10
+ - Track model, prompt, tools and dataset identities.
11
+
12
+ ## Decision rule
13
+
14
+ Use executable assertions for verifiable behavior and calibrated human review for subjective criteria.
15
+
16
+ ## Verify when relevant
17
+
18
+ - Check judge reliability, contamination and failure sensitivity.
19
+ - Report missingness, repetitions and uncertainty.
20
+
21
+ ## Boundary
22
+
23
+ Passing public fixtures is not a universal quality claim.
24
+
25
+ ## Candidate workflows
26
+
27
+ - [llm-evals](../../skills/llm-evals/SKILL.md)
28
+ - [ml-evaluate](../../skills/ml-evaluate/SKILL.md)
29
+ - [test-regression](../../skills/test-regression/SKILL.md)
30
+
31
+ Example: Create a held-out evaluation for a tool-using assistant.
@@ -0,0 +1,31 @@
1
+ # AI security engineer
2
+
3
+ Assess model-system trust boundaries and abuse paths.
4
+
5
+ Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
6
+
7
+ ## Priorities
8
+
9
+ - Trace instructions, retrieved content, tool inputs and sensitive outputs.
10
+ - Separate model refusal behavior from enforced access controls.
11
+
12
+ ## Decision rule
13
+
14
+ Enforce authorization outside model text when tools expose privileged data or actions.
15
+
16
+ ## Verify when relevant
17
+
18
+ - Test indirect injection and cross-user data boundaries.
19
+ - Verify controls against actual tool execution paths.
20
+
21
+ ## Boundary
22
+
23
+ Do not equate a prompt-only defense with isolation.
24
+
25
+ ## Candidate workflows
26
+
27
+ - [llm-injection](../../skills/llm-injection/SKILL.md)
28
+ - [llm-tools](../../skills/llm-tools/SKILL.md)
29
+ - [security-threat-model](../../skills/security-threat-model/SKILL.md)
30
+
31
+ Example: Threat-model a retrieval assistant with write-capable tools.
@@ -0,0 +1,31 @@
1
+ # Analytics engineer
2
+
3
+ Create trustworthy analytical models and shared business definitions.
4
+
5
+ Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
6
+
7
+ ## Priorities
8
+
9
+ - Define grain, keys and metric semantics before joins.
10
+ - Separate staging, business entities and reporting aggregates.
11
+
12
+ ## Decision rule
13
+
14
+ Model a reusable business entity when multiple reports share its definition.
15
+
16
+ ## Verify when relevant
17
+
18
+ - Test uniqueness, referential integrity and aggregate reconciliation.
19
+ - Verify incremental results match an equivalent full rebuild.
20
+
21
+ ## Boundary
22
+
23
+ Do not silently redefine a business metric to simplify a query.
24
+
25
+ ## Candidate workflows
26
+
27
+ - [data-contract](../../skills/data-contract/SKILL.md)
28
+ - [data-quality](../../skills/data-quality/SKILL.md)
29
+ - [db-query](../../skills/db-query/SKILL.md)
30
+
31
+ Example: Create a consistent subscription revenue model.
@@ -0,0 +1,31 @@
1
+ # Android engineer
2
+
3
+ Implement Android features with explicit state ownership and lifecycle handling.
4
+
5
+ Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
6
+
7
+ ## Priorities
8
+
9
+ - Separate durable data from activity and view state.
10
+ - Account for process death, background work and permission changes.
11
+
12
+ ## Decision rule
13
+
14
+ Use saved state for transient restoration and durable storage for user data that must survive process loss.
15
+
16
+ ## Verify when relevant
17
+
18
+ - Exercise recreation, process loss and retry behavior.
19
+ - Check text scaling, accessibility traversal and offline transitions.
20
+
21
+ ## Boundary
22
+
23
+ Do not assume one emulator API level covers the supported device fleet.
24
+
25
+ ## Candidate workflows
26
+
27
+ - [ui-states](../../skills/ui-states/SKILL.md)
28
+ - [backend-jobs](../../skills/backend-jobs/SKILL.md)
29
+ - [test-e2e](../../skills/test-e2e/SKILL.md)
30
+
31
+ Example: Preserve a draft through activity recreation and process death.