gsd-trae 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +8 -0
- package/.gitmodules +6 -0
- package/.trae/project_rules.md +56 -0
- package/.trae/rules/project_rules.md +56 -0
- package/.vscode/code-counter/code-counter.db +0 -0
- package/.vscode/settings.json +5 -0
- package/README.md +193 -0
- package/bin/cli.js +13 -0
- package/install.sh +77 -0
- package/package.json +29 -0
- package/refs/gsd/.github/CODEOWNERS +2 -0
- package/refs/gsd/.github/FUNDING.yml +1 -0
- package/refs/gsd/.github/ISSUE_TEMPLATE/bug_report.yml +59 -0
- package/refs/gsd/.github/ISSUE_TEMPLATE/feature_request.yml +37 -0
- package/refs/gsd/.github/pull_request_template.md +24 -0
- package/refs/gsd/.github/workflows/auto-label-issues.yml +21 -0
- package/refs/gsd/CHANGELOG.md +1520 -0
- package/refs/gsd/LICENSE +21 -0
- package/refs/gsd/README.md +704 -0
- package/refs/gsd/SECURITY.md +33 -0
- package/refs/gsd/agents/gsd-codebase-mapper.md +764 -0
- package/refs/gsd/agents/gsd-debugger.md +1246 -0
- package/refs/gsd/agents/gsd-executor.md +469 -0
- package/refs/gsd/agents/gsd-integration-checker.md +443 -0
- package/refs/gsd/agents/gsd-phase-researcher.md +546 -0
- package/refs/gsd/agents/gsd-plan-checker.md +690 -0
- package/refs/gsd/agents/gsd-planner.md +1275 -0
- package/refs/gsd/agents/gsd-project-researcher.md +621 -0
- package/refs/gsd/agents/gsd-research-synthesizer.md +239 -0
- package/refs/gsd/agents/gsd-roadmapper.md +642 -0
- package/refs/gsd/agents/gsd-verifier.md +573 -0
- package/refs/gsd/assets/gsd-logo-2000-transparent.png +0 -0
- package/refs/gsd/assets/gsd-logo-2000-transparent.svg +17 -0
- package/refs/gsd/assets/gsd-logo-2000.png +0 -0
- package/refs/gsd/assets/gsd-logo-2000.svg +21 -0
- package/refs/gsd/assets/terminal.svg +68 -0
- package/refs/gsd/bin/install.js +2090 -0
- package/refs/gsd/commands/gsd/add-phase.md +43 -0
- package/refs/gsd/commands/gsd/add-tests.md +41 -0
- package/refs/gsd/commands/gsd/add-todo.md +47 -0
- package/refs/gsd/commands/gsd/audit-milestone.md +36 -0
- package/refs/gsd/commands/gsd/check-todos.md +45 -0
- package/refs/gsd/commands/gsd/cleanup.md +18 -0
- package/refs/gsd/commands/gsd/complete-milestone.md +136 -0
- package/refs/gsd/commands/gsd/debug.md +167 -0
- package/refs/gsd/commands/gsd/discuss-phase.md +83 -0
- package/refs/gsd/commands/gsd/execute-phase.md +41 -0
- package/refs/gsd/commands/gsd/health.md +22 -0
- package/refs/gsd/commands/gsd/help.md +22 -0
- package/refs/gsd/commands/gsd/insert-phase.md +32 -0
- package/refs/gsd/commands/gsd/join-discord.md +18 -0
- package/refs/gsd/commands/gsd/list-phase-assumptions.md +46 -0
- package/refs/gsd/commands/gsd/map-codebase.md +71 -0
- package/refs/gsd/commands/gsd/new-milestone.md +44 -0
- package/refs/gsd/commands/gsd/new-project.md +42 -0
- package/refs/gsd/commands/gsd/new-project.md.bak +1041 -0
- package/refs/gsd/commands/gsd/pause-work.md +38 -0
- package/refs/gsd/commands/gsd/plan-milestone-gaps.md +34 -0
- package/refs/gsd/commands/gsd/plan-phase.md +45 -0
- package/refs/gsd/commands/gsd/progress.md +24 -0
- package/refs/gsd/commands/gsd/quick.md +41 -0
- package/refs/gsd/commands/gsd/reapply-patches.md +110 -0
- package/refs/gsd/commands/gsd/remove-phase.md +31 -0
- package/refs/gsd/commands/gsd/research-phase.md +189 -0
- package/refs/gsd/commands/gsd/resume-work.md +40 -0
- package/refs/gsd/commands/gsd/set-profile.md +34 -0
- package/refs/gsd/commands/gsd/settings.md +36 -0
- package/refs/gsd/commands/gsd/update.md +37 -0
- package/refs/gsd/commands/gsd/verify-work.md +38 -0
- package/refs/gsd/docs/USER-GUIDE.md +471 -0
- package/refs/gsd/docs/context-monitor.md +96 -0
- package/refs/gsd/get-shit-done/bin/gsd-tools.cjs +585 -0
- package/refs/gsd/get-shit-done/bin/lib/commands.cjs +553 -0
- package/refs/gsd/get-shit-done/bin/lib/config.cjs +162 -0
- package/refs/gsd/get-shit-done/bin/lib/core.cjs +411 -0
- package/refs/gsd/get-shit-done/bin/lib/frontmatter.cjs +299 -0
- package/refs/gsd/get-shit-done/bin/lib/init.cjs +710 -0
- package/refs/gsd/get-shit-done/bin/lib/milestone.cjs +215 -0
- package/refs/gsd/get-shit-done/bin/lib/phase.cjs +870 -0
- package/refs/gsd/get-shit-done/bin/lib/roadmap.cjs +298 -0
- package/refs/gsd/get-shit-done/bin/lib/state.cjs +521 -0
- package/refs/gsd/get-shit-done/bin/lib/template.cjs +222 -0
- package/refs/gsd/get-shit-done/bin/lib/verify.cjs +772 -0
- package/refs/gsd/get-shit-done/references/checkpoints.md +776 -0
- package/refs/gsd/get-shit-done/references/continuation-format.md +249 -0
- package/refs/gsd/get-shit-done/references/decimal-phase-calculation.md +65 -0
- package/refs/gsd/get-shit-done/references/git-integration.md +248 -0
- package/refs/gsd/get-shit-done/references/git-planning-commit.md +38 -0
- package/refs/gsd/get-shit-done/references/model-profile-resolution.md +34 -0
- package/refs/gsd/get-shit-done/references/model-profiles.md +92 -0
- package/refs/gsd/get-shit-done/references/phase-argument-parsing.md +61 -0
- package/refs/gsd/get-shit-done/references/planning-config.md +196 -0
- package/refs/gsd/get-shit-done/references/questioning.md +145 -0
- package/refs/gsd/get-shit-done/references/tdd.md +263 -0
- package/refs/gsd/get-shit-done/references/ui-brand.md +160 -0
- package/refs/gsd/get-shit-done/references/verification-patterns.md +612 -0
- package/refs/gsd/get-shit-done/templates/DEBUG.md +164 -0
- package/refs/gsd/get-shit-done/templates/UAT.md +247 -0
- package/refs/gsd/get-shit-done/templates/VALIDATION.md +76 -0
- package/refs/gsd/get-shit-done/templates/codebase/architecture.md +255 -0
- package/refs/gsd/get-shit-done/templates/codebase/concerns.md +310 -0
- package/refs/gsd/get-shit-done/templates/codebase/conventions.md +307 -0
- package/refs/gsd/get-shit-done/templates/codebase/integrations.md +280 -0
- package/refs/gsd/get-shit-done/templates/codebase/stack.md +186 -0
- package/refs/gsd/get-shit-done/templates/codebase/structure.md +285 -0
- package/refs/gsd/get-shit-done/templates/codebase/testing.md +480 -0
- package/refs/gsd/get-shit-done/templates/config.json +37 -0
- package/refs/gsd/get-shit-done/templates/context.md +283 -0
- package/refs/gsd/get-shit-done/templates/continue-here.md +78 -0
- package/refs/gsd/get-shit-done/templates/debug-subagent-prompt.md +91 -0
- package/refs/gsd/get-shit-done/templates/discovery.md +146 -0
- package/refs/gsd/get-shit-done/templates/milestone-archive.md +123 -0
- package/refs/gsd/get-shit-done/templates/milestone.md +115 -0
- package/refs/gsd/get-shit-done/templates/phase-prompt.md +569 -0
- package/refs/gsd/get-shit-done/templates/planner-subagent-prompt.md +117 -0
- package/refs/gsd/get-shit-done/templates/project.md +184 -0
- package/refs/gsd/get-shit-done/templates/requirements.md +231 -0
- package/refs/gsd/get-shit-done/templates/research-project/ARCHITECTURE.md +204 -0
- package/refs/gsd/get-shit-done/templates/research-project/FEATURES.md +147 -0
- package/refs/gsd/get-shit-done/templates/research-project/PITFALLS.md +200 -0
- package/refs/gsd/get-shit-done/templates/research-project/STACK.md +120 -0
- package/refs/gsd/get-shit-done/templates/research-project/SUMMARY.md +170 -0
- package/refs/gsd/get-shit-done/templates/research.md +552 -0
- package/refs/gsd/get-shit-done/templates/retrospective.md +54 -0
- package/refs/gsd/get-shit-done/templates/roadmap.md +202 -0
- package/refs/gsd/get-shit-done/templates/state.md +176 -0
- package/refs/gsd/get-shit-done/templates/summary-complex.md +59 -0
- package/refs/gsd/get-shit-done/templates/summary-minimal.md +41 -0
- package/refs/gsd/get-shit-done/templates/summary-standard.md +48 -0
- package/refs/gsd/get-shit-done/templates/summary.md +248 -0
- package/refs/gsd/get-shit-done/templates/user-setup.md +311 -0
- package/refs/gsd/get-shit-done/templates/verification-report.md +322 -0
- package/refs/gsd/get-shit-done/workflows/add-phase.md +111 -0
- package/refs/gsd/get-shit-done/workflows/add-tests.md +350 -0
- package/refs/gsd/get-shit-done/workflows/add-todo.md +157 -0
- package/refs/gsd/get-shit-done/workflows/audit-milestone.md +297 -0
- package/refs/gsd/get-shit-done/workflows/check-todos.md +176 -0
- package/refs/gsd/get-shit-done/workflows/cleanup.md +152 -0
- package/refs/gsd/get-shit-done/workflows/complete-milestone.md +763 -0
- package/refs/gsd/get-shit-done/workflows/diagnose-issues.md +219 -0
- package/refs/gsd/get-shit-done/workflows/discovery-phase.md +289 -0
- package/refs/gsd/get-shit-done/workflows/discuss-phase.md +542 -0
- package/refs/gsd/get-shit-done/workflows/execute-phase.md +449 -0
- package/refs/gsd/get-shit-done/workflows/execute-plan.md +448 -0
- package/refs/gsd/get-shit-done/workflows/health.md +156 -0
- package/refs/gsd/get-shit-done/workflows/help.md +489 -0
- package/refs/gsd/get-shit-done/workflows/insert-phase.md +129 -0
- package/refs/gsd/get-shit-done/workflows/list-phase-assumptions.md +178 -0
- package/refs/gsd/get-shit-done/workflows/map-codebase.md +315 -0
- package/refs/gsd/get-shit-done/workflows/new-milestone.md +382 -0
- package/refs/gsd/get-shit-done/workflows/new-project.md +1116 -0
- package/refs/gsd/get-shit-done/workflows/pause-work.md +122 -0
- package/refs/gsd/get-shit-done/workflows/plan-milestone-gaps.md +274 -0
- package/refs/gsd/get-shit-done/workflows/plan-phase.md +569 -0
- package/refs/gsd/get-shit-done/workflows/progress.md +381 -0
- package/refs/gsd/get-shit-done/workflows/quick.md +453 -0
- package/refs/gsd/get-shit-done/workflows/remove-phase.md +154 -0
- package/refs/gsd/get-shit-done/workflows/research-phase.md +73 -0
- package/refs/gsd/get-shit-done/workflows/resume-project.md +306 -0
- package/refs/gsd/get-shit-done/workflows/set-profile.md +80 -0
- package/refs/gsd/get-shit-done/workflows/settings.md +213 -0
- package/refs/gsd/get-shit-done/workflows/transition.md +544 -0
- package/refs/gsd/get-shit-done/workflows/update.md +219 -0
- package/refs/gsd/get-shit-done/workflows/verify-phase.md +242 -0
- package/refs/gsd/get-shit-done/workflows/verify-work.md +569 -0
- package/refs/gsd/hooks/gsd-check-update.js +62 -0
- package/refs/gsd/hooks/gsd-context-monitor.js +122 -0
- package/refs/gsd/hooks/gsd-statusline.js +108 -0
- package/refs/gsd/package.json +50 -0
- package/refs/gsd/scripts/build-hooks.js +43 -0
- package/refs/gsd/tests/commands.test.cjs +661 -0
- package/refs/gsd/tests/helpers.cjs +40 -0
- package/refs/gsd/tests/init.test.cjs +205 -0
- package/refs/gsd/tests/milestone.test.cjs +98 -0
- package/refs/gsd/tests/phase.test.cjs +1241 -0
- package/refs/gsd/tests/roadmap.test.cjs +265 -0
- package/refs/gsd/tests/state.test.cjs +302 -0
- package/refs/gsd/tests/verify.test.cjs +80 -0
- package/refs/vbenchmark/.agent/agents/codebase-explorer.md +224 -0
- package/refs/vbenchmark/.agent/agents/debugger.md +180 -0
- package/refs/vbenchmark/.agent/agents/documenter.md +166 -0
- package/refs/vbenchmark/.agent/agents/implementer.md +70 -0
- package/refs/vbenchmark/.agent/agents/orchestrator.md +212 -0
- package/refs/vbenchmark/.agent/agents/researcher.md +80 -0
- package/refs/vbenchmark/.agent/agents/reviewer.md +184 -0
- package/refs/vbenchmark/.agent/agents/tester.md +170 -0
- package/refs/vbenchmark/.agent/commands/commit.md +29 -0
- package/refs/vbenchmark/.agent/commands/debug.md +59 -0
- package/refs/vbenchmark/.agent/commands/document.md +52 -0
- package/refs/vbenchmark/.agent/commands/gather-context.md +58 -0
- package/refs/vbenchmark/.agent/commands/init.md +56 -0
- package/refs/vbenchmark/.agent/commands/preset-help.md +50 -0
- package/refs/vbenchmark/.agent/commands/refactor.md +71 -0
- package/refs/vbenchmark/.agent/commands/research.md +37 -0
- package/refs/vbenchmark/.agent/commands/review.md +38 -0
- package/refs/vbenchmark/.agent/commands/test.md +61 -0
- package/refs/vbenchmark/.agent/rules/01-code-quality.md +33 -0
- package/refs/vbenchmark/.agent/rules/02-typescript-go.md +46 -0
- package/refs/vbenchmark/.agent/rules/03-security-git.md +34 -0
- package/refs/vbenchmark/.agent/rules/04-architecture.md +40 -0
- package/refs/vbenchmark/.agent/sync.js +536 -0
- package/refs/vbenchmark/.agent/workflows/commit.md +29 -0
- package/refs/vbenchmark/.agent/workflows/debug.md +59 -0
- package/refs/vbenchmark/.agent/workflows/document.md +52 -0
- package/refs/vbenchmark/.agent/workflows/gather-context.md +58 -0
- package/refs/vbenchmark/.agent/workflows/init.md +56 -0
- package/refs/vbenchmark/.agent/workflows/preset-help.md +50 -0
- package/refs/vbenchmark/.agent/workflows/refactor.md +71 -0
- package/refs/vbenchmark/.agent/workflows/research.md +37 -0
- package/refs/vbenchmark/.agent/workflows/review.md +38 -0
- package/refs/vbenchmark/.agent/workflows/test.md +61 -0
- package/refs/vbenchmark/.claude/commands/agentic-dev/apply.md +222 -0
- package/refs/vbenchmark/.claude/commands/agentic-dev/done.md +166 -0
- package/refs/vbenchmark/.claude/commands/agentic-dev/proposal.md +220 -0
- package/refs/vbenchmark/.claude/commands/openspec/apply.md +23 -0
- package/refs/vbenchmark/.claude/commands/openspec/archive.md +27 -0
- package/refs/vbenchmark/.claude/commands/openspec/proposal.md +28 -0
- package/refs/vbenchmark/.clinerules/01-rules.md +73 -0
- package/refs/vbenchmark/.clinerules/02-agents.md +34 -0
- package/refs/vbenchmark/.cursor/commands/commit.md +29 -0
- package/refs/vbenchmark/.cursor/commands/debug.md +59 -0
- package/refs/vbenchmark/.cursor/commands/document.md +52 -0
- package/refs/vbenchmark/.cursor/commands/gather-context.md +58 -0
- package/refs/vbenchmark/.cursor/commands/init.md +56 -0
- package/refs/vbenchmark/.cursor/commands/preset-help.md +50 -0
- package/refs/vbenchmark/.cursor/commands/refactor.md +71 -0
- package/refs/vbenchmark/.cursor/commands/research.md +37 -0
- package/refs/vbenchmark/.cursor/commands/review.md +38 -0
- package/refs/vbenchmark/.cursor/commands/test.md +61 -0
- package/refs/vbenchmark/.cursor/rules/agents.mdc +1357 -0
- package/refs/vbenchmark/.factory/droids/codebase-explorer.md +224 -0
- package/refs/vbenchmark/.factory/droids/debugger.md +180 -0
- package/refs/vbenchmark/.factory/droids/documenter.md +166 -0
- package/refs/vbenchmark/.factory/droids/implementer.md +70 -0
- package/refs/vbenchmark/.factory/droids/orchestrator.md +212 -0
- package/refs/vbenchmark/.factory/droids/researcher.md +80 -0
- package/refs/vbenchmark/.factory/droids/reviewer.md +184 -0
- package/refs/vbenchmark/.factory/droids/tester.md +170 -0
- package/refs/vbenchmark/.gemini/workflows/commit.md +29 -0
- package/refs/vbenchmark/.gemini/workflows/debug.md +59 -0
- package/refs/vbenchmark/.gemini/workflows/document.md +52 -0
- package/refs/vbenchmark/.gemini/workflows/gather-context.md +58 -0
- package/refs/vbenchmark/.gemini/workflows/init.md +56 -0
- package/refs/vbenchmark/.gemini/workflows/preset-help.md +50 -0
- package/refs/vbenchmark/.gemini/workflows/refactor.md +71 -0
- package/refs/vbenchmark/.gemini/workflows/research.md +37 -0
- package/refs/vbenchmark/.gemini/workflows/review.md +38 -0
- package/refs/vbenchmark/.gemini/workflows/test.md +61 -0
- package/refs/vbenchmark/.github/CODEOWNERS +20 -0
- package/refs/vbenchmark/.github/FUNDING.yml +4 -0
- package/refs/vbenchmark/.github/ISSUE_TEMPLATE/bug-report.yml +76 -0
- package/refs/vbenchmark/.github/ISSUE_TEMPLATE/new-task.yml +106 -0
- package/refs/vbenchmark/.github/PULL_REQUEST_TEMPLATE.md +38 -0
- package/refs/vbenchmark/.github/copilot-instructions.md +73 -0
- package/refs/vbenchmark/.github/workflows/ci.yaml +33 -0
- package/refs/vbenchmark/.github/workflows/vercel-auto-pr.yml +478 -0
- package/refs/vbenchmark/.github/workflows/vercel-deploy.yaml +487 -0
- package/refs/vbenchmark/.github/workflows/vercel-pr-command.yaml +337 -0
- package/refs/vbenchmark/.github/workflows/vercel-project-init.yaml +208 -0
- package/refs/vbenchmark/.opencode/agent/codebase-explorer.md +224 -0
- package/refs/vbenchmark/.opencode/agent/debugger.md +180 -0
- package/refs/vbenchmark/.opencode/agent/documenter.md +166 -0
- package/refs/vbenchmark/.opencode/agent/implementer.md +70 -0
- package/refs/vbenchmark/.opencode/agent/orchestrator.md +212 -0
- package/refs/vbenchmark/.opencode/agent/researcher.md +80 -0
- package/refs/vbenchmark/.opencode/agent/reviewer.md +184 -0
- package/refs/vbenchmark/.opencode/agent/tester.md +170 -0
- package/refs/vbenchmark/.opencode/command/commit.md +29 -0
- package/refs/vbenchmark/.opencode/command/debug.md +59 -0
- package/refs/vbenchmark/.opencode/command/document.md +52 -0
- package/refs/vbenchmark/.opencode/command/gather-context.md +58 -0
- package/refs/vbenchmark/.opencode/command/init.md +56 -0
- package/refs/vbenchmark/.opencode/command/preset-help.md +50 -0
- package/refs/vbenchmark/.opencode/command/refactor.md +71 -0
- package/refs/vbenchmark/.opencode/command/research.md +37 -0
- package/refs/vbenchmark/.opencode/command/review.md +38 -0
- package/refs/vbenchmark/.opencode/command/test.md +61 -0
- package/refs/vbenchmark/.trae/project_rules.md +73 -0
- package/refs/vbenchmark/.windsurf/rules/rules.md +85 -0
- package/refs/vbenchmark/AGENTS.md +73 -0
- package/refs/vbenchmark/CONTRIBUTING.md +332 -0
- package/refs/vbenchmark/Caddyfile +3 -0
- package/refs/vbenchmark/LICENSE +47 -0
- package/refs/vbenchmark/README.md +354 -0
- package/refs/vbenchmark/docker-compose.prod.yaml +35 -0
- package/refs/vbenchmark/docker-compose.yaml +53 -0
- package/refs/vbenchmark/docs/TASK_EXPANSION_PLAN.md +211 -0
- package/refs/vbenchmark/docs/THESIS.md +441 -0
- package/refs/vbenchmark/docs/categories/code-evolution.md +138 -0
- package/refs/vbenchmark/openspec/changes/init-vibecodingbench/design.md +111 -0
- package/refs/vbenchmark/openspec/changes/init-vibecodingbench/proposal.md +15 -0
- package/refs/vbenchmark/openspec/changes/init-vibecodingbench/specs/evaluation/spec.md +105 -0
- package/refs/vbenchmark/openspec/changes/init-vibecodingbench/specs/leaderboard/spec.md +68 -0
- package/refs/vbenchmark/openspec/changes/init-vibecodingbench/specs/task-definition/spec.md +45 -0
- package/refs/vbenchmark/openspec/changes/init-vibecodingbench/specs/task-runner/spec.md +49 -0
- package/refs/vbenchmark/openspec/changes/init-vibecodingbench/tasks.md +413 -0
- package/refs/vbenchmark/package.json +51 -0
- package/refs/vbenchmark/packages/cli/eslint.config.js +16 -0
- package/refs/vbenchmark/packages/cli/package.json +35 -0
- package/refs/vbenchmark/packages/cli/src/agents/index.ts +655 -0
- package/refs/vbenchmark/packages/cli/src/commands/eval.ts +197 -0
- package/refs/vbenchmark/packages/cli/src/commands/list.ts +63 -0
- package/refs/vbenchmark/packages/cli/src/commands/run.ts +147 -0
- package/refs/vbenchmark/packages/cli/src/evaluator.ts +125 -0
- package/refs/vbenchmark/packages/cli/src/index.ts +21 -0
- package/refs/vbenchmark/packages/cli/src/lib/task-variation.ts +153 -0
- package/refs/vbenchmark/packages/cli/src/loader.ts +258 -0
- package/refs/vbenchmark/packages/cli/src/reporter.ts +222 -0
- package/refs/vbenchmark/packages/cli/src/runtime/docker.ts +385 -0
- package/refs/vbenchmark/packages/cli/tsconfig.json +8 -0
- package/refs/vbenchmark/packages/dashboard/Dockerfile +42 -0
- package/refs/vbenchmark/packages/dashboard/index.html +21 -0
- package/refs/vbenchmark/packages/dashboard/package.json +29 -0
- package/refs/vbenchmark/packages/dashboard/postcss.config.js +6 -0
- package/refs/vbenchmark/packages/dashboard/public/favicon.svg +24 -0
- package/refs/vbenchmark/packages/dashboard/public/logo.png +0 -0
- package/refs/vbenchmark/packages/dashboard/public/logo.svg +39 -0
- package/refs/vbenchmark/packages/dashboard/src/App.tsx +1468 -0
- package/refs/vbenchmark/packages/dashboard/src/data/category-performance.json +1 -0
- package/refs/vbenchmark/packages/dashboard/src/data/leaderboard.json +1 -0
- package/refs/vbenchmark/packages/dashboard/src/data/task-results.json +1 -0
- package/refs/vbenchmark/packages/dashboard/src/data/tasks.json +1 -0
- package/refs/vbenchmark/packages/dashboard/src/index.css +3 -0
- package/refs/vbenchmark/packages/dashboard/src/main.tsx +13 -0
- package/refs/vbenchmark/packages/dashboard/src/vite-env.d.ts +9 -0
- package/refs/vbenchmark/packages/dashboard/tailwind.config.js +11 -0
- package/refs/vbenchmark/packages/dashboard/tsconfig.json +21 -0
- package/refs/vbenchmark/packages/dashboard/tsconfig.node.json +11 -0
- package/refs/vbenchmark/packages/dashboard/vercel.json +6 -0
- package/refs/vbenchmark/packages/dashboard/vite.config.ts +28 -0
- package/refs/vbenchmark/packages/evaluator/eslint.config.js +16 -0
- package/refs/vbenchmark/packages/evaluator/package.json +24 -0
- package/refs/vbenchmark/packages/evaluator/src/index.ts +15 -0
- package/refs/vbenchmark/packages/evaluator/src/runners/functional.ts +88 -0
- package/refs/vbenchmark/packages/evaluator/src/runners/quality.ts +140 -0
- package/refs/vbenchmark/packages/evaluator/src/runners/security.ts +94 -0
- package/refs/vbenchmark/packages/evaluator/src/runners/visual.ts +108 -0
- package/refs/vbenchmark/packages/evaluator/src/types.d.ts +19 -0
- package/refs/vbenchmark/packages/evaluator/tsconfig.json +8 -0
- package/refs/vbenchmark/packages/leaderboard/Dockerfile +38 -0
- package/refs/vbenchmark/packages/leaderboard/drizzle.config.ts +10 -0
- package/refs/vbenchmark/packages/leaderboard/eslint.config.js +16 -0
- package/refs/vbenchmark/packages/leaderboard/fly.toml +29 -0
- package/refs/vbenchmark/packages/leaderboard/package.json +36 -0
- package/refs/vbenchmark/packages/leaderboard/src/app.ts +29 -0
- package/refs/vbenchmark/packages/leaderboard/src/components/BrowserPreview.tsx +190 -0
- package/refs/vbenchmark/packages/leaderboard/src/components/ComparisonView.tsx +205 -0
- package/refs/vbenchmark/packages/leaderboard/src/components/LeaderboardTable.tsx +150 -0
- package/refs/vbenchmark/packages/leaderboard/src/components/LiveRunCard.tsx +133 -0
- package/refs/vbenchmark/packages/leaderboard/src/components/SubmissionForm.tsx +406 -0
- package/refs/vbenchmark/packages/leaderboard/src/components/SubmitForm.tsx +293 -0
- package/refs/vbenchmark/packages/leaderboard/src/components/TerminalStream.tsx +111 -0
- package/refs/vbenchmark/packages/leaderboard/src/config/pricing.ts +206 -0
- package/refs/vbenchmark/packages/leaderboard/src/db/index.ts +31 -0
- package/refs/vbenchmark/packages/leaderboard/src/db/schema.ts +125 -0
- package/refs/vbenchmark/packages/leaderboard/src/index.ts +13 -0
- package/refs/vbenchmark/packages/leaderboard/src/lib/websocket.ts +124 -0
- package/refs/vbenchmark/packages/leaderboard/src/routes/leaderboard.ts +698 -0
- package/refs/vbenchmark/packages/leaderboard/src/routes/live.ts +175 -0
- package/refs/vbenchmark/packages/leaderboard/src/routes/submissions.ts +183 -0
- package/refs/vbenchmark/packages/leaderboard/src/routes/tasks.ts +215 -0
- package/refs/vbenchmark/packages/leaderboard/tests/api.test.ts +228 -0
- package/refs/vbenchmark/packages/leaderboard/tsconfig.json +9 -0
- package/refs/vbenchmark/scripts/deploy.sh +70 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/context-management/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/context-management/task.yaml +16 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/evaluation-framework/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/evaluation-framework/task.yaml +16 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/guardrails-safety/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/guardrails-safety/task.yaml +16 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/memory-system/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/memory-system/task.yaml +16 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/model-routing/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/model-routing/task.yaml +16 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/multi-agent-system/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/multi-agent-system/task.yaml +16 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/prompt-optimization/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/prompt-optimization/task.yaml +16 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/reasoning-chain/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/reasoning-chain/task.yaml +16 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/streaming-pipeline/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/streaming-pipeline/task.yaml +16 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/tool-use-orchestration/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/ai-integration/advanced/tool-use-orchestration/task.yaml +16 -0
- package/refs/vbenchmark/tasks/ai-integration/agents/code-review-agent/PROMPT.md +64 -0
- package/refs/vbenchmark/tasks/ai-integration/agents/code-review-agent/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/agents/research-agent/PROMPT.md +61 -0
- package/refs/vbenchmark/tasks/ai-integration/agents/research-agent/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/agents/web-scraper-agent/PROMPT.md +57 -0
- package/refs/vbenchmark/tasks/ai-integration/agents/web-scraper-agent/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/embeddings/duplicate-detection/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/ai-integration/embeddings/duplicate-detection/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/embeddings/recommendation-engine/PROMPT.md +51 -0
- package/refs/vbenchmark/tasks/ai-integration/embeddings/recommendation-engine/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/embeddings/semantic-search/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/ai-integration/embeddings/semantic-search/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/fine-tuning/classification-model/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/ai-integration/fine-tuning/classification-model/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/function-calling/api-orchestrator/PROMPT.md +60 -0
- package/refs/vbenchmark/tasks/ai-integration/function-calling/api-orchestrator/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/function-calling/calendar-assistant/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/ai-integration/function-calling/calendar-assistant/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/function-calling/database-query/PROMPT.md +62 -0
- package/refs/vbenchmark/tasks/ai-integration/function-calling/database-query/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/multimodal/chart-interpreter/PROMPT.md +60 -0
- package/refs/vbenchmark/tasks/ai-integration/multimodal/chart-interpreter/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/multimodal/image-captioning/PROMPT.md +49 -0
- package/refs/vbenchmark/tasks/ai-integration/multimodal/image-captioning/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/rag-chatbot/code-assistant/PROMPT.md +51 -0
- package/refs/vbenchmark/tasks/ai-integration/rag-chatbot/code-assistant/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/rag-chatbot/doc-search/PROMPT.md +51 -0
- package/refs/vbenchmark/tasks/ai-integration/rag-chatbot/doc-search/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/rag-chatbot/pdf-qa/PROMPT.md +76 -0
- package/refs/vbenchmark/tasks/ai-integration/rag-chatbot/pdf-qa/docker-compose.yaml +30 -0
- package/refs/vbenchmark/tasks/ai-integration/rag-chatbot/pdf-qa/task.yaml +30 -0
- package/refs/vbenchmark/tasks/ai-integration/rag-chatbot/pdf-qa/tests/functional/qa.test.py +146 -0
- package/refs/vbenchmark/tasks/ai-integration/rag-chatbot/support-bot/PROMPT.md +51 -0
- package/refs/vbenchmark/tasks/ai-integration/rag-chatbot/support-bot/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/structured-output/contract-analyzer/PROMPT.md +67 -0
- package/refs/vbenchmark/tasks/ai-integration/structured-output/contract-analyzer/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/structured-output/invoice-parser/PROMPT.md +61 -0
- package/refs/vbenchmark/tasks/ai-integration/structured-output/invoice-parser/task.yaml +27 -0
- package/refs/vbenchmark/tasks/ai-integration/structured-output/receipt-scanner/PROMPT.md +65 -0
- package/refs/vbenchmark/tasks/ai-integration/structured-output/receipt-scanner/task.yaml +24 -0
- package/refs/vbenchmark/tasks/ai-integration/structured-output/resume-parser/PROMPT.md +70 -0
- package/refs/vbenchmark/tasks/ai-integration/structured-output/resume-parser/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/api-analytics/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/api-analytics/task.yaml +16 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/api-gateway/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/api-gateway/task.yaml +16 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/api-mocking/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/api-mocking/task.yaml +16 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/contract-testing/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/contract-testing/task.yaml +16 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/graphql-federation/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/graphql-federation/task.yaml +16 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/grpc-gateway/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/grpc-gateway/task.yaml +16 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/rate-limiter/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/rate-limiter/task.yaml +16 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/request-validator/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/request-validator/task.yaml +16 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/sdk-generator/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/sdk-generator/task.yaml +16 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/webhook-processor/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/api-integrations/advanced/webhook-processor/task.yaml +16 -0
- package/refs/vbenchmark/tasks/api-integrations/analytics/mixpanel-events/PROMPT.md +42 -0
- package/refs/vbenchmark/tasks/api-integrations/analytics/mixpanel-events/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/analytics/segment-tracking/PROMPT.md +42 -0
- package/refs/vbenchmark/tasks/api-integrations/analytics/segment-tracking/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/auth-provider/oauth2-github/PROMPT.md +42 -0
- package/refs/vbenchmark/tasks/api-integrations/auth-provider/oauth2-github/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/auth-provider/okta-integration/PROMPT.md +44 -0
- package/refs/vbenchmark/tasks/api-integrations/auth-provider/okta-integration/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/auth-provider/saml-sso/PROMPT.md +42 -0
- package/refs/vbenchmark/tasks/api-integrations/auth-provider/saml-sso/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/communication/discord-webhook/PROMPT.md +44 -0
- package/refs/vbenchmark/tasks/api-integrations/communication/discord-webhook/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/communication/slack-bot/PROMPT.md +42 -0
- package/refs/vbenchmark/tasks/api-integrations/communication/slack-bot/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/communication/twilio-sms/PROMPT.md +42 -0
- package/refs/vbenchmark/tasks/api-integrations/communication/twilio-sms/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/email/transactional/PROMPT.md +82 -0
- package/refs/vbenchmark/tasks/api-integrations/email/transactional/task.yaml +27 -0
- package/refs/vbenchmark/tasks/api-integrations/maps/google-maps-geocoding/PROMPT.md +41 -0
- package/refs/vbenchmark/tasks/api-integrations/maps/google-maps-geocoding/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/maps/mapbox-directions/PROMPT.md +41 -0
- package/refs/vbenchmark/tasks/api-integrations/maps/mapbox-directions/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/payment/crypto-payments/PROMPT.md +43 -0
- package/refs/vbenchmark/tasks/api-integrations/payment/crypto-payments/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/payment/paypal-integration/PROMPT.md +41 -0
- package/refs/vbenchmark/tasks/api-integrations/payment/paypal-integration/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/social/twitter-api/PROMPT.md +41 -0
- package/refs/vbenchmark/tasks/api-integrations/social/twitter-api/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/storage/cloudinary-upload/PROMPT.md +43 -0
- package/refs/vbenchmark/tasks/api-integrations/storage/cloudinary-upload/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/storage/gcs-streaming/PROMPT.md +43 -0
- package/refs/vbenchmark/tasks/api-integrations/storage/gcs-streaming/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/storage/s3-presigned-urls/PROMPT.md +41 -0
- package/refs/vbenchmark/tasks/api-integrations/storage/s3-presigned-urls/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/stripe/checkout-session/PROMPT.md +41 -0
- package/refs/vbenchmark/tasks/api-integrations/stripe/checkout-session/task.yaml +24 -0
- package/refs/vbenchmark/tasks/api-integrations/stripe/payment-webhook/PROMPT.md +60 -0
- package/refs/vbenchmark/tasks/api-integrations/stripe/payment-webhook/docker-compose.yaml +38 -0
- package/refs/vbenchmark/tasks/api-integrations/stripe/payment-webhook/task.yaml +31 -0
- package/refs/vbenchmark/tasks/api-integrations/stripe/payment-webhook/tests/webhook.test.ts +193 -0
- package/refs/vbenchmark/tasks/api-integrations/stripe/subscription-portal/PROMPT.md +41 -0
- package/refs/vbenchmark/tasks/api-integrations/stripe/subscription-portal/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/api-deprecation/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/api-deprecation/task.yaml +16 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/ast-refactoring/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/ast-refactoring/task.yaml +16 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/concurrency-fix/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/concurrency-fix/task.yaml +16 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/database-schema-migration/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/database-schema-migration/task.yaml +16 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/dead-code-elimination/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/dead-code-elimination/task.yaml +16 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/dependency-upgrade/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/dependency-upgrade/task.yaml +16 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/memory-optimization/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/memory-optimization/task.yaml +16 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/monorepo-extraction/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/monorepo-extraction/task.yaml +16 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/performance-profiling/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/performance-profiling/task.yaml +16 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/type-migration/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/code-evolution/advanced/type-migration/task.yaml +16 -0
- package/refs/vbenchmark/tasks/code-evolution/legacy-migration/callback-to-async/PROMPT.md +47 -0
- package/refs/vbenchmark/tasks/code-evolution/legacy-migration/callback-to-async/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/legacy-migration/express-to-fastify/PROMPT.md +49 -0
- package/refs/vbenchmark/tasks/code-evolution/legacy-migration/express-to-fastify/base-code/src/app.ts +22 -0
- package/refs/vbenchmark/tasks/code-evolution/legacy-migration/express-to-fastify/task.yaml +37 -0
- package/refs/vbenchmark/tasks/code-evolution/legacy-migration/express-to-fastify/tests/api.test.ts +70 -0
- package/refs/vbenchmark/tasks/code-evolution/legacy-migration/flask-to-fastapi/PROMPT.md +46 -0
- package/refs/vbenchmark/tasks/code-evolution/legacy-migration/flask-to-fastapi/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/legacy-migration/java-to-kotlin/PROMPT.md +45 -0
- package/refs/vbenchmark/tasks/code-evolution/legacy-migration/java-to-kotlin/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/legacy-migration/jquery-to-react/PROMPT.md +47 -0
- package/refs/vbenchmark/tasks/code-evolution/legacy-migration/jquery-to-react/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/legacy-migration/rest-to-grpc/PROMPT.md +47 -0
- package/refs/vbenchmark/tasks/code-evolution/legacy-migration/rest-to-grpc/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/performance/async-refactor/PROMPT.md +47 -0
- package/refs/vbenchmark/tasks/code-evolution/performance/async-refactor/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/performance/memory-leak-fix/PROMPT.md +47 -0
- package/refs/vbenchmark/tasks/code-evolution/performance/memory-leak-fix/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/performance/query-optimization/PROMPT.md +49 -0
- package/refs/vbenchmark/tasks/code-evolution/performance/query-optimization/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/refactoring/class-to-hooks/PROMPT.md +96 -0
- package/refs/vbenchmark/tasks/code-evolution/refactoring/class-to-hooks/task.yaml +27 -0
- package/refs/vbenchmark/tasks/code-evolution/refactoring/dependency-injection/PROMPT.md +47 -0
- package/refs/vbenchmark/tasks/code-evolution/refactoring/dependency-injection/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/refactoring/error-handling/PROMPT.md +48 -0
- package/refs/vbenchmark/tasks/code-evolution/refactoring/error-handling/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/refactoring/monolith-to-modules/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/code-evolution/refactoring/monolith-to-modules/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/refactoring/orm-migration/PROMPT.md +47 -0
- package/refs/vbenchmark/tasks/code-evolution/refactoring/orm-migration/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/security/secrets-rotation/PROMPT.md +49 -0
- package/refs/vbenchmark/tasks/code-evolution/security/secrets-rotation/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/security/sql-injection-fix/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/code-evolution/security/sql-injection-fix/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/security/xss-prevention/PROMPT.md +47 -0
- package/refs/vbenchmark/tasks/code-evolution/security/xss-prevention/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/testing/add-unit-tests/PROMPT.md +48 -0
- package/refs/vbenchmark/tasks/code-evolution/testing/add-unit-tests/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/testing/e2e-playwright/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/code-evolution/testing/e2e-playwright/task.yaml +24 -0
- package/refs/vbenchmark/tasks/code-evolution/testing/pytest-fixtures/PROMPT.md +47 -0
- package/refs/vbenchmark/tasks/code-evolution/testing/pytest-fixtures/task.yaml +24 -0
- package/refs/vbenchmark/tasks/frontend/accessibility/keyboard-shortcuts/PROMPT.md +44 -0
- package/refs/vbenchmark/tasks/frontend/accessibility/keyboard-shortcuts/task.yaml +24 -0
- package/refs/vbenchmark/tasks/frontend/accessibility/screen-reader-nav/PROMPT.md +44 -0
- package/refs/vbenchmark/tasks/frontend/accessibility/screen-reader-nav/task.yaml +24 -0
- package/refs/vbenchmark/tasks/frontend/advanced/canvas-editor/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/frontend/advanced/canvas-editor/task.yaml +16 -0
- package/refs/vbenchmark/tasks/frontend/advanced/micro-frontend/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/frontend/advanced/micro-frontend/task.yaml +16 -0
- package/refs/vbenchmark/tasks/frontend/advanced/offline-first/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/frontend/advanced/offline-first/task.yaml +16 -0
- package/refs/vbenchmark/tasks/frontend/advanced/realtime-collab/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/frontend/advanced/realtime-collab/task.yaml +16 -0
- package/refs/vbenchmark/tasks/frontend/advanced/service-worker/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/frontend/advanced/service-worker/task.yaml +16 -0
- package/refs/vbenchmark/tasks/frontend/advanced/state-machine/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/frontend/advanced/state-machine/task.yaml +16 -0
- package/refs/vbenchmark/tasks/frontend/advanced/virtual-list/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/frontend/advanced/virtual-list/task.yaml +16 -0
- package/refs/vbenchmark/tasks/frontend/advanced/wasm-integration/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/frontend/advanced/wasm-integration/task.yaml +16 -0
- package/refs/vbenchmark/tasks/frontend/advanced/web-worker/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/frontend/advanced/web-worker/task.yaml +16 -0
- package/refs/vbenchmark/tasks/frontend/advanced/webgl-visualization/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/frontend/advanced/webgl-visualization/task.yaml +16 -0
- package/refs/vbenchmark/tasks/frontend/animation/page-transitions/PROMPT.md +44 -0
- package/refs/vbenchmark/tasks/frontend/animation/page-transitions/task.yaml +24 -0
- package/refs/vbenchmark/tasks/frontend/components/data-grid/PROMPT.md +59 -0
- package/refs/vbenchmark/tasks/frontend/components/data-grid/task.yaml +24 -0
- package/refs/vbenchmark/tasks/frontend/components/date-range-picker/PROMPT.md +57 -0
- package/refs/vbenchmark/tasks/frontend/components/date-range-picker/task.yaml +24 -0
- package/refs/vbenchmark/tasks/frontend/components/file-uploader/PROMPT.md +55 -0
- package/refs/vbenchmark/tasks/frontend/components/file-uploader/task.yaml +24 -0
- package/refs/vbenchmark/tasks/frontend/components/form-builder/PROMPT.md +96 -0
- package/refs/vbenchmark/tasks/frontend/components/form-builder/task.yaml +28 -0
- package/refs/vbenchmark/tasks/frontend/components/rich-text-editor/PROMPT.md +45 -0
- package/refs/vbenchmark/tasks/frontend/components/rich-text-editor/task.yaml +24 -0
- package/refs/vbenchmark/tasks/frontend/figma-to-code/dashboard-layout/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/frontend/figma-to-code/dashboard-layout/task.yaml +25 -0
- package/refs/vbenchmark/tasks/frontend/figma-to-code/landing-page/PROMPT.md +49 -0
- package/refs/vbenchmark/tasks/frontend/figma-to-code/landing-page/task.yaml +25 -0
- package/refs/vbenchmark/tasks/frontend/figma-to-code/mobile-app-screen/PROMPT.md +51 -0
- package/refs/vbenchmark/tasks/frontend/figma-to-code/mobile-app-screen/task.yaml +24 -0
- package/refs/vbenchmark/tasks/frontend/figma-to-code/pricing-card/PROMPT.md +93 -0
- package/refs/vbenchmark/tasks/frontend/figma-to-code/pricing-card/docker-compose.yaml +23 -0
- package/refs/vbenchmark/tasks/frontend/figma-to-code/pricing-card/task.yaml +30 -0
- package/refs/vbenchmark/tasks/frontend/figma-to-code/pricing-card/tests/visual/diff.test.ts +107 -0
- package/refs/vbenchmark/tasks/frontend/figma-to-code/pricing-card/tests/visual/interaction.test.ts +88 -0
- package/refs/vbenchmark/tasks/frontend/performance/image-lazy-load/PROMPT.md +43 -0
- package/refs/vbenchmark/tasks/frontend/performance/image-lazy-load/task.yaml +24 -0
- package/refs/vbenchmark/tasks/frontend/performance/infinite-scroll/PROMPT.md +44 -0
- package/refs/vbenchmark/tasks/frontend/performance/infinite-scroll/task.yaml +24 -0
- package/refs/vbenchmark/tasks/frontend/state-management/collaborative-editor/PROMPT.md +44 -0
- package/refs/vbenchmark/tasks/frontend/state-management/collaborative-editor/task.yaml +24 -0
- package/refs/vbenchmark/tasks/frontend/state-management/shopping-cart/PROMPT.md +53 -0
- package/refs/vbenchmark/tasks/frontend/state-management/shopping-cart/task.yaml +24 -0
- package/refs/vbenchmark/tasks/frontend/visualization/chart-dashboard/PROMPT.md +83 -0
- package/refs/vbenchmark/tasks/frontend/visualization/chart-dashboard/task.yaml +28 -0
- package/refs/vbenchmark/tasks/frontend/visualization/gantt-chart/PROMPT.md +57 -0
- package/refs/vbenchmark/tasks/frontend/visualization/gantt-chart/task.yaml +24 -0
- package/refs/vbenchmark/tasks/frontend/visualization/map-dashboard/PROMPT.md +44 -0
- package/refs/vbenchmark/tasks/frontend/visualization/map-dashboard/task.yaml +24 -0
- package/refs/vbenchmark/tasks/frontend/visualization/realtime-charts/PROMPT.md +43 -0
- package/refs/vbenchmark/tasks/frontend/visualization/realtime-charts/task.yaml +24 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/blue-green-deploy/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/blue-green-deploy/task.yaml +16 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/canary-release/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/canary-release/task.yaml +16 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/change-data-capture/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/change-data-capture/task.yaml +16 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/config-management/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/config-management/task.yaml +16 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/data-pipeline/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/data-pipeline/task.yaml +16 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/distributed-tracing/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/distributed-tracing/task.yaml +16 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/log-aggregation/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/log-aggregation/task.yaml +16 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/schema-registry/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/schema-registry/task.yaml +16 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/secret-rotation/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/secret-rotation/task.yaml +16 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/stream-processing/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/glue-code/advanced/stream-processing/task.yaml +16 -0
- package/refs/vbenchmark/tasks/glue-code/api-sync/rest-to-graphql/PROMPT.md +66 -0
- package/refs/vbenchmark/tasks/glue-code/api-sync/rest-to-graphql/task.yaml +27 -0
- package/refs/vbenchmark/tasks/glue-code/caching/redis-cache/PROMPT.md +82 -0
- package/refs/vbenchmark/tasks/glue-code/caching/redis-cache/task.yaml +27 -0
- package/refs/vbenchmark/tasks/glue-code/data-transform/avro-schema-evolution/PROMPT.md +51 -0
- package/refs/vbenchmark/tasks/glue-code/data-transform/avro-schema-evolution/task.yaml +24 -0
- package/refs/vbenchmark/tasks/glue-code/data-transform/csv-normalizer/PROMPT.md +49 -0
- package/refs/vbenchmark/tasks/glue-code/data-transform/csv-normalizer/task.yaml +24 -0
- package/refs/vbenchmark/tasks/glue-code/data-transform/excel-to-json/PROMPT.md +67 -0
- package/refs/vbenchmark/tasks/glue-code/data-transform/excel-to-json/task.yaml +28 -0
- package/refs/vbenchmark/tasks/glue-code/data-transform/excel-to-json/tests/transform.test.py +137 -0
- package/refs/vbenchmark/tasks/glue-code/data-transform/json-to-xml/PROMPT.md +45 -0
- package/refs/vbenchmark/tasks/glue-code/data-transform/json-to-xml/task.yaml +24 -0
- package/refs/vbenchmark/tasks/glue-code/data-transform/protobuf-converter/PROMPT.md +44 -0
- package/refs/vbenchmark/tasks/glue-code/data-transform/protobuf-converter/task.yaml +24 -0
- package/refs/vbenchmark/tasks/glue-code/etl/cdc-pipeline/PROMPT.md +52 -0
- package/refs/vbenchmark/tasks/glue-code/etl/cdc-pipeline/task.yaml +27 -0
- package/refs/vbenchmark/tasks/glue-code/etl/database-sync/PROMPT.md +51 -0
- package/refs/vbenchmark/tasks/glue-code/etl/database-sync/task.yaml +24 -0
- package/refs/vbenchmark/tasks/glue-code/etl/s3-to-warehouse/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/glue-code/etl/s3-to-warehouse/task.yaml +24 -0
- package/refs/vbenchmark/tasks/glue-code/file-processing/image-resizer/PROMPT.md +52 -0
- package/refs/vbenchmark/tasks/glue-code/file-processing/image-resizer/task.yaml +24 -0
- package/refs/vbenchmark/tasks/glue-code/file-processing/pdf-merger/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/glue-code/file-processing/pdf-merger/task.yaml +24 -0
- package/refs/vbenchmark/tasks/glue-code/file-processing/video-transcoder/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/glue-code/file-processing/video-transcoder/task.yaml +27 -0
- package/refs/vbenchmark/tasks/glue-code/migration/data-backfill/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/glue-code/migration/data-backfill/task.yaml +24 -0
- package/refs/vbenchmark/tasks/glue-code/migration/database-versioning/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/glue-code/migration/database-versioning/task.yaml +24 -0
- package/refs/vbenchmark/tasks/glue-code/queue/kafka-producer/PROMPT.md +49 -0
- package/refs/vbenchmark/tasks/glue-code/queue/kafka-producer/task.yaml +27 -0
- package/refs/vbenchmark/tasks/glue-code/queue/rabbitmq-consumer/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/glue-code/queue/rabbitmq-consumer/task.yaml +27 -0
- package/refs/vbenchmark/tasks/glue-code/queue/sqs-batch-processor/PROMPT.md +47 -0
- package/refs/vbenchmark/tasks/glue-code/queue/sqs-batch-processor/task.yaml +24 -0
- package/refs/vbenchmark/tasks/glue-code/scheduler/cron-job-manager/PROMPT.md +52 -0
- package/refs/vbenchmark/tasks/glue-code/scheduler/cron-job-manager/task.yaml +27 -0
- package/refs/vbenchmark/tasks/glue-code/scheduler/delayed-tasks/PROMPT.md +51 -0
- package/refs/vbenchmark/tasks/glue-code/scheduler/delayed-tasks/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/api-versioning/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/api-versioning/task.yaml +16 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/circuit-breaker/PROMPT.md +13 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/circuit-breaker/task.yaml +16 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/compliance-gdpr/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/compliance-gdpr/task.yaml +16 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/cqrs-pattern/PROMPT.md +13 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/cqrs-pattern/task.yaml +16 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/data-encryption/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/data-encryption/task.yaml +16 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/distributed-locking/PROMPT.md +46 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/distributed-locking/task.yaml +24 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/event-sourcing/PROMPT.md +23 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/event-sourcing/task.yaml +16 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/feature-flags-ab/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/feature-flags-ab/task.yaml +16 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/saga-orchestration/PROMPT.md +13 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/saga-orchestration/task.yaml +16 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/webhook-delivery/PROMPT.md +15 -0
- package/refs/vbenchmark/tasks/saas-core/advanced/webhook-delivery/task.yaml +16 -0
- package/refs/vbenchmark/tasks/saas-core/audit/activity-logging/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/saas-core/audit/activity-logging/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/auth/jwt-refresh-tokens/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/saas-core/auth/jwt-refresh-tokens/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/auth/magic-link-email/PROMPT.md +53 -0
- package/refs/vbenchmark/tasks/saas-core/auth/magic-link-email/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/auth/mfa-totp/PROMPT.md +79 -0
- package/refs/vbenchmark/tasks/saas-core/auth/mfa-totp/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/auth/rbac-permissions/PROMPT.md +51 -0
- package/refs/vbenchmark/tasks/saas-core/auth/rbac-permissions/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/auth/session-management/PROMPT.md +52 -0
- package/refs/vbenchmark/tasks/saas-core/auth/session-management/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/auth/supabase-oauth/PROMPT.md +45 -0
- package/refs/vbenchmark/tasks/saas-core/auth/supabase-oauth/docker-compose.yaml +47 -0
- package/refs/vbenchmark/tasks/saas-core/auth/supabase-oauth/task.yaml +32 -0
- package/refs/vbenchmark/tasks/saas-core/auth/supabase-oauth/tests/auth.test.ts +59 -0
- package/refs/vbenchmark/tasks/saas-core/billing/invoice-generation/PROMPT.md +53 -0
- package/refs/vbenchmark/tasks/saas-core/billing/invoice-generation/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/billing/stripe-subscriptions/PROMPT.md +51 -0
- package/refs/vbenchmark/tasks/saas-core/billing/stripe-subscriptions/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/billing/usage-metering/PROMPT.md +52 -0
- package/refs/vbenchmark/tasks/saas-core/billing/usage-metering/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/crud/dashboard-table/PROMPT.md +48 -0
- package/refs/vbenchmark/tasks/saas-core/crud/dashboard-table/task.yaml +28 -0
- package/refs/vbenchmark/tasks/saas-core/multi-tenant/org-isolation/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/saas-core/multi-tenant/org-isolation/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/multi-tenant/subdomain-routing/PROMPT.md +50 -0
- package/refs/vbenchmark/tasks/saas-core/multi-tenant/subdomain-routing/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/notifications/email-queue/PROMPT.md +53 -0
- package/refs/vbenchmark/tasks/saas-core/notifications/email-queue/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/notifications/in-app-alerts/PROMPT.md +51 -0
- package/refs/vbenchmark/tasks/saas-core/notifications/in-app-alerts/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/notifications/push-notifications/PROMPT.md +51 -0
- package/refs/vbenchmark/tasks/saas-core/notifications/push-notifications/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/realtime/websocket-chat/PROMPT.md +80 -0
- package/refs/vbenchmark/tasks/saas-core/realtime/websocket-chat/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/search/full-text-search/PROMPT.md +51 -0
- package/refs/vbenchmark/tasks/saas-core/search/full-text-search/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/security/rate-limiter/PROMPT.md +99 -0
- package/refs/vbenchmark/tasks/saas-core/security/rate-limiter/task.yaml +27 -0
- package/refs/vbenchmark/tasks/saas-core/settings/user-preferences/PROMPT.md +78 -0
- package/refs/vbenchmark/tasks/saas-core/settings/user-preferences/task.yaml +27 -0
- package/refs/vbenchmark/templates/fastapi-postgres/docker-compose.yaml +36 -0
- package/refs/vbenchmark/templates/fastapi-postgres/pyproject.toml +34 -0
- package/refs/vbenchmark/templates/fastapi-postgres/src/__init__.py +0 -0
- package/refs/vbenchmark/templates/fastapi-postgres/src/config.py +12 -0
- package/refs/vbenchmark/templates/fastapi-postgres/src/database.py +15 -0
- package/refs/vbenchmark/templates/fastapi-postgres/src/main.py +51 -0
- package/refs/vbenchmark/templates/fastapi-postgres/src/models.py +12 -0
- package/refs/vbenchmark/templates/fastapi-postgres/src/schemas.py +20 -0
- package/refs/vbenchmark/templates/go-fiber/docker-compose.yaml +34 -0
- package/refs/vbenchmark/templates/go-fiber/go.mod +33 -0
- package/refs/vbenchmark/templates/go-fiber/go.sum +68 -0
- package/refs/vbenchmark/templates/go-fiber/main.go +98 -0
- package/refs/vbenchmark/templates/nextjs-supabase/.env.example +3 -0
- package/refs/vbenchmark/templates/nextjs-supabase/docker-compose.yaml +68 -0
- package/refs/vbenchmark/templates/nextjs-supabase/src/app/globals.css +13 -0
- package/refs/vbenchmark/templates/nextjs-supabase/src/app/layout.tsx +19 -0
- package/refs/vbenchmark/templates/nextjs-supabase/src/app/page.tsx +38 -0
- package/refs/vbenchmark/templates/nextjs-supabase/src/lib/supabase/client.ts +8 -0
- package/refs/vbenchmark/templates/nextjs-supabase/src/lib/supabase/server.ts +32 -0
- package/refs/vbenchmark/templates/rust-axum/Cargo.lock +2371 -0
- package/refs/vbenchmark/templates/rust-axum/Cargo.toml +16 -0
- package/refs/vbenchmark/templates/rust-axum/docker-compose.yaml +34 -0
- package/refs/vbenchmark/templates/rust-axum/migrations/20240101000000_init.sql +20 -0
- package/refs/vbenchmark/templates/rust-axum/src/main.rs +121 -0
- package/refs/vbenchmark/tsconfig.base.json +18 -0
- package/refs/vbenchmark/turbo.json +23 -0
- package/refs/vbenchmark/vercel.json +10 -0
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
# Debug Template
|
|
2
|
+
|
|
3
|
+
Template for `.planning/debug/[slug].md` — active debug session tracking.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## File Template
|
|
8
|
+
|
|
9
|
+
```markdown
|
|
10
|
+
---
|
|
11
|
+
status: gathering | investigating | fixing | verifying | awaiting_human_verify | resolved
|
|
12
|
+
trigger: "[verbatim user input]"
|
|
13
|
+
created: [ISO timestamp]
|
|
14
|
+
updated: [ISO timestamp]
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Current Focus
|
|
18
|
+
<!-- OVERWRITE on each update - always reflects NOW -->
|
|
19
|
+
|
|
20
|
+
hypothesis: [current theory being tested]
|
|
21
|
+
test: [how testing it]
|
|
22
|
+
expecting: [what result means if true/false]
|
|
23
|
+
next_action: [immediate next step]
|
|
24
|
+
|
|
25
|
+
## Symptoms
|
|
26
|
+
<!-- Written during gathering, then immutable -->
|
|
27
|
+
|
|
28
|
+
expected: [what should happen]
|
|
29
|
+
actual: [what actually happens]
|
|
30
|
+
errors: [error messages if any]
|
|
31
|
+
reproduction: [how to trigger]
|
|
32
|
+
started: [when it broke / always broken]
|
|
33
|
+
|
|
34
|
+
## Eliminated
|
|
35
|
+
<!-- APPEND only - prevents re-investigating after /clear -->
|
|
36
|
+
|
|
37
|
+
- hypothesis: [theory that was wrong]
|
|
38
|
+
evidence: [what disproved it]
|
|
39
|
+
timestamp: [when eliminated]
|
|
40
|
+
|
|
41
|
+
## Evidence
|
|
42
|
+
<!-- APPEND only - facts discovered during investigation -->
|
|
43
|
+
|
|
44
|
+
- timestamp: [when found]
|
|
45
|
+
checked: [what was examined]
|
|
46
|
+
found: [what was observed]
|
|
47
|
+
implication: [what this means]
|
|
48
|
+
|
|
49
|
+
## Resolution
|
|
50
|
+
<!-- OVERWRITE as understanding evolves -->
|
|
51
|
+
|
|
52
|
+
root_cause: [empty until found]
|
|
53
|
+
fix: [empty until applied]
|
|
54
|
+
verification: [empty until verified]
|
|
55
|
+
files_changed: []
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
<section_rules>
|
|
61
|
+
|
|
62
|
+
**Frontmatter (status, trigger, timestamps):**
|
|
63
|
+
- `status`: OVERWRITE - reflects current phase
|
|
64
|
+
- `trigger`: IMMUTABLE - verbatim user input, never changes
|
|
65
|
+
- `created`: IMMUTABLE - set once
|
|
66
|
+
- `updated`: OVERWRITE - update on every change
|
|
67
|
+
|
|
68
|
+
**Current Focus:**
|
|
69
|
+
- OVERWRITE entirely on each update
|
|
70
|
+
- Always reflects what Claude is doing RIGHT NOW
|
|
71
|
+
- If Claude reads this after /clear, it knows exactly where to resume
|
|
72
|
+
- Fields: hypothesis, test, expecting, next_action
|
|
73
|
+
|
|
74
|
+
**Symptoms:**
|
|
75
|
+
- Written during initial gathering phase
|
|
76
|
+
- IMMUTABLE after gathering complete
|
|
77
|
+
- Reference point for what we're trying to fix
|
|
78
|
+
- Fields: expected, actual, errors, reproduction, started
|
|
79
|
+
|
|
80
|
+
**Eliminated:**
|
|
81
|
+
- APPEND only - never remove entries
|
|
82
|
+
- Prevents re-investigating dead ends after context reset
|
|
83
|
+
- Each entry: hypothesis, evidence that disproved it, timestamp
|
|
84
|
+
- Critical for efficiency across /clear boundaries
|
|
85
|
+
|
|
86
|
+
**Evidence:**
|
|
87
|
+
- APPEND only - never remove entries
|
|
88
|
+
- Facts discovered during investigation
|
|
89
|
+
- Each entry: timestamp, what checked, what found, implication
|
|
90
|
+
- Builds the case for root cause
|
|
91
|
+
|
|
92
|
+
**Resolution:**
|
|
93
|
+
- OVERWRITE as understanding evolves
|
|
94
|
+
- May update multiple times as fixes are tried
|
|
95
|
+
- Final state shows confirmed root cause and verified fix
|
|
96
|
+
- Fields: root_cause, fix, verification, files_changed
|
|
97
|
+
|
|
98
|
+
</section_rules>
|
|
99
|
+
|
|
100
|
+
<lifecycle>
|
|
101
|
+
|
|
102
|
+
**Creation:** Immediately when /gsd:debug is called
|
|
103
|
+
- Create file with trigger from user input
|
|
104
|
+
- Set status to "gathering"
|
|
105
|
+
- Current Focus: next_action = "gather symptoms"
|
|
106
|
+
- Symptoms: empty, to be filled
|
|
107
|
+
|
|
108
|
+
**During symptom gathering:**
|
|
109
|
+
- Update Symptoms section as user answers questions
|
|
110
|
+
- Update Current Focus with each question
|
|
111
|
+
- When complete: status → "investigating"
|
|
112
|
+
|
|
113
|
+
**During investigation:**
|
|
114
|
+
- OVERWRITE Current Focus with each hypothesis
|
|
115
|
+
- APPEND to Evidence with each finding
|
|
116
|
+
- APPEND to Eliminated when hypothesis disproved
|
|
117
|
+
- Update timestamp in frontmatter
|
|
118
|
+
|
|
119
|
+
**During fixing:**
|
|
120
|
+
- status → "fixing"
|
|
121
|
+
- Update Resolution.root_cause when confirmed
|
|
122
|
+
- Update Resolution.fix when applied
|
|
123
|
+
- Update Resolution.files_changed
|
|
124
|
+
|
|
125
|
+
**During verification:**
|
|
126
|
+
- status → "verifying"
|
|
127
|
+
- Update Resolution.verification with results
|
|
128
|
+
- If verification fails: status → "investigating", try again
|
|
129
|
+
|
|
130
|
+
**After self-verification passes:**
|
|
131
|
+
- status -> "awaiting_human_verify"
|
|
132
|
+
- Request explicit user confirmation in a checkpoint
|
|
133
|
+
- Do NOT move file to resolved yet
|
|
134
|
+
|
|
135
|
+
**On resolution:**
|
|
136
|
+
- status → "resolved"
|
|
137
|
+
- Move file to .planning/debug/resolved/ (only after user confirms fix)
|
|
138
|
+
|
|
139
|
+
</lifecycle>
|
|
140
|
+
|
|
141
|
+
<resume_behavior>
|
|
142
|
+
|
|
143
|
+
When Claude reads this file after /clear:
|
|
144
|
+
|
|
145
|
+
1. Parse frontmatter → know status
|
|
146
|
+
2. Read Current Focus → know exactly what was happening
|
|
147
|
+
3. Read Eliminated → know what NOT to retry
|
|
148
|
+
4. Read Evidence → know what's been learned
|
|
149
|
+
5. Continue from next_action
|
|
150
|
+
|
|
151
|
+
The file IS the debugging brain. Claude should be able to resume perfectly from any interruption point.
|
|
152
|
+
|
|
153
|
+
</resume_behavior>
|
|
154
|
+
|
|
155
|
+
<size_constraint>
|
|
156
|
+
|
|
157
|
+
Keep debug files focused:
|
|
158
|
+
- Evidence entries: 1-2 lines each, just the facts
|
|
159
|
+
- Eliminated: brief - hypothesis + why it failed
|
|
160
|
+
- No narrative prose - structured data only
|
|
161
|
+
|
|
162
|
+
If evidence grows very large (10+ entries), consider whether you're going in circles. Check Eliminated to ensure you're not re-treading.
|
|
163
|
+
|
|
164
|
+
</size_constraint>
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
# UAT Template
|
|
2
|
+
|
|
3
|
+
Template for `.planning/phases/XX-name/{phase_num}-UAT.md` — persistent UAT session tracking.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## File Template
|
|
8
|
+
|
|
9
|
+
```markdown
|
|
10
|
+
---
|
|
11
|
+
status: testing | complete | diagnosed
|
|
12
|
+
phase: XX-name
|
|
13
|
+
source: [list of SUMMARY.md files tested]
|
|
14
|
+
started: [ISO timestamp]
|
|
15
|
+
updated: [ISO timestamp]
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Current Test
|
|
19
|
+
<!-- OVERWRITE each test - shows where we are -->
|
|
20
|
+
|
|
21
|
+
number: [N]
|
|
22
|
+
name: [test name]
|
|
23
|
+
expected: |
|
|
24
|
+
[what user should observe]
|
|
25
|
+
awaiting: user response
|
|
26
|
+
|
|
27
|
+
## Tests
|
|
28
|
+
|
|
29
|
+
### 1. [Test Name]
|
|
30
|
+
expected: [observable behavior - what user should see]
|
|
31
|
+
result: [pending]
|
|
32
|
+
|
|
33
|
+
### 2. [Test Name]
|
|
34
|
+
expected: [observable behavior]
|
|
35
|
+
result: pass
|
|
36
|
+
|
|
37
|
+
### 3. [Test Name]
|
|
38
|
+
expected: [observable behavior]
|
|
39
|
+
result: issue
|
|
40
|
+
reported: "[verbatim user response]"
|
|
41
|
+
severity: major
|
|
42
|
+
|
|
43
|
+
### 4. [Test Name]
|
|
44
|
+
expected: [observable behavior]
|
|
45
|
+
result: skipped
|
|
46
|
+
reason: [why skipped]
|
|
47
|
+
|
|
48
|
+
...
|
|
49
|
+
|
|
50
|
+
## Summary
|
|
51
|
+
|
|
52
|
+
total: [N]
|
|
53
|
+
passed: [N]
|
|
54
|
+
issues: [N]
|
|
55
|
+
pending: [N]
|
|
56
|
+
skipped: [N]
|
|
57
|
+
|
|
58
|
+
## Gaps
|
|
59
|
+
|
|
60
|
+
<!-- YAML format for plan-phase --gaps consumption -->
|
|
61
|
+
- truth: "[expected behavior from test]"
|
|
62
|
+
status: failed
|
|
63
|
+
reason: "User reported: [verbatim response]"
|
|
64
|
+
severity: blocker | major | minor | cosmetic
|
|
65
|
+
test: [N]
|
|
66
|
+
root_cause: "" # Filled by diagnosis
|
|
67
|
+
artifacts: [] # Filled by diagnosis
|
|
68
|
+
missing: [] # Filled by diagnosis
|
|
69
|
+
debug_session: "" # Filled by diagnosis
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
<section_rules>
|
|
75
|
+
|
|
76
|
+
**Frontmatter:**
|
|
77
|
+
- `status`: OVERWRITE - "testing" or "complete"
|
|
78
|
+
- `phase`: IMMUTABLE - set on creation
|
|
79
|
+
- `source`: IMMUTABLE - SUMMARY files being tested
|
|
80
|
+
- `started`: IMMUTABLE - set on creation
|
|
81
|
+
- `updated`: OVERWRITE - update on every change
|
|
82
|
+
|
|
83
|
+
**Current Test:**
|
|
84
|
+
- OVERWRITE entirely on each test transition
|
|
85
|
+
- Shows which test is active and what's awaited
|
|
86
|
+
- On completion: "[testing complete]"
|
|
87
|
+
|
|
88
|
+
**Tests:**
|
|
89
|
+
- Each test: OVERWRITE result field when user responds
|
|
90
|
+
- `result` values: [pending], pass, issue, skipped
|
|
91
|
+
- If issue: add `reported` (verbatim) and `severity` (inferred)
|
|
92
|
+
- If skipped: add `reason` if provided
|
|
93
|
+
|
|
94
|
+
**Summary:**
|
|
95
|
+
- OVERWRITE counts after each response
|
|
96
|
+
- Tracks: total, passed, issues, pending, skipped
|
|
97
|
+
|
|
98
|
+
**Gaps:**
|
|
99
|
+
- APPEND only when issue found (YAML format)
|
|
100
|
+
- After diagnosis: fill `root_cause`, `artifacts`, `missing`, `debug_session`
|
|
101
|
+
- This section feeds directly into /gsd:plan-phase --gaps
|
|
102
|
+
|
|
103
|
+
</section_rules>
|
|
104
|
+
|
|
105
|
+
<diagnosis_lifecycle>
|
|
106
|
+
|
|
107
|
+
**After testing complete (status: complete), if gaps exist:**
|
|
108
|
+
|
|
109
|
+
1. User runs diagnosis (from verify-work offer or manually)
|
|
110
|
+
2. diagnose-issues workflow spawns parallel debug agents
|
|
111
|
+
3. Each agent investigates one gap, returns root cause
|
|
112
|
+
4. UAT.md Gaps section updated with diagnosis:
|
|
113
|
+
- Each gap gets `root_cause`, `artifacts`, `missing`, `debug_session` filled
|
|
114
|
+
5. status → "diagnosed"
|
|
115
|
+
6. Ready for /gsd:plan-phase --gaps with root causes
|
|
116
|
+
|
|
117
|
+
**After diagnosis:**
|
|
118
|
+
```yaml
|
|
119
|
+
## Gaps
|
|
120
|
+
|
|
121
|
+
- truth: "Comment appears immediately after submission"
|
|
122
|
+
status: failed
|
|
123
|
+
reason: "User reported: works but doesn't show until I refresh the page"
|
|
124
|
+
severity: major
|
|
125
|
+
test: 2
|
|
126
|
+
root_cause: "useEffect in CommentList.tsx missing commentCount dependency"
|
|
127
|
+
artifacts:
|
|
128
|
+
- path: "src/components/CommentList.tsx"
|
|
129
|
+
issue: "useEffect missing dependency"
|
|
130
|
+
missing:
|
|
131
|
+
- "Add commentCount to useEffect dependency array"
|
|
132
|
+
debug_session: ".planning/debug/comment-not-refreshing.md"
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
</diagnosis_lifecycle>
|
|
136
|
+
|
|
137
|
+
<lifecycle>
|
|
138
|
+
|
|
139
|
+
**Creation:** When /gsd:verify-work starts new session
|
|
140
|
+
- Extract tests from SUMMARY.md files
|
|
141
|
+
- Set status to "testing"
|
|
142
|
+
- Current Test points to test 1
|
|
143
|
+
- All tests have result: [pending]
|
|
144
|
+
|
|
145
|
+
**During testing:**
|
|
146
|
+
- Present test from Current Test section
|
|
147
|
+
- User responds with pass confirmation or issue description
|
|
148
|
+
- Update test result (pass/issue/skipped)
|
|
149
|
+
- Update Summary counts
|
|
150
|
+
- If issue: append to Gaps section (YAML format), infer severity
|
|
151
|
+
- Move Current Test to next pending test
|
|
152
|
+
|
|
153
|
+
**On completion:**
|
|
154
|
+
- status → "complete"
|
|
155
|
+
- Current Test → "[testing complete]"
|
|
156
|
+
- Commit file
|
|
157
|
+
- Present summary with next steps
|
|
158
|
+
|
|
159
|
+
**Resume after /clear:**
|
|
160
|
+
1. Read frontmatter → know phase and status
|
|
161
|
+
2. Read Current Test → know where we are
|
|
162
|
+
3. Find first [pending] result → continue from there
|
|
163
|
+
4. Summary shows progress so far
|
|
164
|
+
|
|
165
|
+
</lifecycle>
|
|
166
|
+
|
|
167
|
+
<severity_guide>
|
|
168
|
+
|
|
169
|
+
Severity is INFERRED from user's natural language, never asked.
|
|
170
|
+
|
|
171
|
+
| User describes | Infer |
|
|
172
|
+
|----------------|-------|
|
|
173
|
+
| Crash, error, exception, fails completely, unusable | blocker |
|
|
174
|
+
| Doesn't work, nothing happens, wrong behavior, missing | major |
|
|
175
|
+
| Works but..., slow, weird, minor, small issue | minor |
|
|
176
|
+
| Color, font, spacing, alignment, visual, looks off | cosmetic |
|
|
177
|
+
|
|
178
|
+
Default: **major** (safe default, user can clarify if wrong)
|
|
179
|
+
|
|
180
|
+
</severity_guide>
|
|
181
|
+
|
|
182
|
+
<good_example>
|
|
183
|
+
```markdown
|
|
184
|
+
---
|
|
185
|
+
status: diagnosed
|
|
186
|
+
phase: 04-comments
|
|
187
|
+
source: 04-01-SUMMARY.md, 04-02-SUMMARY.md
|
|
188
|
+
started: 2025-01-15T10:30:00Z
|
|
189
|
+
updated: 2025-01-15T10:45:00Z
|
|
190
|
+
---
|
|
191
|
+
|
|
192
|
+
## Current Test
|
|
193
|
+
|
|
194
|
+
[testing complete]
|
|
195
|
+
|
|
196
|
+
## Tests
|
|
197
|
+
|
|
198
|
+
### 1. View Comments on Post
|
|
199
|
+
expected: Comments section expands, shows count and comment list
|
|
200
|
+
result: pass
|
|
201
|
+
|
|
202
|
+
### 2. Create Top-Level Comment
|
|
203
|
+
expected: Submit comment via rich text editor, appears in list with author info
|
|
204
|
+
result: issue
|
|
205
|
+
reported: "works but doesn't show until I refresh the page"
|
|
206
|
+
severity: major
|
|
207
|
+
|
|
208
|
+
### 3. Reply to a Comment
|
|
209
|
+
expected: Click Reply, inline composer appears, submit shows nested reply
|
|
210
|
+
result: pass
|
|
211
|
+
|
|
212
|
+
### 4. Visual Nesting
|
|
213
|
+
expected: 3+ level thread shows indentation, left borders, caps at reasonable depth
|
|
214
|
+
result: pass
|
|
215
|
+
|
|
216
|
+
### 5. Delete Own Comment
|
|
217
|
+
expected: Click delete on own comment, removed or shows [deleted] if has replies
|
|
218
|
+
result: pass
|
|
219
|
+
|
|
220
|
+
### 6. Comment Count
|
|
221
|
+
expected: Post shows accurate count, increments when adding comment
|
|
222
|
+
result: pass
|
|
223
|
+
|
|
224
|
+
## Summary
|
|
225
|
+
|
|
226
|
+
total: 6
|
|
227
|
+
passed: 5
|
|
228
|
+
issues: 1
|
|
229
|
+
pending: 0
|
|
230
|
+
skipped: 0
|
|
231
|
+
|
|
232
|
+
## Gaps
|
|
233
|
+
|
|
234
|
+
- truth: "Comment appears immediately after submission in list"
|
|
235
|
+
status: failed
|
|
236
|
+
reason: "User reported: works but doesn't show until I refresh the page"
|
|
237
|
+
severity: major
|
|
238
|
+
test: 2
|
|
239
|
+
root_cause: "useEffect in CommentList.tsx missing commentCount dependency"
|
|
240
|
+
artifacts:
|
|
241
|
+
- path: "src/components/CommentList.tsx"
|
|
242
|
+
issue: "useEffect missing dependency"
|
|
243
|
+
missing:
|
|
244
|
+
- "Add commentCount to useEffect dependency array"
|
|
245
|
+
debug_session: ".planning/debug/comment-not-refreshing.md"
|
|
246
|
+
```
|
|
247
|
+
</good_example>
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
---
|
|
2
|
+
phase: {N}
|
|
3
|
+
slug: {phase-slug}
|
|
4
|
+
status: draft
|
|
5
|
+
nyquist_compliant: false
|
|
6
|
+
wave_0_complete: false
|
|
7
|
+
created: {date}
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Phase {N} — Validation Strategy
|
|
11
|
+
|
|
12
|
+
> Per-phase validation contract for feedback sampling during execution.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Test Infrastructure
|
|
17
|
+
|
|
18
|
+
| Property | Value |
|
|
19
|
+
|----------|-------|
|
|
20
|
+
| **Framework** | {pytest 7.x / jest 29.x / vitest / go test / other} |
|
|
21
|
+
| **Config file** | {path or "none — Wave 0 installs"} |
|
|
22
|
+
| **Quick run command** | `{quick command}` |
|
|
23
|
+
| **Full suite command** | `{full command}` |
|
|
24
|
+
| **Estimated runtime** | ~{N} seconds |
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Sampling Rate
|
|
29
|
+
|
|
30
|
+
- **After every task commit:** Run `{quick run command}`
|
|
31
|
+
- **After every plan wave:** Run `{full suite command}`
|
|
32
|
+
- **Before `/gsd:verify-work`:** Full suite must be green
|
|
33
|
+
- **Max feedback latency:** {N} seconds
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## Per-Task Verification Map
|
|
38
|
+
|
|
39
|
+
| Task ID | Plan | Wave | Requirement | Test Type | Automated Command | File Exists | Status |
|
|
40
|
+
|---------|------|------|-------------|-----------|-------------------|-------------|--------|
|
|
41
|
+
| {N}-01-01 | 01 | 1 | REQ-{XX} | unit | `{command}` | ✅ / ❌ W0 | ⬜ pending |
|
|
42
|
+
|
|
43
|
+
*Status: ⬜ pending · ✅ green · ❌ red · ⚠️ flaky*
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## Wave 0 Requirements
|
|
48
|
+
|
|
49
|
+
- [ ] `{tests/test_file.py}` — stubs for REQ-{XX}
|
|
50
|
+
- [ ] `{tests/conftest.py}` — shared fixtures
|
|
51
|
+
- [ ] `{framework install}` — if no framework detected
|
|
52
|
+
|
|
53
|
+
*If none: "Existing infrastructure covers all phase requirements."*
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## Manual-Only Verifications
|
|
58
|
+
|
|
59
|
+
| Behavior | Requirement | Why Manual | Test Instructions |
|
|
60
|
+
|----------|-------------|------------|-------------------|
|
|
61
|
+
| {behavior} | REQ-{XX} | {reason} | {steps} |
|
|
62
|
+
|
|
63
|
+
*If none: "All phase behaviors have automated verification."*
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Validation Sign-Off
|
|
68
|
+
|
|
69
|
+
- [ ] All tasks have `<automated>` verify or Wave 0 dependencies
|
|
70
|
+
- [ ] Sampling continuity: no 3 consecutive tasks without automated verify
|
|
71
|
+
- [ ] Wave 0 covers all MISSING references
|
|
72
|
+
- [ ] No watch-mode flags
|
|
73
|
+
- [ ] Feedback latency < {N}s
|
|
74
|
+
- [ ] `nyquist_compliant: true` set in frontmatter
|
|
75
|
+
|
|
76
|
+
**Approval:** {pending / approved YYYY-MM-DD}
|