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,12 @@
1
+ {
2
+ "name": "just-vibe",
3
+ "interface": { "displayName": "just-vibe" },
4
+ "plugins": [
5
+ {
6
+ "name": "just-vibe",
7
+ "source": { "source": "local", "path": "./plugins/just-vibe" },
8
+ "policy": { "installation": "AVAILABLE", "authentication": "ON_INSTALL" },
9
+ "category": "Productivity"
10
+ }
11
+ ]
12
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "just-vibe",
3
+ "metadata": { "description": "Tools, skills, and commands for coding agents." },
4
+ "owner": { "name": "Zachary Martin" },
5
+ "plugins": [
6
+ {
7
+ "name": "just-vibe",
8
+ "source": "./plugins/just-vibe",
9
+ "description": "Tools, skills, and commands for coding agents."
10
+ }
11
+ ]
12
+ }
package/CHANGELOG.md ADDED
@@ -0,0 +1,49 @@
1
+ # Changelog
2
+
3
+ ## 0.7.0
4
+
5
+ - Extend remember to merge explicit rules or current conversation decisions into CLAUDE.md/AGENTS.md, with shared instructions for both hosts, preview mode and optional named checkpoints in one invocation. Preserve existing guidance, user corrections and scope; distinguish saved files from verified host loading.
6
+ - Route instruction-memory requests to remember without confusing application caches or ML memory usage with project instructions.
7
+
8
+ - Let auto complete small local tasks without formal stage calls, escalating to tracked execution when dependencies, recovery or effects require it.
9
+ - Show a small starter catalog by default; keep the complete catalog under tools --all. Rank routes using task intent, detected JS/Python frameworks and prerequisite status, with reasons and ambiguity instead of implied certainty.
10
+ - Add conditionally loaded authentication, dialog, combobox, date input, ML training and delivery guides to existing workflows.
11
+ - Add explicit project preferences, revision-checked notes and named checkpoints with repository/content/index staleness checks. Stored context cannot override current instructions or restore authorization.
12
+ - Add bounded GitHub, Vercel, Playwright and SQL migration evidence collectors with target identity, actual results and limitations.
13
+ - Add optional project hooks for configured checks, single-file formatting and continuation summaries. Exact configuration requires separate local trust; changed configuration invalidates it. Hooks preserve staged files, limit execution, deduplicate unchanged work and never force a new turn.
14
+
15
+ ## 0.6.0
16
+
17
+ - Replace repeated guidance in 27 command contracts with concrete ownership, timing, failure, recovery and verification decisions across backend, ML, Git/GitHub, React, frontend delivery, architecture, decisions and LLM systems.
18
+ - Require contract-backed expectations and artifact-specific evidence in shared execution guidance. Add worked methods for cache cancellation/generations, transaction ownership, versioned historical features and preserving partially staged commits.
19
+ - Add a repeated four-arm repository benchmark with independent behavior assertions, scorer controls, immutable trial inputs, profile ablation and retained failures. Record 32 original and eight development trials, with token/timing data as supporting observations. Distinguish narrow correctness from overall output quality and convenience; add a contextual review guide for judgment, clarity, discovery and correction burden.
20
+ - Preserve original scores when correcting test-report interpretation; compare every arm under the same corrected scorer. Benchmark model calls remain explicitly opt-in and are excluded from normal validation.
21
+
22
+ ## 0.5.0
23
+
24
+ - Add 112 task-scoped engineering profiles with distinct priorities, decision rules, verification, boundaries and candidate workflows. Include senior, staff, principal and architecture specialties.
25
+ - Add profile discovery and selection skills plus CLI profile utilities. User choices are pinned by default; agent choices cannot override user pins. Role changes preserve task scope, permissions, budgets and history.
26
+ - Require user ownership and no agent self-attribution in commits, PRs, comments, release notes or other messages. Preserve human attribution and required third-party notices.
27
+ - Package every profile with the plugin and test discovery, pinning, clearing, state preservation and archive execution. Profile instructions are guidance, not a claim of evaluation for every profession or model.
28
+
29
+ ## 0.4.0
30
+
31
+ - Expand all 210 canonical command contracts with selection boundaries, concrete decision branches, outputs and normal/edge/missing-evidence examples; add applied methods to all 22 pack guides.
32
+ - Make do, responsive and a11y inherit canonical behavior; reject alias overrides and deduplicate routing recommendations.
33
+ - Add checked action amendments and evidence-backed supersession of blocked/failed stages while preserving history, original criteria and budgets. Require reconciliation of uncertain external effects.
34
+ - Separate structural, utility and behavioral validation labels. Add 21 isolated independent behavioral fixtures, executable code/mutation assertions and baseline/matched-ECC comparison preparation.
35
+ - Preserve native quiz availability limitations and distinguish supplied-instruction agent trials from native plugin and live-provider validation.
36
+
37
+ ## 0.3.0
38
+
39
+ - Install the plugin files bundled in the package into a persistent local marketplace. Default installation no longer fetches the private GitHub repository or depends on a temporary package-manager cache.
40
+ - Add explicit `--github` for the previous GitHub installation channel; retain `--local` for persistent development checkouts. Existing GitHub users must pass `--github` or deliberately migrate their marketplace.
41
+ - Preserve managed copies on repeated setup and host failures; replace them on explicit update. Refuse unmanaged destinations, symlinks and conflicting marketplace sources.
42
+ - Add the MIT license, package-content and release-metadata checks, clean npm/pnpm/Yarn execution tests, and a guarded trusted-publishing workflow.
43
+ - Add Windows CI coverage and support resolving executable extensions and standard npm Node command shims without evaluating shell arguments.
44
+ - Keep the 213 skills and documented v0.2 behavioral limitations. This release changes delivery, not the underlying model capabilities.
45
+
46
+ ## 0.2.0
47
+
48
+ - Add 212 workflow names plus setup, catalog discovery, bounded run records, teaching and native quiz adapters.
49
+ - Validate native Codex/Claude installation lifecycles and record representative agent trials and remaining limitations.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Zachary Martin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,282 @@
1
+ # just-vibe
2
+
3
+ Tools, skills, and commands for coding agents.
4
+
5
+ **v0.7 ships 112 engineering profiles and 215 skill names backed by 212 canonical workflows** for Codex and Claude Code: focused skills for development, architecture, decisions, Git/GitHub, Vercel, Vite, React, UI, backend, APIs, databases, data, ML, LLMs, testing, security, and operations. Each canonical workflow has selection guidance, scope, concrete decision branches, evidence requirements, outputs, verification, recovery conditions and three example requests. Applied methods live in 22 pack guides.
6
+
7
+ The active coding agent executes the workflows with its available tools. The dependency-free Node.js utilities provide catalog search, project inspection, capability discovery, and bounded run-state validation. Installing just-vibe does not connect services, grant permissions, provision compute, or make every workflow's prerequisites available.
8
+
9
+ v0.7 adds a quick path for simple work, a small starter catalog, contextual routing with reasons, project preferences and checkpoints, explicit evidence collectors, and optional project hooks. Detailed auth, component, training and delivery scenarios load only when relevant. See [daily workflows](plugins/just-vibe/references/daily-workflows.md) for configuration and examples, and the [v0.7 validation record](evals/releases/0.7.0.md) for tested scope and limits.
10
+
11
+ ## Use the workflows
12
+
13
+ In Claude Code, use a command followed by as much context as needed:
14
+
15
+ ```text
16
+ /just-vibe:auto fix checkout, add regression coverage, and verify.
17
+ Keep the existing API. No new dependencies. Do not push.
18
+
19
+ /just-vibe:tools react
20
+ /just-vibe:tools --available
21
+ /just-vibe:help my model works offline but fails in production
22
+ /just-vibe:teach linked lists, with a worked insertion example
23
+ /just-vibe:teach the concepts I need to implement ml-split
24
+ /just-vibe:teach-test linked lists; five questions, one at a time
25
+ /just-vibe:git-split separate formatting from the checkout fix; show the grouping first
26
+ /just-vibe:vercel-build-fix compare this preview's logs with the local build
27
+ /just-vibe:ml-leakage prediction happens 30 days before cancellation; inspect only
28
+ ```
29
+
30
+ In Codex, select the corresponding skill from the **just-vibe** plugin in the skill picker and append the same brief. `do` aliases `auto`, `responsive` aliases `ui-responsive`, and `a11y` aliases `ui-accessibility`; each inherits one canonical implementation. `tools` browses availability; `help` explains which workflow fits a scenario. Inspect, plan, and apply modes preserve the user's constraints and existing authorization. Read the [full command reference](plugins/just-vibe/references/command-reference.md).
31
+
32
+ `teach` explains a standalone topic or the prerequisites behind a particular workflow. It adapts to your experience, uses worked examples, connects concepts to actual implementation where available, and offers optional practice. Teaching a tool does not execute it.
33
+
34
+ `teach-test` uses the host's **native multiple-choice question dialog**, waits for your answer, explains mistakes, and adapts the next question. Request test mode to defer feedback until the end. It requires a question tool available and permitted in the current host/mode; when unavailable, it reports that limitation instead of printing inline quiz questions. [Interactive teaching behavior](plugins/just-vibe/references/teach-test.md) documents the adapters and quiz state.
35
+
36
+ Release testing verified a real native quiz in Claude Code. The tested Codex CLI session restricted question tools to clarification/planning uses, so it correctly stopped without a quiz. Codex quiz adapters are included, but interactive assessment is not available in that tested mode. See the [v0.2 validation record](evals/releases/0.2.0.md) for the tested workflows and remaining environment limitations.
37
+
38
+ Shared host packaging and context behavior follow the [OpenAI skill format](https://developers.openai.com/plugins/build/skills) and [Claude Code skill argument handling](https://code.claude.com/docs/en/skills#pass-arguments-to-skills). No dynamic shell interpolation is used in skill files.
39
+
40
+ ## Remember project instructions
41
+
42
+ Save decisions and corrections from the current conversation in one invocation:
43
+
44
+ ```text
45
+ /just-vibe:remember context
46
+ /just-vibe:remember context both
47
+ /just-vibe:remember context both, including a checkpoint named checkout for unfinished work
48
+ ```
49
+
50
+ In Codex, select **remember** from just-vibe and append the same brief. The skill updates the established `CLAUDE.md` or `AGENTS.md`, merges existing guidance and saves only explicit instructions and accepted decisions. `both` keeps common rules in `AGENTS.md` with a relative import in `CLAUDE.md`. A checkpoint keeps temporary progress separate. You can also append one specific rule or ask for a preview without writing.
51
+
52
+ This is an agent workflow using the host's file tools; terminal `project remember` only stores JSON notes. Saved instructions improve continuity but do not guarantee adherence or recover unavailable chat history. See [merging, host loading and examples](plugins/just-vibe/references/instruction-memory.md). Update older installations to receive this extension.
53
+
54
+ ## Engineering profiles
55
+
56
+ Profiles shape the agent's priorities and verification throughout a task. They are separate from commands: a machine learning engineer emphasizes prediction-time data, evaluation and serving parity; a frontend engineer emphasizes state, interactions and rendered behavior. Each of the **112 profiles** has concrete priorities, a decision rule, checks, a scope boundary and candidate workflows.
57
+
58
+ ```text
59
+ /just-vibe:profiles architecture
60
+ /just-vibe:profile machine-learning-engineer with mlops-engineer as secondary
61
+ /just-vibe:profile frontend-engineer for this task
62
+ /just-vibe:profile principal-engineer; review the design without expanding the project
63
+ /just-vibe:profile auto — choose an appropriate role for this task
64
+ /just-vibe:profile status
65
+ /just-vibe:profile clear
66
+ ```
67
+
68
+ In Codex, select the **profile** or **profiles** skill in the plugin picker and append the same request. Explicit choices are pinned for the current task. The agent may choose an unpinned role from task evidence, but cannot replace a user pin. Choose one primary role and up to two complementary roles. Profiles preserve the original brief, scope, mode, permissions and budgets; they do not create additional agents or persist global preferences.
69
+
70
+ The catalog covers application engineering, interface and experience, platform/infrastructure, data/databases, ML/AI, security/privacy, quality/technical leadership, and systems/specialized computing. Examples include firmware, robotics, compilers, graphics, game networking, geospatial computing, scientific software, privacy, identity, AI evaluation, agent systems, inference, and data governance.
71
+
72
+ Architecture and seniority profiles have different emphasis:
73
+
74
+ | Profile | Focus |
75
+ |---|---|
76
+ | Senior software engineer | Complete a bounded implementation with maintainable choices |
77
+ | Staff engineer | Cross-team interfaces, migration and adoption |
78
+ | Principal engineer | Systemic constraints, technical direction and reversible strategy |
79
+ | Software architect | System responsibilities, boundaries and contracts |
80
+ | Solutions architect | Fit a specific use case to a workable system |
81
+ | Enterprise architect | Shared capabilities and transitions across systems |
82
+ | Domain architects | Frontend, data, cloud, security, ML, platform and integration architecture |
83
+
84
+ Titles vary across companies; these are working approaches, not credentials or grants of authority. Browse the [complete profile catalog](plugins/just-vibe/references/profile-reference.md) and [selection/runtime guide](plugins/just-vibe/references/profiles.md).
85
+
86
+ The [v0.5 profile validation record](evals/releases/0.5.0.md) distinguishes tested profile selection and packaging from profession-specific model judgment.
87
+
88
+ All changes are owned by the user. Commit messages, PRs, comments and other messages must contain **no agent self-attribution**, agent co-author trailers, generated-by signatures or AI badges. Existing human attribution and required third-party notices are preserved. See the [ownership rule](plugins/just-vibe/references/execution.md#ownership-and-attribution).
89
+
90
+ ## Terminal utilities
91
+
92
+ From this checkout:
93
+
94
+ ```sh
95
+ node bin/just-vibe.mjs tools
96
+ node bin/just-vibe.mjs tools --pack ml-evaluation --json
97
+ node bin/just-vibe.mjs tools --available --root /path/to/project
98
+ node bin/just-vibe.mjs show auto
99
+ node bin/just-vibe.mjs profiles architecture
100
+ node bin/just-vibe.mjs profile principal-engineer
101
+ node bin/just-vibe.mjs inspect --root /path/to/project
102
+ node bin/just-vibe.mjs discover --root /path/to/project
103
+ node bin/just-vibe.mjs route --root /path/to/project -- "Investigate failing GitHub checks"
104
+ node bin/just-vibe.mjs project show --root /path/to/project
105
+ node bin/just-vibe.mjs project resume checkout --root /path/to/project
106
+ node bin/just-vibe.mjs evidence github --repo owner/repo --pr 42
107
+ node bin/just-vibe.mjs hooks status --root /path/to/project
108
+ node bin/just-vibe.mjs workflow fix --root /path/to/project --mode plan -- "Fix checkout; preserve the API"
109
+ node bin/just-vibe.mjs workflow auto --profile machine-learning-engineer --stdin
110
+ ```
111
+
112
+ `route` suggests candidates for the host agent; it does not execute them or call a model. `workflow` creates a JSON context record on stdout. Use `--stdin` or `--brief-file` to preserve multiline context verbatim. The CLI inventories the shipped payload; native host enablement still applies. It never treats a CLI on PATH as proof of authenticated access.
113
+
114
+ External capabilities stay unknown until the host observes relevant access or supplied evidence. Explicit capability reports expire after 15 minutes and are bound to a project. The [runtime interface](plugins/just-vibe/references/runtime.md) documents their format and `session create/start/amend/supersede/profile/record/finish/resume`. These utilities validate bookkeeping; they do not sandbox host tools or independently prove the agent's evidence.
115
+
116
+ Plain `tools` shows a starter selection; `tools --all` lists everything. `route` explains a few candidates; use `--json` for structured context. Project writes require explicit operations and revision-aware JSON input. Evidence collectors have their own prerequisites and do not automatically grant capability status. See [examples and schemas](plugins/just-vibe/references/daily-workflows.md).
117
+
118
+ ## Quick install
119
+
120
+ You need **Node.js 22+** and **Codex CLI** or **Claude Code** with native plugin support on your `PATH`. See [compatibility and known limits](docs/compatibility.md).
121
+
122
+ Install the public `just-vibe` package from npm with your preferred package manager:
123
+
124
+ ```sh
125
+ # Choose your package manager; all use the same npm package.
126
+ pnpm dlx just-vibe@latest setup
127
+ npx just-vibe@latest setup
128
+ yarn dlx just-vibe@latest setup
129
+
130
+ # Claude Code
131
+ pnpm dlx just-vibe@latest setup --target claude
132
+ ```
133
+
134
+ The installer copies the included plugin into a persistent directory under `~/.just-vibe`, then registers it through the host's native plugin manager. The installed files survive npm/pnpm/Yarn cache cleanup. No private GitHub access is required for the default bundled source. `JUST_VIBE_HOME` can select another persistent directory.
135
+
136
+ **Start a new conversation after installation.** In Claude Code, run `/just-vibe:help what is available?`. In Codex, select the `help` skill from the just-vibe plugin and add your request.
137
+
138
+ For development builds, users with repository access can fetch the package from GitHub and still use the bundled installer:
139
+
140
+ ```sh
141
+ pnpm --package=git+https://github.com/Zachshotamartin/just-vibe.git dlx just-vibe setup
142
+ ```
143
+
144
+ GitHub access is needed to download that package, but the installed marketplace is a persistent local copy.
145
+
146
+ ## Preview, diagnose, update, remove
147
+
148
+ ```sh
149
+ pnpm dlx just-vibe@latest setup --dry-run
150
+ pnpm dlx just-vibe@latest doctor
151
+ pnpm dlx just-vibe@latest update
152
+ pnpm dlx just-vibe@latest uninstall
153
+ ```
154
+
155
+ Append `--target claude` for Claude Code. `--dry-run` performs no host commands or payload copying and does not inspect installed state; the package manager may still fetch/cache the CLI before it starts.
156
+
157
+ Repeated `setup` preserves the existing managed version and registration. `update` replaces the managed source with the version in the package you execute and updates the host plugin. Use `@latest` to fetch new releases. `doctor` checks prerequisites, source identity, managed files and enabled installation without changing configuration.
158
+
159
+ Uninstall removes only this plugin and retains its marketplace, managed source and persistent plugin data. To remove registration too, use the host's native marketplace-removal command after uninstalling. A failed native operation reports partial completion; fix its cause and rerun. Unmanaged destinations, different marketplace sources, and conflicting Claude scopes are never silently overwritten.
160
+
161
+ ## Claude scope
162
+
163
+ Claude defaults to `user`. From a project's directory, use `--scope project` for shared plugin enablement or `--scope local` for unshared project enablement:
164
+
165
+ ```sh
166
+ pnpm dlx just-vibe@latest setup --target claude --scope project
167
+ ```
168
+
169
+ Pass the same scope to subsequent commands. Each teammate installs their own local marketplace. Codex does not take Claude's `--scope` option.
170
+
171
+ ## Existing GitHub installs and source migration
172
+
173
+ v0.2 registered GitHub as the marketplace source. Manage that source explicitly with `--github`:
174
+
175
+ ```sh
176
+ node bin/just-vibe.mjs doctor --github
177
+ node bin/just-vibe.mjs update --github
178
+ ```
179
+
180
+ To switch to bundled installation, uninstall using the old source flag, remove only the just-vibe marketplace through the host CLI, then run setup without a source flag:
181
+
182
+ ```sh
183
+ # Codex; use the selected package runner instead of node when outside this checkout.
184
+ node bin/just-vibe.mjs uninstall --github
185
+ codex plugin marketplace remove just-vibe
186
+ node bin/just-vibe.mjs setup
187
+
188
+ # Claude (preserve any --scope option used for the old installation).
189
+ node bin/just-vibe.mjs uninstall --github --target claude
190
+ claude plugin marketplace remove just-vibe
191
+ node bin/just-vibe.mjs setup --target claude
192
+ ```
193
+
194
+ Use the equivalent `--local` flag when switching from a development checkout. GitHub sources still require Git access; authenticate using your normal Git credentials, never tokens embedded in commands.
195
+
196
+ ## Native install without Node.js
197
+
198
+ The included skills and plugin manifests can be installed directly. Node.js 22+ is still required for the bundled installer, discovery, run-state, and quiz utilities.
199
+
200
+ ```sh
201
+ # Codex
202
+ codex plugin marketplace add Zachshotamartin/just-vibe
203
+ codex plugin add just-vibe@just-vibe
204
+
205
+ # Claude Code
206
+ claude plugin marketplace add Zachshotamartin/just-vibe
207
+ claude plugin install just-vibe@just-vibe --scope user
208
+ ```
209
+
210
+ Use one installation channel per host. The wrapper and native commands above manage the same plugin; do not additionally copy skills or merge global rules by hand.
211
+
212
+ ## Local development
213
+
214
+ ```sh
215
+ git clone https://github.com/Zachshotamartin/just-vibe.git
216
+ cd just-vibe
217
+ npm ci
218
+ npm run check
219
+ node bin/just-vibe.mjs setup --local --dry-run
220
+ node bin/just-vibe.mjs setup --local
221
+ ```
222
+
223
+ `--local` registers the persistent checkout directly. Keep the checkout in place. Use `--local` consistently for its `doctor`, `update`, and `uninstall` operations. For changes to the plugin payload, bump the version in both plugin manifests and `package.json`, then run `update --local` and start a fresh conversation.
224
+
225
+ Switching between bundled, local and GitHub sources is deliberate: uninstall from the old source, remove its marketplace with the host CLI, then run setup for the new source. The installer will not silently replace one with the other.
226
+
227
+ ### Tests and generation
228
+
229
+ ```sh
230
+ npm run check
231
+ npm run test:hosts
232
+ npm run test:hosts -- --github
233
+ npm run eval:runtime
234
+ npm run build:skills
235
+ ```
236
+
237
+ The default checks validate catalogs, generated skills, references, manifests and packaging; test installer/discovery/run behavior; and exercise context preservation across all command names and both host mappings. They do not access your host configuration or make model calls. `test:hosts` is an opt-in native lifecycle test requiring both host CLIs. It runs install, repeat install, doctor, update, uninstall, and reinstall inside temporary `CODEX_HOME` and `CLAUDE_CONFIG_DIR` directories.
238
+
239
+ The default host test copies and installs the bundled payload. `--local` tests direct checkout registration. `--github` installs the published private repository and requires Git access; use it after pushing a release. Both variants execute the cached plugin runtime and check every skill is present, independently of the source checkout.
240
+
241
+ Edit `plugins/just-vibe/catalog/commands.json` for command contracts and runtime procedures, `catalog/packs.json` for pack requirements, and `references/packs/` for operational guidance. Run `npm run build:skills` to regenerate skills, the command reference, and evaluation scenarios. `npm run validate` rejects drift. Neither generation nor the installed runtime depends on the ignored local plan.
242
+
243
+ Every workflow has normal, edge and missing-evidence cases in [evals/scenarios.json](evals/scenarios.json). The [independent behavioral harness](evals/README.md) additionally prepares and grades 21 raw-artifact tasks, including code repairs and report judgments. Catalog structure, runtime utility coverage and observed agent behavior have separate validation fields. These are not claims that all commands have been run against live services or evaluated across models. See the [v0.4 observed results](evals/releases/0.4.0.md) and [evaluation guidance](evals/README.md) for the tested scope.
244
+
245
+ The [v0.6 results](evals/releases/0.6.0.md) record 32 controlled implementation trials and eight revised-command development trials. All passed their bounded checks; this does not rank overall output quality or convenience. The tasks supplied detailed contracts and did not measure user effort or preference. The [command-depth review](docs/command-quality.md#focused-depth-review) explains 27 focused revisions, and the [contextual review guide](docs/command-quality.md#output-quality-and-convenience) covers judgment, clarity, discovery and correction burden. [Benchmark protocol and supporting metrics](evals/benchmark/README.md) remain available for reproduction. External integration, browser and deployment checks require the relevant task environment.
246
+
247
+ ### Repository layout
248
+
249
+ | Path | Purpose |
250
+ |---|---|
251
+ | `bin/just-vibe.mjs` | npm-executable entry point |
252
+ | `plugins/just-vibe/scripts/installer.mjs` | Self-contained installer, also shipped inside the plugin |
253
+ | `plugins/just-vibe/scripts/toolkit.mjs` | Search, inspection, discovery, routing candidates, run records, and quiz CLI |
254
+ | `plugins/just-vibe/scripts/lib/` | Catalog, capability, project, run-state, and native quiz adapter modules |
255
+ | `plugins/just-vibe/catalog/` | Canonical command contracts, 112 role profiles, examples, prerequisites and pack metadata |
256
+ | `plugins/just-vibe/skills/` | 215 installed names, including three canonical aliases and setup |
257
+ | `plugins/just-vibe/references/` | Shared execution rules, runtime interface, domain guidance and command index |
258
+ | `.agents/plugins/marketplace.json` | Codex marketplace |
259
+ | `.claude-plugin/marketplace.json` | Claude Code marketplace |
260
+ | `scripts/` and `tests/` | Validation and lifecycle tests |
261
+ | `evals/` | Behavior scenarios and isolated project/data fixtures |
262
+
263
+ The installer has no runtime npm dependencies or lifecycle install scripts. Optional bundled hooks do no work until configured and trusted for a project; native host trust also applies. It adds no MCP servers, rules or permissions. Provider/check commands use argument arrays rather than interpolating user input into a shell. Host CLIs own installation state and caches. Local planning and naming documents are excluded from both Git and the npm archive.
264
+
265
+ ## Troubleshooting
266
+
267
+ - **Host executable not found:** install the selected CLI and reopen your terminal.
268
+ - **Plugin subcommands unavailable:** update that host CLI; just-vibe checks command support before changing state.
269
+ - **Repository not found / authentication failed:** verify `git ls-remote https://github.com/Zachshotamartin/just-vibe.git` succeeds with your account.
270
+ - **Different marketplace source:** use the matching bundled, `--local`, or `--github` setting or explicitly switch sources as described above.
271
+ - **Claude scope conflict:** inspect `claude plugin list --json`; manage the scope already in use rather than layering installations.
272
+ - **Skills not visible:** verify with `doctor`, then start a new conversation.
273
+
274
+ Host formats evolve. When a JSON inventory format is unrecognized, the installer stops rather than guessing how to change configuration.
275
+
276
+ ## Release and license
277
+
278
+ Licensed under [MIT](LICENSE), copyright 2026 Zachary Martin. Commercial use, modification and redistribution are allowed under the license terms. The license ships with the npm archive and installed plugin.
279
+
280
+ [Release instructions](docs/releases.md) describe validation, the first npm publication, trusted publishing, versioning and recovery. [Changelog](CHANGELOG.md) records user-visible changes.
281
+
282
+ Command authoring and alias maintenance follow the [command quality contract](docs/command-quality.md).
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ import { main } from '../plugins/just-vibe/scripts/toolkit.mjs';
3
+ process.exitCode = await main(process.argv.slice(2));
@@ -0,0 +1,74 @@
1
+ # Command contracts and quality
2
+
3
+ The catalog owns each canonical command's scope, mode, required inputs, selection boundary, procedure, decision branches, outputs, observable verification, recovery conditions and examples. Pack references add reusable methods and worked scenarios. Generated SKILL.md files expose all examples and link the applicable guide; they are not independently edited.
4
+
5
+ 215 names resolve to 212 canonical workflows. `do` inherits `auto`, `responsive` inherits `ui-responsive`, and `a11y` inherits `ui-accessibility`. Alias source records contain identity/search metadata only. Loading materializes the canonical behavior; validation rejects scope, mode, method, evidence or other behavioral drift. Routing collapses matching aliases to one canonical recommendation while preserving matched names.
6
+
7
+ ## Writing useful guidance
8
+
9
+ Selection should distinguish a nearby workflow: explain versus teach, debug versus fix, local pr drafting versus remote github-pr identity/actions. A task-specific procedure should name the evidence to inspect and the decision it informs. A branch should cover a situation that changes the method, such as a partial external operation, incompatible old consumer, stale request completion or missing evaluation labels.
10
+
11
+ Outputs need enough structure to assess correctness: a comparison needs assumptions and decisive evidence; a migration needs ordered phases, compatibility and recovery boundaries; an audit needs observed/conditional/unknown findings. Normal, edge and missing-evidence requests demonstrate scope and input handling. They do not count as successful evaluations by existing in the catalog.
12
+
13
+ Keep generic execution rules in the shared guide. Use current primary documentation when behavior depends on framework/provider version. Do not copy a full manual into every command or turn a particular incident into a universal rule. Short commands are acceptable when the task is simple and the contract is clear.
14
+
15
+ ## Output quality and convenience
16
+
17
+ The product question is whether a workflow helps someone get useful work done with less preparation and correction. Correctness checks can establish specific behavior; they cannot fully score architectural judgment, communication or convenience. More instructions, commands, tests or tokens are not evidence of a better experience by themselves.
18
+
19
+ Use contextual review alongside executable checks. Record concrete examples and the reviewer's task and preferences; avoid converting unlike judgments into an overall product score.
20
+
21
+ | Dimension | Review the actual experience | Useful evidence |
22
+ | --- | --- | --- |
23
+ | Task fit and judgment | Did the agent address the real need with proportionate scope and sensible tradeoffs? | Accepted result, unnecessary work, assumptions and decisions the user changed |
24
+ | Maintainability | Does the implementation fit the repository and remain understandable to its maintainers? | Reviewer comments tied to code and existing conventions |
25
+ | Clarity | Can the user understand what changed, why and what remains uncertain? | Statements checked against artifacts; confusing or missing explanations |
26
+ | Discovery | Could the user find a suitable command or profile without learning the catalog? | Initial request, route selected, search detours and mistaken selections |
27
+ | Context and correction burden | How much did the user have to specify, repeat or repair? | Starting brief, consequential follow-ups and corrections, with their reasons |
28
+ | Defaults and control | Did the workflow choose helpful defaults while honoring the user's boundaries? | Decisions accepted or overridden, avoidable interruptions and scope changes |
29
+
30
+ For a practical comparison, use the same realistic starting brief, model and repository revision; let each toolkit use its documented native setup. Include routine and unfamiliar tasks with the amount of context a user would normally provide. Evaluate both first use and repeat use: setup and discovery costs can differ from day-to-day usefulness. Preserve failed attempts and corrections. Where feasible, review anonymized outputs before revealing the toolkit, then collect the user's preference and reasons. Identify the reviewer and task context without publishing private information. Counts of follow-ups or elapsed time are supporting observations: a necessary clarification can improve quality, and a shorter interaction can hide a bad assumption.
31
+
32
+ The [v0.6 repository study](../evals/releases/0.6.0.md) supplied complete written contracts, so it barely exercised discovery or context burden. It provides narrow implementation evidence and no measured user preference or convenience result. Token usage is supporting operational data, not the objective or a quality score.
33
+
34
+ ## Focused depth review
35
+
36
+ The v0.6 review replaces repeated procedure/output sentences in 27 contracts with decisions that change agent behavior. It improves the shared execution guide for every workflow, but does not claim all 212 canonical workflows have been independently behavior-tested.
37
+
38
+ | Area | Revised commands | Missing detail addressed |
39
+ | --- | --- | --- |
40
+ | Repair and testing | `fix`, `test-regression` | Read the actual contract; derive expectations independently; preserve user work during negative testing; inspect real exit statuses |
41
+ | Shared backend state | `backend-cache`, `backend-concurrency`, `backend-idempotency`, `db-integrity` | Waiter versus shared-work lifetime, generation invalidation, transaction ownership, strict input/range checks, partial failure and replay |
42
+ | Historical ML data | `ml-features`, `ml-split` | Visible-version selection before window filtering, label maturity before preprocessing, offset-aware instants, unknown versus zero labels |
43
+ | React state/lifecycle | `react-async`, `react-effects`, `react-hydration` | Stale error as well as success, disposal, shared subscribers, matching initial render and request isolation |
44
+ | Git and GitHub | `git-commit`, `github-pr`, `github-actions` | Candidate-tree checks, preservation of three-tree differences, PR identity after uncertain creation, SHA-specific readiness and trust/event paths |
45
+ | Delivery | `db-migrate`, `vercel-build-fix`, `vercel-release-check` | Old/new writer compatibility, restart and recovery limits, first causal build failure, deployment-specific gates |
46
+ | Frontend delivery and interaction | `vite-bundle`, `vite-assets`, `ui-accessibility` | Comparable size/performance evidence, nested/base-path assets and content types, keyboard/focus transitions and actual AT coverage |
47
+ | Architecture | `arch-feature`, `arch-boundaries`, `arch-scale` | Requirement-to-owner reasoning, contracts that enforce boundaries, measured bottlenecks and bounded capacity claims |
48
+ | Decisions | `decide`, `decision-spike` | Unknown feasibility, sensitivity, decisive experiments and thresholds set before observing results |
49
+ | LLM systems | `llm-evals`, `llm-tools` | Scorer controls, retained failures/denominators, held-out limits, typed effects and uncertain-call reconciliation |
50
+
51
+ The four repeated benchmark tasks cover selected command bundles, not every command in this table. The other revisions are instruction-review improvements with structural and packaging checks. Keep that distinction in release claims.
52
+
53
+ For future reviews, ask whether a competent agent could follow the guidance without inventing a consequential policy. Add detail when ownership, timing, authority, recovery or verification is ambiguous. Remove text when it merely restates the summary. Prefer a conditional worked example in a pack guide over repeating a full procedure in every related skill.
54
+
55
+ Useful next evaluations include authenticated deployment recovery in an isolated test project, browser interaction and assistive-technology tasks, API compatibility across consumer versions, and real repository changes under a fixed issue/revision. These require their actual environments; the present laboratory fixtures do not substitute for that evidence.
56
+
57
+ ## Change process
58
+
59
+ 1. Edit `plugins/just-vibe/catalog/commands.json` and the relevant pack guide.
60
+ 2. For an alias, edit its canonical target; keep only identity fields in the alias source.
61
+ 3. Run `npm run build:skills` and `npm run check`.
62
+ 4. Add or revise a raw-artifact behavioral fixture for a meaningful new decision or failure mode. Keep its expected result in evaluator-only files.
63
+ 5. Run a fresh independent agent trial, inspect its actions and grade the actual result. Preserve failures and record instruction/input identities.
64
+ 6. Update behavioral validation only for the named commands and fixtures actually evaluated. Keep native-host, browser, external-service and model-quality claims separate.
65
+
66
+ The schema verifies the presence and shape of this contract, not the quality of its prose. The independent fixtures and review of actual agent decisions provide the stronger evidence.
67
+
68
+ ## Profiles and ownership
69
+
70
+ `catalog/profiles.json` owns role guidance independently of action contracts. Maintain a distinct purpose, priorities, a decision rule, relevant verification, a boundary and valid canonical workflow links for each role. Generate the profile index and individual references with the same build command. A title alone is not a useful profile; nearby roles must change emphasis in an explainable way.
71
+
72
+ Test profile state transitions for pin protection, scope and budget preservation. Keep role discovery separate from activation. Do not claim that structural validation proves role expertise or that previous workflow trials evaluate newly added role guidance.
73
+
74
+ All generated work belongs to the user. Shared execution and Git/GitHub guidance prohibit agent self-attribution in commits, PRs and messages while preserving human credits and required third-party notices.
@@ -0,0 +1,29 @@
1
+ # Compatibility and support
2
+
3
+ The runtime requires Node.js 22 or newer. CI exercises Node 22 and 24 on Linux, macOS and Windows, including an extracted npm archive. npm, pnpm 10.14.0/12.5.1 and Yarn 4.18.0 execution checks run on Node 24. Node 26 is also used for local development checks.
4
+
5
+ Real native Codex/Claude plugin lifecycle checks are performed separately on macOS. Windows and Linux CI checks validate the toolkit and packaging; they do not establish native agent-host support. On Windows, use a host CLI that supports native plugins. Native executables and standard npm-generated Node `.cmd` shims are supported; other batch wrappers are rejected with guidance rather than interpreted as shell code. WSL can use the Linux setup path when the selected host supports it. Host and operating-system support remain subject to the host's own requirements.
6
+
7
+ The default install copies bundled files into `~/.just-vibe/marketplaces/codex` or `~/.just-vibe/marketplaces/claude`. Set `JUST_VIBE_HOME` to use another persistent base directory and retain that setting for future commands. Setup does not require GitHub access. Git is needed for the optional `--github` source and workflows that use Git.
8
+
9
+ A project-scoped Claude installation still uses a per-user marketplace source; each teammate runs setup on their own machine. No machine-specific path is written into shared project settings by just-vibe itself.
10
+
11
+ Updates use the package version you execute. Use `pnpm dlx just-vibe@latest update`, `npx just-vibe@latest update`, or `yarn dlx just-vibe@latest update` to retrieve the newest published payload. `setup` preserves an existing managed version. Uninstall retains the managed source, marketplace registration and persistent plugin data.
12
+
13
+ Capabilities such as GitHub, Vercel, databases, deployment and training require the user's own tools/access. Installation does not authenticate these services. A CLI on PATH does not establish authorization or usable credentials.
14
+
15
+ `teach-test` requires a native question tool available and permitted for assessment in the current host mode. Real Claude interaction was verified in v0.2; the tested Codex mode restricted question tools to clarification/planning and correctly declined the quiz. ML findings still require review; the previous Claude leakage fixture had a partial behavioral result. See the [v0.2 validation record](../evals/releases/0.2.0.md).
16
+
17
+ The v0.4 release adds 21 passing supplied-instruction Codex fixture trials and a three-case matched comparison that tied across all arms. These results do not establish native invocation or Claude parity for those workflows. See the [v0.4 validation record](../evals/releases/0.4.0.md).
18
+
19
+ ## v0.5 profile support
20
+
21
+ The profile/profile-discovery skills and all 112 role guides ship in both host payloads. Profile selection is task context: user pins are protected by the run-state utilities, and no host-global preference is installed. Native installation checks cover the 215-skill payload; they do not establish profession-specific agent behavior. See the [v0.5 validation record](../evals/releases/0.5.0.md).
22
+
23
+ ## v0.7 daily workflow support
24
+
25
+ Project state and contextual routing use the bundled Node utilities on all supported runtime platforms. State is schema-versioned and bound to the selected project path. Partial snapshot coverage always requires revalidation. `tools` now shows a starter selection; use `tools --all` for the previous full inventory.
26
+
27
+ Optional hooks use PostToolUse and Stop and ship at the native plugin hook location. They remain inactive until project configuration and separate local trust are present. Codex also requires native hook trust. Native installation on macOS is verified separately from actual hook-event delivery on every host/OS. A direct hook runner test establishes handler behavior, not host parity. Command arrays support native executables and standard npm Windows wrappers through the shared process helper.
28
+
29
+ GitHub evidence needs authenticated gh; Vercel evidence needs authenticated vercel and an explicit deployment identity. Browser evidence needs project-installed Playwright and Chromium, with authorized interactions. SQL migration evidence inspects local SQL and an optional supplied applied-history export; it does not connect to a live database. The package installs no optional provider or browser dependencies automatically. See the [daily workflow reference](../plugins/just-vibe/references/daily-workflows.md).
@@ -0,0 +1,51 @@
1
+ # Releasing just-vibe
2
+
3
+ Releases use the public `just-vibe` package on npm. A prepared archive is not a published package: verify the exact version and archive integrity in the registry after publication.
4
+
5
+ ## Check and package
6
+
7
+ Use Node.js 24 and npm. From a clean checkout:
8
+
9
+ ```sh
10
+ npm ci --ignore-scripts
11
+ npm run release:check
12
+ npm run release:prepare
13
+ ```
14
+
15
+ `release:check` runs catalog/manifests/generated-file validation, unit and packaging tests, version/license/changelog checks, archive allowlisting, relative-link checks, and common credential-pattern checks. These checks cannot prove the absence of every secret or software defect; review the file list and diff too.
16
+
17
+ `release:prepare` performs those checks, creates `dist/just-vibe-VERSION.tgz`, executes that exact archive through npm, pnpm 10/12 and Yarn 4 in temporary projects, checks persistence after cache removal, and writes a SHA-256 checksum plus a source-commit release record. It does not publish. Test helpers download pinned package-manager executables into temporary directories and do not replace your global tools.
18
+
19
+ For installer changes, also run `npm run test:hosts`. This uses the real installed Codex and Claude CLIs with temporary configuration and managed-copy directories. It does not use your normal plugin configuration or call a model. Run `npm run test:hosts -- --local` for the development channel, and `-- --github` only after pushing the same version (private Git access required).
20
+
21
+ The `prepublishOnly` hook runs `release:check` for directory-based `npm publish`. Publishing a tarball or using `--ignore-scripts` bypasses that hook. The release workflow separately validates the archive before using either.
22
+
23
+ ## First publication
24
+
25
+ 1. Create/sign into the npm account that will own `just-vibe` and enable 2FA. Check name availability again immediately before publishing.
26
+ 2. Review the MIT license and release notes, commit the release, and wait for every CI job at that commit to pass. Native host validation is recorded separately; CI does not log in to agent accounts.
27
+ 3. Run `npm login`, then `npm whoami`. Do not paste tokens into the repository or chat.
28
+ 4. Run `npm run release:prepare`, review the archive, and run `npm run release:publish -- --check`. This checks the clean source commit, prepared archive, completed CI and npm login. Then run `npm run release:publish -- --publish` and complete npm's authentication prompt. The command verifies registry integrity and exact-version execution; it reconciles an uncertain response without automatically retrying publication.
29
+ 5. Verify the exact version using `npm exec --yes --package=just-vibe@VERSION -- just-vibe --version`; test setup in a clean host profile, then create the matching `vVERSION` Git tag.
30
+
31
+ Only publish code/assets you have the rights to distribute. Retain third-party notices if third-party code is added later. The current npm package has no runtime dependencies. All included code and workflow documents are covered by the included MIT notice unless a file states otherwise.
32
+
33
+ ## Subsequent GitHub releases with trusted publishing
34
+
35
+ After the package exists, configure its npm **Settings → Trusted publishing**:
36
+
37
+ - GitHub owner: `Zachshotamartin`
38
+ - Repository: `just-vibe`
39
+ - Workflow filename: `publish.yml`
40
+ - Environment: leave blank (the workflow does not declare one)
41
+ - Allow direct `npm publish` for this workflow.
42
+
43
+ The workflow uses Node 24 and npm 12 with OIDC. It needs no long-lived npm token. Private GitHub repositories can publish public packages; npm provenance is disabled for private repositories because npm cannot generate it from private source. The workflow enables provenance automatically if the repository is later made public.
44
+
45
+ Update `package.json`, both plugin manifests, the lockfile, and `CHANGELOG.md` together. Follow semantic versioning; during 0.x development, document breaking changes explicitly and increment the minor version. Published versions cannot be reused.
46
+
47
+ Push the release commit and matching `vVERSION` tag. Run **Publish npm package** from that tag with **publish** checked. All six platform/Node checks must pass; the release job then builds and tests the exact archive, checks its checksum and tag, and publishes it. Leaving **publish** unchecked performs a rehearsal without publishing. Ordinary pushes and PRs never publish.
48
+
49
+ If publication fails, check whether that exact version already exists before retrying. A successful upload followed by a failed verification still consumes the version. If a bad release is already live, publish a corrected new version and deprecate the affected one with a clear explanation.
50
+
51
+ Official references: [npm publishing](https://docs.npmjs.com/creating-and-publishing-unscoped-public-packages/), [trusted publishing](https://docs.npmjs.com/trusted-publishers/), [semantic versioning](https://docs.npmjs.com/about-semantic-versioning/).
@@ -0,0 +1,47 @@
1
+ # Evaluating just-vibe
2
+
3
+ Validation has three separate dimensions in the catalog:
4
+
5
+ - `structural: automated`: contracts, generation, references and packaging are checked.
6
+ - `runtime: fixtures-tested | not-applicable`: deterministic utilities have relevant fixture coverage. This does not measure an agent's judgment.
7
+ - `behavioral: not-evaluated | passed-fixtures | partial-fixtures`: observed agent outcomes on named bounded fixtures. Evaluated entries name an evidence record; no label means universal reliability or host parity.
8
+
9
+ The generated [scenarios.json](scenarios.json) supplies normal, edge and missing-evidence invocations plus evidence requirements and a rubric for all 215 skill names. These are specifications, not completed model runs. Aliases inherit their canonical contract and validation.
10
+
11
+ ## Independent behavioral fixtures
12
+
13
+ [behavior/cases.json](behavior/cases.json) defines 21 raw-artifact tasks. Their inputs and task briefs are separate from [evaluator oracles](behavior/oracles.json). The harness copies only raw task files and selected instructions into an isolated workspace. It never copies grading answers into that workspace. Expected facts and executable behavior assertions were authored independently of generated command wording.
14
+
15
+ Prepare a fresh trial:
16
+
17
+ ```bash
18
+ npm run eval:behavior -- prepare --case react-race --out .tmp/trials/react-race
19
+ ```
20
+
21
+ Give an independent agent only the resulting `prompt.txt` and its referenced workspace. It must preserve supplied files except the explicitly allowed implementation targets and write `answer.json` outside the workspace. Do not show it evaluator oracles or previous trial answers. Local code checks are permitted by the task; network, installations, external mutations and further delegation are excluded from these fixtures.
22
+
23
+ Grade afterward:
24
+
25
+ ```bash
26
+ npm run eval:behavior -- grade --run .tmp/trials/react-race
27
+ ```
28
+
29
+ The grader verifies input/instruction hashes, permitted changed files, independently specified factual judgments, and relevant executable assertions. Regression-test evaluation runs the authored test against the correct implementation and two independent mutants, rejecting vacuous tests. Report inspection checks verify explicit judgments against supplied facts; the reasoning prose still requires human review. Executable grading runs reviewed local fixture code; this harness is not a sandbox for hostile submissions.
30
+
31
+ `npm run eval:behavior -- list` shows available cases. `npm run check` checks the harness itself against seeded wrong reports, broken code, vacuous tests and correct controls. Those synthetic harness checks are **not** model trials. It does not call models or services.
32
+
33
+ ## Controlled comparisons
34
+
35
+ Prepare the same case in three fresh directories with `--arm baseline`, `--arm just-vibe`, or `--arm ecc --ecc-root /path/to/pinned/ECC`. ECC supports cases with a declared matched source file in the manifest. Record the ECC revision before preparation. The comparator supplies that matched guide, not ECC's complete installed hooks/agents/runtime; name this limitation when interpreting results.
36
+
37
+ Keep model, effort, host tools, task artifacts, action permissions and budget equal. Use separate fresh agent contexts, randomize order for a larger study, repeat trials, and retain failures. Record source/prompt hashes, changed files, checks, host/model settings and actual usage/timing from host logs. Do not infer cost from elapsed preparation time. A small tied comparison demonstrates no superiority; a single observed difference needs replication.
38
+
39
+ Results should distinguish task correctness, unsupported claims, unrequested edits, completion, elapsed execution time, tokens and verified cost. Unsupported metrics remain unavailable. Keep development fixtures separate from future held-out benchmark tasks; public fixtures are useful regressions but are not a durable blind benchmark.
40
+
41
+ ## Existing evidence and limits
42
+
43
+ The [repeated repository benchmark](benchmark/README.md) adds fresh multi-file tasks, matched baseline/just-vibe/profile/ECC arms, randomized repeated runs and native CLI usage/timing capture. Its controlled correct/defective implementations test the scorer without model calls. Run model trials explicitly; `npm run check` does not consume account usage. These new fixture repositories are authored test environments, not a production-repository benchmark or a full native ECC installation.
44
+
45
+ The [v0.2 record](releases/0.2.0.md) contains native Codex/Claude trials, including a partial Claude leakage audit and the tested Codex mode's unavailable native assessment dialog. Later instruction changes do not retroactively turn those trials into passes.
46
+
47
+ The original [checkout](fixtures/checkout/) and [ML](fixtures/ml/) fixtures remain available. `npm run test:hosts` verifies native installation lifecycles in isolated host configuration directories. It does not establish model behavior, authenticated deployments, database execution, browser rendering or training quality. These need separately identified environments and evidence.
@@ -0,0 +1,12 @@
1
+ {
2
+ "producer": [
3
+ "commit order in database",
4
+ "publish event to independent broker"
5
+ ],
6
+ "consumer": [
7
+ "send email without idempotency key",
8
+ "acknowledge message"
9
+ ],
10
+ "atomicDatabaseBrokerCommit": false,
11
+ "redelivery": true
12
+ }