@windagency/valora 2.0.1
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/README.md +505 -0
- package/bin/mcp.js +10 -0
- package/bin/valora.js +10 -0
- package/data/agents/.gitkeep +0 -0
- package/data/agents/_meta/.gitkeep +0 -0
- package/data/agents/_meta/schema.json +352 -0
- package/data/agents/_template.md +72 -0
- package/data/agents/asserter.md +821 -0
- package/data/agents/expertises/.gitkeep +0 -0
- package/data/agents/expertises/_template/.gitkeep +0 -0
- package/data/agents/expertises/_template/registry.json +14 -0
- package/data/agents/lead.md +566 -0
- package/data/agents/platform-engineer.md +486 -0
- package/data/agents/product-manager.md +557 -0
- package/data/agents/qa.md +593 -0
- package/data/agents/registry.json +766 -0
- package/data/agents/secops-engineer.md +693 -0
- package/data/agents/software-engineer-typescript-backend.md +698 -0
- package/data/agents/software-engineer-typescript-frontend-react.md +512 -0
- package/data/agents/software-engineer-typescript-frontend.md +460 -0
- package/data/agents/software-engineer-typescript.md +371 -0
- package/data/agents/ui-ux-designer.md +534 -0
- package/data/commands/.gitkeep +0 -0
- package/data/commands/_meta/.gitkeep +0 -0
- package/data/commands/_meta/schema.json +317 -0
- package/data/commands/_template.md +65 -0
- package/data/commands/assert.md +895 -0
- package/data/commands/commit.md +1078 -0
- package/data/commands/create-backlog.md +402 -0
- package/data/commands/create-pr.md +401 -0
- package/data/commands/create-prd.md +242 -0
- package/data/commands/feedback.md +600 -0
- package/data/commands/fetch-task.md +665 -0
- package/data/commands/gather-knowledge.md +856 -0
- package/data/commands/generate-all-documentation.md +550 -0
- package/data/commands/generate-docs.md +738 -0
- package/data/commands/implement.md +511 -0
- package/data/commands/plan-architecture.md +269 -0
- package/data/commands/plan-implementation.md +312 -0
- package/data/commands/plan.md +582 -0
- package/data/commands/pre-check.md +553 -0
- package/data/commands/refine-specs.md +271 -0
- package/data/commands/refine-task.md +957 -0
- package/data/commands/registry.json +283 -0
- package/data/commands/review-code.md +680 -0
- package/data/commands/review-functional.md +235 -0
- package/data/commands/review-plan.md +546 -0
- package/data/commands/test.md +263 -0
- package/data/commands/validate-coverage.md +424 -0
- package/data/commands/validate-parallel.md +281 -0
- package/data/commands/validate-plan.md +367 -0
- package/data/config.default.json +40 -0
- package/data/external-mcp.default.json +326 -0
- package/data/hooks/enforce-modern-cli.sh +123 -0
- package/data/hooks/tests/enforce-modern-cli.test.sh +135 -0
- package/data/hooks.default.json +17 -0
- package/data/prompts/.gitkeep +0 -0
- package/data/prompts/00_generator/.gitkeep +0 -0
- package/data/prompts/00_generator/_template.md +25 -0
- package/data/prompts/00_generator/create_agent.md +97 -0
- package/data/prompts/00_generator/create_command.md +53 -0
- package/data/prompts/01_onboard/.gitkeep +0 -0
- package/data/prompts/01_onboard/analyze-clarity.md +413 -0
- package/data/prompts/01_onboard/analyze-documentation-requirements.md +543 -0
- package/data/prompts/01_onboard/analyze-patterns.md +288 -0
- package/data/prompts/01_onboard/analyze-requirements.md +809 -0
- package/data/prompts/01_onboard/collect-clarifications.md +374 -0
- package/data/prompts/01_onboard/fetch-task.md +409 -0
- package/data/prompts/01_onboard/map-dependencies.md +326 -0
- package/data/prompts/01_onboard/refine-requirements.md +638 -0
- package/data/prompts/01_onboard/refine-specifications.md +456 -0
- package/data/prompts/02_context/.gitkeep +0 -0
- package/data/prompts/02_context/analyze-change-scope.md +306 -0
- package/data/prompts/02_context/analyze-changes-for-review.md +292 -0
- package/data/prompts/02_context/analyze-codebase-changes.md +265 -0
- package/data/prompts/02_context/analyze-command-execution.md +231 -0
- package/data/prompts/02_context/analyze-commits-for-pr.md +258 -0
- package/data/prompts/02_context/analyze-functional-scope.md +380 -0
- package/data/prompts/02_context/analyze-git-branch.md +137 -0
- package/data/prompts/02_context/analyze-git-status.md +184 -0
- package/data/prompts/02_context/analyze-task-context.md +397 -0
- package/data/prompts/02_context/check-dependencies.md +394 -0
- package/data/prompts/02_context/extract-ticket-info.md +201 -0
- package/data/prompts/02_context/extract-ticket-references.md +157 -0
- package/data/prompts/02_context/gather-git-metrics.md +237 -0
- package/data/prompts/02_context/gather-validation-context.md +281 -0
- package/data/prompts/02_context/identify-completed-workflow.md +203 -0
- package/data/prompts/02_context/load-and-analyze-parallel.md +441 -0
- package/data/prompts/02_context/load-backlog.md +395 -0
- package/data/prompts/02_context/load-commit-template.md +186 -0
- package/data/prompts/02_context/load-documentation-context.md +382 -0
- package/data/prompts/02_context/load-implementation-context.md +360 -0
- package/data/prompts/02_context/load-plan-context.md +371 -0
- package/data/prompts/02_context/load-pr-template.md +198 -0
- package/data/prompts/02_context/load-prd.md +385 -0
- package/data/prompts/02_context/load-specifications.md +354 -0
- package/data/prompts/02_context/load-task.md +311 -0
- package/data/prompts/02_context/scan-codebase.md +270 -0
- package/data/prompts/02_context/understand-intent.md +145 -0
- package/data/prompts/02_context/use-modern-cli-tools.md +403 -0
- package/data/prompts/03_plan/.gitkeep +0 -0
- package/data/prompts/03_plan/assess-complexity.md +508 -0
- package/data/prompts/03_plan/assess-risks.md +677 -0
- package/data/prompts/03_plan/breakdown-implementation.md +895 -0
- package/data/prompts/03_plan/decompose-tasks.md +584 -0
- package/data/prompts/03_plan/define-architecture.md +347 -0
- package/data/prompts/03_plan/identify-dependencies.md +703 -0
- package/data/prompts/04_code/.gitkeep +0 -0
- package/data/prompts/04_code/calculate-version-bump.md +260 -0
- package/data/prompts/04_code/create-version-tag.md +321 -0
- package/data/prompts/04_code/determine-commit-strategy.md +300 -0
- package/data/prompts/04_code/determine-labels.md +380 -0
- package/data/prompts/04_code/determine-reviewers.md +324 -0
- package/data/prompts/04_code/generate-commit-messages.md +355 -0
- package/data/prompts/04_code/generate-pr-description.md +507 -0
- package/data/prompts/04_code/generate-pr-title.md +310 -0
- package/data/prompts/04_code/implement-changes.md +861 -0
- package/data/prompts/04_code/implement-tests.md +672 -0
- package/data/prompts/04_code/interactive-review.md +330 -0
- package/data/prompts/04_code/push-and-create-pr.md +435 -0
- package/data/prompts/04_code/stage-and-commit.md +424 -0
- package/data/prompts/04_code/validate-prerequisites.md +345 -0
- package/data/prompts/04_code/verify-implementation.md +705 -0
- package/data/prompts/05_review/.gitkeep +0 -0
- package/data/prompts/05_review/assess-code-quality.md +473 -0
- package/data/prompts/05_review/assess-constraints.md +368 -0
- package/data/prompts/05_review/calculate-performance-metrics.md +213 -0
- package/data/prompts/05_review/collect-user-feedback.md +236 -0
- package/data/prompts/05_review/evaluate-quality-outcomes.md +239 -0
- package/data/prompts/05_review/generate-commit-insights.md +344 -0
- package/data/prompts/05_review/identify-improvement-areas.md +275 -0
- package/data/prompts/05_review/synthesize-plan-assessment.md +778 -0
- package/data/prompts/05_review/synthesize-validation-report.md +369 -0
- package/data/prompts/05_review/validate-accessibility.md +303 -0
- package/data/prompts/05_review/validate-architecture.md +274 -0
- package/data/prompts/05_review/validate-backlog.md +620 -0
- package/data/prompts/05_review/validate-completeness.md +819 -0
- package/data/prompts/05_review/validate-documentation.md +453 -0
- package/data/prompts/05_review/validate-functional-requirements.md +432 -0
- package/data/prompts/05_review/validate-implementation-completeness.md +281 -0
- package/data/prompts/05_review/validate-maintainability.md +515 -0
- package/data/prompts/05_review/validate-performance.md +351 -0
- package/data/prompts/05_review/validate-pr-creation.md +260 -0
- package/data/prompts/05_review/validate-pr-readiness.md +315 -0
- package/data/prompts/05_review/validate-readiness.md +429 -0
- package/data/prompts/05_review/validate-risk-coverage.md +484 -0
- package/data/prompts/05_review/validate-security.md +260 -0
- package/data/prompts/05_review/validate-standards-compliance.md +204 -0
- package/data/prompts/05_review/validate-step-quality.md +445 -0
- package/data/prompts/05_review/validate-technical-feasibility.md +469 -0
- package/data/prompts/05_review/validate-test-strategy.md +556 -0
- package/data/prompts/05_review/validate-testability.md +532 -0
- package/data/prompts/05_review/validate-type-safety.md +200 -0
- package/data/prompts/05_review/verify-commits.md +388 -0
- package/data/prompts/06_test/.gitkeep +0 -0
- package/data/prompts/06_test/analyze-results.md +581 -0
- package/data/prompts/06_test/analyze-test-infrastructure.md +360 -0
- package/data/prompts/06_test/execute-tests.md +534 -0
- package/data/prompts/07_documentation/.gitkeep +0 -0
- package/data/prompts/07_documentation/apply-specification-refinement.md +304 -0
- package/data/prompts/07_documentation/apply-task-refinement.md +389 -0
- package/data/prompts/07_documentation/export-metrics.md +271 -0
- package/data/prompts/07_documentation/generate-all-domains-parallel.md +469 -0
- package/data/prompts/07_documentation/generate-backend-docs.md +322 -0
- package/data/prompts/07_documentation/generate-backlog-artifacts.md +720 -0
- package/data/prompts/07_documentation/generate-code-review-report.md +385 -0
- package/data/prompts/07_documentation/generate-feedback-report.md +299 -0
- package/data/prompts/07_documentation/generate-feedback-summary.md +164 -0
- package/data/prompts/07_documentation/generate-frontend-docs.md +309 -0
- package/data/prompts/07_documentation/generate-functional-review-report.md +410 -0
- package/data/prompts/07_documentation/generate-infrastructure-docs.md +630 -0
- package/data/prompts/07_documentation/generate-prd.md +197 -0
- package/data/prompts/07_documentation/persist-documentation.md +245 -0
- package/data/prompts/07_documentation/review-and-persist-parallel.md +459 -0
- package/data/prompts/07_documentation/update-changelog.md +399 -0
- package/data/prompts/07_documentation/update-inline-docs.md +574 -0
- package/data/prompts/07_documentation/update-knowledge-base.md +352 -0
- package/data/prompts/08_deployment/.gitkeep +0 -0
- package/data/prompts/09_refactor/.gitkeep +0 -0
- package/data/prompts/10_maintenance/.gitkeep +0 -0
- package/data/prompts/_meta/.gitkeep +0 -0
- package/data/prompts/_meta/schema.json +411 -0
- package/data/prompts/_template.md +56 -0
- package/data/prompts/registry.json +2227 -0
- package/data/templates/.gitkeep +0 -0
- package/data/templates/ASSERT_COMPLETENESS.md +121 -0
- package/data/templates/ASSERT_SECURITY.md +186 -0
- package/data/templates/ASSERT_TYPESCRIPT.md +195 -0
- package/data/templates/BACKEND_DOC.md +241 -0
- package/data/templates/CHANGELOG.md +38 -0
- package/data/templates/DOC_API_QUICK.md +273 -0
- package/data/templates/DOC_COMPONENT_QUICK.md +180 -0
- package/data/templates/DOC_EXTRACTION_CHECKLIST.md +284 -0
- package/data/templates/FRONTEND_DOC.md +253 -0
- package/data/templates/GUIDED_COMPLETION.md +38 -0
- package/data/templates/INFRASTRUCTURE_DOC.md +138 -0
- package/data/templates/PLAN_ARCHITECTURE.md +190 -0
- package/data/templates/PLAN_IMPLEMENTATION.md +302 -0
- package/data/templates/PLAN_PATTERN_AUTH.md +366 -0
- package/data/templates/PLAN_PATTERN_BACKGROUND_JOB.md +403 -0
- package/data/templates/PLAN_PATTERN_DATABASE.md +287 -0
- package/data/templates/PLAN_PATTERN_REACT_FEATURE.md +303 -0
- package/data/templates/PLAN_PATTERN_REST_API.md +322 -0
- package/data/templates/PLAN_QUALITY_CHECKLIST.md +167 -0
- package/data/templates/PRD.md +110 -0
- package/data/templates/PULL_REQUEST.md +30 -0
- package/data/templates/REVIEW_CODE_CHECKLIST.md +227 -0
- package/data/templates/TEST_COVERAGE_GATE.md +265 -0
- package/data/templates/TEST_GENERATION_REQUIREMENTS.md +437 -0
- package/data/templates/TROUBLESHOOTING.md +170 -0
- package/data/templates/USER_STORY.md +43 -0
- package/data/templates/plans/PATTERN_DATABASE_MIGRATION.md +551 -0
- package/data/templates/plans/PATTERN_REACT_COMPONENT.md +483 -0
- package/data/templates/plans/PATTERN_REST_API.md +428 -0
- package/data/templates/plans/README.md +174 -0
- package/data/templates/standards/TECHNICAL_DEFAULTS.md +724 -0
- package/dist/cleanup/coordinator.d.ts +26 -0
- package/dist/cleanup/coordinator.d.ts.map +1 -0
- package/dist/cleanup/coordinator.js +167 -0
- package/dist/cleanup/coordinator.js.map +1 -0
- package/dist/cleanup/index.d.ts +5 -0
- package/dist/cleanup/index.d.ts.map +1 -0
- package/dist/cleanup/index.js +5 -0
- package/dist/cleanup/index.js.map +1 -0
- package/dist/cli/autocomplete.d.ts +65 -0
- package/dist/cli/autocomplete.d.ts.map +1 -0
- package/dist/cli/autocomplete.js +422 -0
- package/dist/cli/autocomplete.js.map +1 -0
- package/dist/cli/command-adapter.interface.d.ts +98 -0
- package/dist/cli/command-adapter.interface.d.ts.map +1 -0
- package/dist/cli/command-adapter.interface.js +13 -0
- package/dist/cli/command-adapter.interface.js.map +1 -0
- package/dist/cli/command-error-handler.d.ts +69 -0
- package/dist/cli/command-error-handler.d.ts.map +1 -0
- package/dist/cli/command-error-handler.js +239 -0
- package/dist/cli/command-error-handler.js.map +1 -0
- package/dist/cli/command-executor.d.ts +146 -0
- package/dist/cli/command-executor.d.ts.map +1 -0
- package/dist/cli/command-executor.js +479 -0
- package/dist/cli/command-executor.js.map +1 -0
- package/dist/cli/command-palette.d.ts +56 -0
- package/dist/cli/command-palette.d.ts.map +1 -0
- package/dist/cli/command-palette.js +246 -0
- package/dist/cli/command-palette.js.map +1 -0
- package/dist/cli/command-resolver.d.ts +42 -0
- package/dist/cli/command-resolver.d.ts.map +1 -0
- package/dist/cli/command-resolver.js +140 -0
- package/dist/cli/command-resolver.js.map +1 -0
- package/dist/cli/command-suggestions.d.ts +49 -0
- package/dist/cli/command-suggestions.d.ts.map +1 -0
- package/dist/cli/command-suggestions.js +209 -0
- package/dist/cli/command-suggestions.js.map +1 -0
- package/dist/cli/command-templates.d.ts +83 -0
- package/dist/cli/command-templates.d.ts.map +1 -0
- package/dist/cli/command-templates.js +457 -0
- package/dist/cli/command-templates.js.map +1 -0
- package/dist/cli/command-validator.d.ts +78 -0
- package/dist/cli/command-validator.d.ts.map +1 -0
- package/dist/cli/command-validator.js +197 -0
- package/dist/cli/command-validator.js.map +1 -0
- package/dist/cli/command-wizard.d.ts +42 -0
- package/dist/cli/command-wizard.d.ts.map +1 -0
- package/dist/cli/command-wizard.js +328 -0
- package/dist/cli/command-wizard.js.map +1 -0
- package/dist/cli/commander-adapter.d.ts +91 -0
- package/dist/cli/commander-adapter.d.ts.map +1 -0
- package/dist/cli/commander-adapter.js +142 -0
- package/dist/cli/commander-adapter.js.map +1 -0
- package/dist/cli/commands/config.d.ts +9 -0
- package/dist/cli/commands/config.d.ts.map +1 -0
- package/dist/cli/commands/config.js +62 -0
- package/dist/cli/commands/config.js.map +1 -0
- package/dist/cli/commands/dashboard.d.ts +9 -0
- package/dist/cli/commands/dashboard.d.ts.map +1 -0
- package/dist/cli/commands/dashboard.js +31 -0
- package/dist/cli/commands/dashboard.js.map +1 -0
- package/dist/cli/commands/doctor.d.ts +9 -0
- package/dist/cli/commands/doctor.d.ts.map +1 -0
- package/dist/cli/commands/doctor.js +103 -0
- package/dist/cli/commands/doctor.js.map +1 -0
- package/dist/cli/commands/dynamic.d.ts +21 -0
- package/dist/cli/commands/dynamic.d.ts.map +1 -0
- package/dist/cli/commands/dynamic.js +516 -0
- package/dist/cli/commands/dynamic.js.map +1 -0
- package/dist/cli/commands/explore.d.ts +11 -0
- package/dist/cli/commands/explore.d.ts.map +1 -0
- package/dist/cli/commands/explore.js +815 -0
- package/dist/cli/commands/explore.js.map +1 -0
- package/dist/cli/commands/help.d.ts +9 -0
- package/dist/cli/commands/help.d.ts.map +1 -0
- package/dist/cli/commands/help.js +52 -0
- package/dist/cli/commands/help.js.map +1 -0
- package/dist/cli/commands/init.d.ts +9 -0
- package/dist/cli/commands/init.d.ts.map +1 -0
- package/dist/cli/commands/init.js +71 -0
- package/dist/cli/commands/init.js.map +1 -0
- package/dist/cli/commands/monitoring.d.ts +11 -0
- package/dist/cli/commands/monitoring.d.ts.map +1 -0
- package/dist/cli/commands/monitoring.js +358 -0
- package/dist/cli/commands/monitoring.js.map +1 -0
- package/dist/cli/commands/session.d.ts +9 -0
- package/dist/cli/commands/session.d.ts.map +1 -0
- package/dist/cli/commands/session.js +521 -0
- package/dist/cli/commands/session.js.map +1 -0
- package/dist/cli/config-builder.d.ts +53 -0
- package/dist/cli/config-builder.d.ts.map +1 -0
- package/dist/cli/config-builder.js +150 -0
- package/dist/cli/config-builder.js.map +1 -0
- package/dist/cli/document-approval.d.ts +71 -0
- package/dist/cli/document-approval.d.ts.map +1 -0
- package/dist/cli/document-approval.js +328 -0
- package/dist/cli/document-approval.js.map +1 -0
- package/dist/cli/document-output-processor.d.ts +125 -0
- package/dist/cli/document-output-processor.d.ts.map +1 -0
- package/dist/cli/document-output-processor.js +496 -0
- package/dist/cli/document-output-processor.js.map +1 -0
- package/dist/cli/execution-coordinator.d.ts +97 -0
- package/dist/cli/execution-coordinator.d.ts.map +1 -0
- package/dist/cli/execution-coordinator.js +489 -0
- package/dist/cli/execution-coordinator.js.map +1 -0
- package/dist/cli/first-run-setup.d.ts +12 -0
- package/dist/cli/first-run-setup.d.ts.map +1 -0
- package/dist/cli/first-run-setup.js +63 -0
- package/dist/cli/first-run-setup.js.map +1 -0
- package/dist/cli/flags.d.ts +53 -0
- package/dist/cli/flags.d.ts.map +1 -0
- package/dist/cli/flags.js +60 -0
- package/dist/cli/flags.js.map +1 -0
- package/dist/cli/index.d.ts +11 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +182 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/presenters/assert-presenter.d.ts +29 -0
- package/dist/cli/presenters/assert-presenter.d.ts.map +1 -0
- package/dist/cli/presenters/assert-presenter.js +224 -0
- package/dist/cli/presenters/assert-presenter.js.map +1 -0
- package/dist/cli/presenters/base-presenter.d.ts +80 -0
- package/dist/cli/presenters/base-presenter.d.ts.map +1 -0
- package/dist/cli/presenters/base-presenter.js +124 -0
- package/dist/cli/presenters/base-presenter.js.map +1 -0
- package/dist/cli/presenters/feedback-presenter.d.ts +24 -0
- package/dist/cli/presenters/feedback-presenter.d.ts.map +1 -0
- package/dist/cli/presenters/feedback-presenter.js +144 -0
- package/dist/cli/presenters/feedback-presenter.js.map +1 -0
- package/dist/cli/presenters/fetch-task-presenter.d.ts +26 -0
- package/dist/cli/presenters/fetch-task-presenter.d.ts.map +1 -0
- package/dist/cli/presenters/fetch-task-presenter.js +122 -0
- package/dist/cli/presenters/fetch-task-presenter.js.map +1 -0
- package/dist/cli/presenters/implementation-presenter.d.ts +28 -0
- package/dist/cli/presenters/implementation-presenter.d.ts.map +1 -0
- package/dist/cli/presenters/implementation-presenter.js +148 -0
- package/dist/cli/presenters/implementation-presenter.js.map +1 -0
- package/dist/cli/presenters/index.d.ts +14 -0
- package/dist/cli/presenters/index.d.ts.map +1 -0
- package/dist/cli/presenters/index.js +14 -0
- package/dist/cli/presenters/index.js.map +1 -0
- package/dist/cli/presenters/presenter-registry.d.ts +51 -0
- package/dist/cli/presenters/presenter-registry.d.ts.map +1 -0
- package/dist/cli/presenters/presenter-registry.js +89 -0
- package/dist/cli/presenters/presenter-registry.js.map +1 -0
- package/dist/cli/presenters/review-code-presenter.d.ts +34 -0
- package/dist/cli/presenters/review-code-presenter.d.ts.map +1 -0
- package/dist/cli/presenters/review-code-presenter.js +197 -0
- package/dist/cli/presenters/review-code-presenter.js.map +1 -0
- package/dist/cli/presenters/review-plan-presenter.d.ts +26 -0
- package/dist/cli/presenters/review-plan-presenter.d.ts.map +1 -0
- package/dist/cli/presenters/review-plan-presenter.js +130 -0
- package/dist/cli/presenters/review-plan-presenter.js.map +1 -0
- package/dist/cli/provider-fallback-service.d.ts +52 -0
- package/dist/cli/provider-fallback-service.d.ts.map +1 -0
- package/dist/cli/provider-fallback-service.js +134 -0
- package/dist/cli/provider-fallback-service.js.map +1 -0
- package/dist/cli/provider-mismatch-handler.d.ts +35 -0
- package/dist/cli/provider-mismatch-handler.d.ts.map +1 -0
- package/dist/cli/provider-mismatch-handler.js +133 -0
- package/dist/cli/provider-mismatch-handler.js.map +1 -0
- package/dist/cli/provider-resolver.d.ts +84 -0
- package/dist/cli/provider-resolver.d.ts.map +1 -0
- package/dist/cli/provider-resolver.js +360 -0
- package/dist/cli/provider-resolver.js.map +1 -0
- package/dist/cli/result-presenter.d.ts +68 -0
- package/dist/cli/result-presenter.d.ts.map +1 -0
- package/dist/cli/result-presenter.js +186 -0
- package/dist/cli/result-presenter.js.map +1 -0
- package/dist/cli/session-browser.d.ts +46 -0
- package/dist/cli/session-browser.d.ts.map +1 -0
- package/dist/cli/session-browser.js +343 -0
- package/dist/cli/session-browser.js.map +1 -0
- package/dist/cli/session-cleanup-adapter.d.ts +25 -0
- package/dist/cli/session-cleanup-adapter.d.ts.map +1 -0
- package/dist/cli/session-cleanup-adapter.js +95 -0
- package/dist/cli/session-cleanup-adapter.js.map +1 -0
- package/dist/cli/session-formatter.d.ts +107 -0
- package/dist/cli/session-formatter.d.ts.map +1 -0
- package/dist/cli/session-formatter.js +411 -0
- package/dist/cli/session-formatter.js.map +1 -0
- package/dist/cli/session-manager.d.ts +68 -0
- package/dist/cli/session-manager.d.ts.map +1 -0
- package/dist/cli/session-manager.js +153 -0
- package/dist/cli/session-manager.js.map +1 -0
- package/dist/cli/session-resume.d.ts +70 -0
- package/dist/cli/session-resume.d.ts.map +1 -0
- package/dist/cli/session-resume.js +322 -0
- package/dist/cli/session-resume.js.map +1 -0
- package/dist/cli/types/cli-options.types.d.ts +54 -0
- package/dist/cli/types/cli-options.types.d.ts.map +1 -0
- package/dist/cli/types/cli-options.types.js +8 -0
- package/dist/cli/types/cli-options.types.js.map +1 -0
- package/dist/cli/types/wizard.types.d.ts +51 -0
- package/dist/cli/types/wizard.types.d.ts.map +1 -0
- package/dist/cli/types/wizard.types.js +8 -0
- package/dist/cli/types/wizard.types.js.map +1 -0
- package/dist/config/constants.d.ts +192 -0
- package/dist/config/constants.d.ts.map +1 -0
- package/dist/config/constants.js +196 -0
- package/dist/config/constants.js.map +1 -0
- package/dist/config/index.d.ts +8 -0
- package/dist/config/index.d.ts.map +1 -0
- package/dist/config/index.js +8 -0
- package/dist/config/index.js.map +1 -0
- package/dist/config/interactive-wizard.d.ts +67 -0
- package/dist/config/interactive-wizard.d.ts.map +1 -0
- package/dist/config/interactive-wizard.js +325 -0
- package/dist/config/interactive-wizard.js.map +1 -0
- package/dist/config/loader.d.ts +113 -0
- package/dist/config/loader.d.ts.map +1 -0
- package/dist/config/loader.js +433 -0
- package/dist/config/loader.js.map +1 -0
- package/dist/config/providers.config.d.ts +90 -0
- package/dist/config/providers.config.d.ts.map +1 -0
- package/dist/config/providers.config.js +249 -0
- package/dist/config/providers.config.js.map +1 -0
- package/dist/config/schema.d.ts +1848 -0
- package/dist/config/schema.d.ts.map +1 -0
- package/dist/config/schema.js +167 -0
- package/dist/config/schema.js.map +1 -0
- package/dist/config/validation-helpers.d.ts +44 -0
- package/dist/config/validation-helpers.d.ts.map +1 -0
- package/dist/config/validation-helpers.js +239 -0
- package/dist/config/validation-helpers.js.map +1 -0
- package/dist/config/wizard.d.ts +10 -0
- package/dist/config/wizard.d.ts.map +1 -0
- package/dist/config/wizard.js +11 -0
- package/dist/config/wizard.js.map +1 -0
- package/dist/di/container.d.ts +92 -0
- package/dist/di/container.d.ts.map +1 -0
- package/dist/di/container.js +349 -0
- package/dist/di/container.js.map +1 -0
- package/dist/executor/agent-loader.d.ts +62 -0
- package/dist/executor/agent-loader.d.ts.map +1 -0
- package/dist/executor/agent-loader.js +172 -0
- package/dist/executor/agent-loader.js.map +1 -0
- package/dist/executor/command-discovery.d.ts +72 -0
- package/dist/executor/command-discovery.d.ts.map +1 -0
- package/dist/executor/command-discovery.js +248 -0
- package/dist/executor/command-discovery.js.map +1 -0
- package/dist/executor/command-isolation.executor.d.ts +53 -0
- package/dist/executor/command-isolation.executor.d.ts.map +1 -0
- package/dist/executor/command-isolation.executor.js +183 -0
- package/dist/executor/command-isolation.executor.js.map +1 -0
- package/dist/executor/command-loader.d.ts +34 -0
- package/dist/executor/command-loader.d.ts.map +1 -0
- package/dist/executor/command-loader.js +93 -0
- package/dist/executor/command-loader.js.map +1 -0
- package/dist/executor/command-validation.d.ts +21 -0
- package/dist/executor/command-validation.d.ts.map +1 -0
- package/dist/executor/command-validation.js +79 -0
- package/dist/executor/command-validation.js.map +1 -0
- package/dist/executor/dry-run-cache.d.ts +155 -0
- package/dist/executor/dry-run-cache.d.ts.map +1 -0
- package/dist/executor/dry-run-cache.js +191 -0
- package/dist/executor/dry-run-cache.js.map +1 -0
- package/dist/executor/dry-run-preview.service.d.ts +101 -0
- package/dist/executor/dry-run-preview.service.d.ts.map +1 -0
- package/dist/executor/dry-run-preview.service.js +250 -0
- package/dist/executor/dry-run-preview.service.js.map +1 -0
- package/dist/executor/dry-run-strategy.d.ts +137 -0
- package/dist/executor/dry-run-strategy.d.ts.map +1 -0
- package/dist/executor/dry-run-strategy.js +511 -0
- package/dist/executor/dry-run-strategy.js.map +1 -0
- package/dist/executor/escalation-detection.service.d.ts +48 -0
- package/dist/executor/escalation-detection.service.d.ts.map +1 -0
- package/dist/executor/escalation-detection.service.js +219 -0
- package/dist/executor/escalation-detection.service.js.map +1 -0
- package/dist/executor/escalation-handler.service.d.ts +57 -0
- package/dist/executor/escalation-handler.service.d.ts.map +1 -0
- package/dist/executor/escalation-handler.service.js +265 -0
- package/dist/executor/escalation-handler.service.js.map +1 -0
- package/dist/executor/execution-context.d.ts +107 -0
- package/dist/executor/execution-context.d.ts.map +1 -0
- package/dist/executor/execution-context.js +158 -0
- package/dist/executor/execution-context.js.map +1 -0
- package/dist/executor/execution-strategy.d.ts +104 -0
- package/dist/executor/execution-strategy.d.ts.map +1 -0
- package/dist/executor/execution-strategy.js +259 -0
- package/dist/executor/execution-strategy.js.map +1 -0
- package/dist/executor/hook-execution.service.d.ts +95 -0
- package/dist/executor/hook-execution.service.d.ts.map +1 -0
- package/dist/executor/hook-execution.service.js +371 -0
- package/dist/executor/hook-execution.service.js.map +1 -0
- package/dist/executor/index.d.ts +16 -0
- package/dist/executor/index.d.ts.map +1 -0
- package/dist/executor/index.js +16 -0
- package/dist/executor/index.js.map +1 -0
- package/dist/executor/input-pre-resolver.d.ts +61 -0
- package/dist/executor/input-pre-resolver.d.ts.map +1 -0
- package/dist/executor/input-pre-resolver.js +172 -0
- package/dist/executor/input-pre-resolver.js.map +1 -0
- package/dist/executor/interactive-question-handler.service.d.ts +79 -0
- package/dist/executor/interactive-question-handler.service.d.ts.map +1 -0
- package/dist/executor/interactive-question-handler.service.js +250 -0
- package/dist/executor/interactive-question-handler.service.js.map +1 -0
- package/dist/executor/message-builder.service.d.ts +83 -0
- package/dist/executor/message-builder.service.d.ts.map +1 -0
- package/dist/executor/message-builder.service.js +211 -0
- package/dist/executor/message-builder.service.js.map +1 -0
- package/dist/executor/output-parsing.service.d.ts +169 -0
- package/dist/executor/output-parsing.service.d.ts.map +1 -0
- package/dist/executor/output-parsing.service.js +566 -0
- package/dist/executor/output-parsing.service.js.map +1 -0
- package/dist/executor/pipeline-events.d.ts +15 -0
- package/dist/executor/pipeline-events.d.ts.map +1 -0
- package/dist/executor/pipeline-events.js +15 -0
- package/dist/executor/pipeline-events.js.map +1 -0
- package/dist/executor/pipeline-validator.d.ts +29 -0
- package/dist/executor/pipeline-validator.d.ts.map +1 -0
- package/dist/executor/pipeline-validator.js +105 -0
- package/dist/executor/pipeline-validator.js.map +1 -0
- package/dist/executor/pipeline.d.ts +55 -0
- package/dist/executor/pipeline.d.ts.map +1 -0
- package/dist/executor/pipeline.js +360 -0
- package/dist/executor/pipeline.js.map +1 -0
- package/dist/executor/project-guidance-loader.d.ts +69 -0
- package/dist/executor/project-guidance-loader.d.ts.map +1 -0
- package/dist/executor/project-guidance-loader.js +528 -0
- package/dist/executor/project-guidance-loader.js.map +1 -0
- package/dist/executor/prompt-loader.d.ts +39 -0
- package/dist/executor/prompt-loader.d.ts.map +1 -0
- package/dist/executor/prompt-loader.js +172 -0
- package/dist/executor/prompt-loader.js.map +1 -0
- package/dist/executor/stage-executor.d.ts +192 -0
- package/dist/executor/stage-executor.d.ts.map +1 -0
- package/dist/executor/stage-executor.js +790 -0
- package/dist/executor/stage-executor.js.map +1 -0
- package/dist/executor/stage-output-cache.d.ts +152 -0
- package/dist/executor/stage-output-cache.d.ts.map +1 -0
- package/dist/executor/stage-output-cache.js +426 -0
- package/dist/executor/stage-output-cache.js.map +1 -0
- package/dist/executor/stage-scheduler.d.ts +20 -0
- package/dist/executor/stage-scheduler.d.ts.map +1 -0
- package/dist/executor/stage-scheduler.js +59 -0
- package/dist/executor/stage-scheduler.js.map +1 -0
- package/dist/executor/stage-validation.service.d.ts +122 -0
- package/dist/executor/stage-validation.service.d.ts.map +1 -0
- package/dist/executor/stage-validation.service.js +377 -0
- package/dist/executor/stage-validation.service.js.map +1 -0
- package/dist/executor/tool-execution.service.d.ts +289 -0
- package/dist/executor/tool-execution.service.d.ts.map +1 -0
- package/dist/executor/tool-execution.service.js +1124 -0
- package/dist/executor/tool-execution.service.js.map +1 -0
- package/dist/executor/tools/dry-run-simulator.service.d.ts +107 -0
- package/dist/executor/tools/dry-run-simulator.service.d.ts.map +1 -0
- package/dist/executor/tools/dry-run-simulator.service.js +284 -0
- package/dist/executor/tools/dry-run-simulator.service.js.map +1 -0
- package/dist/executor/tools/pending-write-approver.service.d.ts +84 -0
- package/dist/executor/tools/pending-write-approver.service.d.ts.map +1 -0
- package/dist/executor/tools/pending-write-approver.service.js +197 -0
- package/dist/executor/tools/pending-write-approver.service.js.map +1 -0
- package/dist/executor/tools/search-tools.service.d.ts +44 -0
- package/dist/executor/tools/search-tools.service.d.ts.map +1 -0
- package/dist/executor/tools/search-tools.service.js +109 -0
- package/dist/executor/tools/search-tools.service.js.map +1 -0
- package/dist/executor/tools/session-tools.service.d.ts +74 -0
- package/dist/executor/tools/session-tools.service.d.ts.map +1 -0
- package/dist/executor/tools/session-tools.service.js +278 -0
- package/dist/executor/tools/session-tools.service.js.map +1 -0
- package/dist/executor/variable-resolution.service.d.ts +77 -0
- package/dist/executor/variable-resolution.service.d.ts.map +1 -0
- package/dist/executor/variable-resolution.service.js +115 -0
- package/dist/executor/variable-resolution.service.js.map +1 -0
- package/dist/executor/variables.d.ts +89 -0
- package/dist/executor/variables.d.ts.map +1 -0
- package/dist/executor/variables.js +306 -0
- package/dist/executor/variables.js.map +1 -0
- package/dist/exploration/collaboration-coordinator.d.ts +130 -0
- package/dist/exploration/collaboration-coordinator.d.ts.map +1 -0
- package/dist/exploration/collaboration-coordinator.js +332 -0
- package/dist/exploration/collaboration-coordinator.js.map +1 -0
- package/dist/exploration/container-manager.d.ts +121 -0
- package/dist/exploration/container-manager.d.ts.map +1 -0
- package/dist/exploration/container-manager.js +390 -0
- package/dist/exploration/container-manager.js.map +1 -0
- package/dist/exploration/dashboard-controls.d.ts +24 -0
- package/dist/exploration/dashboard-controls.d.ts.map +1 -0
- package/dist/exploration/dashboard-controls.js +221 -0
- package/dist/exploration/dashboard-controls.js.map +1 -0
- package/dist/exploration/dashboard-metrics.d.ts +62 -0
- package/dist/exploration/dashboard-metrics.d.ts.map +1 -0
- package/dist/exploration/dashboard-metrics.js +154 -0
- package/dist/exploration/dashboard-metrics.js.map +1 -0
- package/dist/exploration/dashboard-ui.d.ts +22 -0
- package/dist/exploration/dashboard-ui.d.ts.map +1 -0
- package/dist/exploration/dashboard-ui.js +206 -0
- package/dist/exploration/dashboard-ui.js.map +1 -0
- package/dist/exploration/execution-modes.d.ts +120 -0
- package/dist/exploration/execution-modes.d.ts.map +1 -0
- package/dist/exploration/execution-modes.js +388 -0
- package/dist/exploration/execution-modes.js.map +1 -0
- package/dist/exploration/exploration-events.d.ts +139 -0
- package/dist/exploration/exploration-events.d.ts.map +1 -0
- package/dist/exploration/exploration-events.js +261 -0
- package/dist/exploration/exploration-events.js.map +1 -0
- package/dist/exploration/exploration-state.d.ts +102 -0
- package/dist/exploration/exploration-state.d.ts.map +1 -0
- package/dist/exploration/exploration-state.js +307 -0
- package/dist/exploration/exploration-state.js.map +1 -0
- package/dist/exploration/merge-orchestrator.d.ts +175 -0
- package/dist/exploration/merge-orchestrator.d.ts.map +1 -0
- package/dist/exploration/merge-orchestrator.js +615 -0
- package/dist/exploration/merge-orchestrator.js.map +1 -0
- package/dist/exploration/orchestrator.d.ts +95 -0
- package/dist/exploration/orchestrator.d.ts.map +1 -0
- package/dist/exploration/orchestrator.js +404 -0
- package/dist/exploration/orchestrator.js.map +1 -0
- package/dist/exploration/resource-allocator.d.ts +108 -0
- package/dist/exploration/resource-allocator.d.ts.map +1 -0
- package/dist/exploration/resource-allocator.js +244 -0
- package/dist/exploration/resource-allocator.js.map +1 -0
- package/dist/exploration/result-comparator.d.ts +110 -0
- package/dist/exploration/result-comparator.d.ts.map +1 -0
- package/dist/exploration/result-comparator.js +363 -0
- package/dist/exploration/result-comparator.js.map +1 -0
- package/dist/exploration/safety-validator.d.ts +59 -0
- package/dist/exploration/safety-validator.d.ts.map +1 -0
- package/dist/exploration/safety-validator.js +339 -0
- package/dist/exploration/safety-validator.js.map +1 -0
- package/dist/exploration/shared-volume-manager.d.ts +72 -0
- package/dist/exploration/shared-volume-manager.d.ts.map +1 -0
- package/dist/exploration/shared-volume-manager.js +303 -0
- package/dist/exploration/shared-volume-manager.js.map +1 -0
- package/dist/exploration/worktree-manager-secure.d.ts +110 -0
- package/dist/exploration/worktree-manager-secure.d.ts.map +1 -0
- package/dist/exploration/worktree-manager-secure.js +347 -0
- package/dist/exploration/worktree-manager-secure.js.map +1 -0
- package/dist/exploration/worktree-manager.d.ts +97 -0
- package/dist/exploration/worktree-manager.d.ts.map +1 -0
- package/dist/exploration/worktree-manager.js +298 -0
- package/dist/exploration/worktree-manager.js.map +1 -0
- package/dist/llm/index.d.ts +10 -0
- package/dist/llm/index.d.ts.map +1 -0
- package/dist/llm/index.js +10 -0
- package/dist/llm/index.js.map +1 -0
- package/dist/llm/model-mapping-registry.d.ts +73 -0
- package/dist/llm/model-mapping-registry.d.ts.map +1 -0
- package/dist/llm/model-mapping-registry.js +197 -0
- package/dist/llm/model-mapping-registry.js.map +1 -0
- package/dist/llm/provider.interface.d.ts +60 -0
- package/dist/llm/provider.interface.d.ts.map +1 -0
- package/dist/llm/provider.interface.js +79 -0
- package/dist/llm/provider.interface.js.map +1 -0
- package/dist/llm/providers/anthropic.provider.d.ts +78 -0
- package/dist/llm/providers/anthropic.provider.d.ts.map +1 -0
- package/dist/llm/providers/anthropic.provider.js +456 -0
- package/dist/llm/providers/anthropic.provider.js.map +1 -0
- package/dist/llm/providers/cursor.provider.d.ts +61 -0
- package/dist/llm/providers/cursor.provider.d.ts.map +1 -0
- package/dist/llm/providers/cursor.provider.js +273 -0
- package/dist/llm/providers/cursor.provider.js.map +1 -0
- package/dist/llm/providers/google.provider.d.ts +43 -0
- package/dist/llm/providers/google.provider.d.ts.map +1 -0
- package/dist/llm/providers/google.provider.js +179 -0
- package/dist/llm/providers/google.provider.js.map +1 -0
- package/dist/llm/providers/index.d.ts +25 -0
- package/dist/llm/providers/index.d.ts.map +1 -0
- package/dist/llm/providers/index.js +28 -0
- package/dist/llm/providers/index.js.map +1 -0
- package/dist/llm/providers/openai.provider.d.ts +23 -0
- package/dist/llm/providers/openai.provider.d.ts.map +1 -0
- package/dist/llm/providers/openai.provider.js +193 -0
- package/dist/llm/providers/openai.provider.js.map +1 -0
- package/dist/llm/registry.d.ts +41 -0
- package/dist/llm/registry.d.ts.map +1 -0
- package/dist/llm/registry.js +88 -0
- package/dist/llm/registry.js.map +1 -0
- package/dist/mcp/command-discovery.service.d.ts +26 -0
- package/dist/mcp/command-discovery.service.d.ts.map +1 -0
- package/dist/mcp/command-discovery.service.js +65 -0
- package/dist/mcp/command-discovery.service.js.map +1 -0
- package/dist/mcp/context.d.ts +28 -0
- package/dist/mcp/context.d.ts.map +1 -0
- package/dist/mcp/context.js +34 -0
- package/dist/mcp/context.js.map +1 -0
- package/dist/mcp/external-client/tool-proxy.d.ts +103 -0
- package/dist/mcp/external-client/tool-proxy.d.ts.map +1 -0
- package/dist/mcp/external-client/tool-proxy.js +291 -0
- package/dist/mcp/external-client/tool-proxy.js.map +1 -0
- package/dist/mcp/external-mcp-integrator.d.ts +70 -0
- package/dist/mcp/external-mcp-integrator.d.ts.map +1 -0
- package/dist/mcp/external-mcp-integrator.js +161 -0
- package/dist/mcp/external-mcp-integrator.js.map +1 -0
- package/dist/mcp/mcp-approval-cache.service.d.ts +88 -0
- package/dist/mcp/mcp-approval-cache.service.d.ts.map +1 -0
- package/dist/mcp/mcp-approval-cache.service.js +257 -0
- package/dist/mcp/mcp-approval-cache.service.js.map +1 -0
- package/dist/mcp/mcp-approval-workflow.d.ts +92 -0
- package/dist/mcp/mcp-approval-workflow.d.ts.map +1 -0
- package/dist/mcp/mcp-approval-workflow.js +346 -0
- package/dist/mcp/mcp-approval-workflow.js.map +1 -0
- package/dist/mcp/mcp-audit-logger.service.d.ts +90 -0
- package/dist/mcp/mcp-audit-logger.service.d.ts.map +1 -0
- package/dist/mcp/mcp-audit-logger.service.js +264 -0
- package/dist/mcp/mcp-audit-logger.service.js.map +1 -0
- package/dist/mcp/mcp-availability.service.d.ts +84 -0
- package/dist/mcp/mcp-availability.service.d.ts.map +1 -0
- package/dist/mcp/mcp-availability.service.js +177 -0
- package/dist/mcp/mcp-availability.service.js.map +1 -0
- package/dist/mcp/mcp-client-manager.service.d.ts +103 -0
- package/dist/mcp/mcp-client-manager.service.d.ts.map +1 -0
- package/dist/mcp/mcp-client-manager.service.js +380 -0
- package/dist/mcp/mcp-client-manager.service.js.map +1 -0
- package/dist/mcp/mcp-tool-handler.d.ts +88 -0
- package/dist/mcp/mcp-tool-handler.d.ts.map +1 -0
- package/dist/mcp/mcp-tool-handler.js +207 -0
- package/dist/mcp/mcp-tool-handler.js.map +1 -0
- package/dist/mcp/request-handler.d.ts +44 -0
- package/dist/mcp/request-handler.d.ts.map +1 -0
- package/dist/mcp/request-handler.js +282 -0
- package/dist/mcp/request-handler.js.map +1 -0
- package/dist/mcp/sampling-service.d.ts +36 -0
- package/dist/mcp/sampling-service.d.ts.map +1 -0
- package/dist/mcp/sampling-service.js +147 -0
- package/dist/mcp/sampling-service.js.map +1 -0
- package/dist/mcp/server-manager.d.ts +36 -0
- package/dist/mcp/server-manager.d.ts.map +1 -0
- package/dist/mcp/server-manager.js +113 -0
- package/dist/mcp/server-manager.js.map +1 -0
- package/dist/mcp/server.d.ts +45 -0
- package/dist/mcp/server.d.ts.map +1 -0
- package/dist/mcp/server.js +269 -0
- package/dist/mcp/server.js.map +1 -0
- package/dist/mcp/shutdown-manager.d.ts +24 -0
- package/dist/mcp/shutdown-manager.d.ts.map +1 -0
- package/dist/mcp/shutdown-manager.js +59 -0
- package/dist/mcp/shutdown-manager.js.map +1 -0
- package/dist/mcp/system-monitor.d.ts +38 -0
- package/dist/mcp/system-monitor.d.ts.map +1 -0
- package/dist/mcp/system-monitor.js +80 -0
- package/dist/mcp/system-monitor.js.map +1 -0
- package/dist/mcp/tool-mapping.service.d.ts +35 -0
- package/dist/mcp/tool-mapping.service.d.ts.map +1 -0
- package/dist/mcp/tool-mapping.service.js +91 -0
- package/dist/mcp/tool-mapping.service.js.map +1 -0
- package/dist/mcp/tool-registry.d.ts +29 -0
- package/dist/mcp/tool-registry.d.ts.map +1 -0
- package/dist/mcp/tool-registry.js +52 -0
- package/dist/mcp/tool-registry.js.map +1 -0
- package/dist/mcp/types.d.ts +33 -0
- package/dist/mcp/types.d.ts.map +1 -0
- package/dist/mcp/types.js +7 -0
- package/dist/mcp/types.js.map +1 -0
- package/dist/output/activity-feed.d.ts +62 -0
- package/dist/output/activity-feed.d.ts.map +1 -0
- package/dist/output/activity-feed.js +170 -0
- package/dist/output/activity-feed.js.map +1 -0
- package/dist/output/box-formatter.d.ts +149 -0
- package/dist/output/box-formatter.d.ts.map +1 -0
- package/dist/output/box-formatter.js +239 -0
- package/dist/output/box-formatter.js.map +1 -0
- package/dist/output/cleanup-scheduler.d.ts +26 -0
- package/dist/output/cleanup-scheduler.d.ts.map +1 -0
- package/dist/output/cleanup-scheduler.js +115 -0
- package/dist/output/cleanup-scheduler.js.map +1 -0
- package/dist/output/color-adapter.d.ts +56 -0
- package/dist/output/color-adapter.d.ts.map +1 -0
- package/dist/output/color-adapter.interface.d.ts +139 -0
- package/dist/output/color-adapter.interface.d.ts.map +1 -0
- package/dist/output/color-adapter.interface.js +49 -0
- package/dist/output/color-adapter.interface.js.map +1 -0
- package/dist/output/color-adapter.js +163 -0
- package/dist/output/color-adapter.js.map +1 -0
- package/dist/output/console-output.d.ts +156 -0
- package/dist/output/console-output.d.ts.map +1 -0
- package/dist/output/console-output.js +264 -0
- package/dist/output/console-output.js.map +1 -0
- package/dist/output/diagnostic-formatter.d.ts +62 -0
- package/dist/output/diagnostic-formatter.d.ts.map +1 -0
- package/dist/output/diagnostic-formatter.js +186 -0
- package/dist/output/diagnostic-formatter.js.map +1 -0
- package/dist/output/header-formatter.d.ts +147 -0
- package/dist/output/header-formatter.d.ts.map +1 -0
- package/dist/output/header-formatter.js +232 -0
- package/dist/output/header-formatter.js.map +1 -0
- package/dist/output/help-formatter.d.ts +79 -0
- package/dist/output/help-formatter.d.ts.map +1 -0
- package/dist/output/help-formatter.js +358 -0
- package/dist/output/help-formatter.js.map +1 -0
- package/dist/output/index.d.ts +12 -0
- package/dist/output/index.d.ts.map +1 -0
- package/dist/output/index.js +12 -0
- package/dist/output/index.js.map +1 -0
- package/dist/output/logger.d.ts +113 -0
- package/dist/output/logger.d.ts.map +1 -0
- package/dist/output/logger.js +461 -0
- package/dist/output/logger.js.map +1 -0
- package/dist/output/markdown.d.ts +35 -0
- package/dist/output/markdown.d.ts.map +1 -0
- package/dist/output/markdown.js +188 -0
- package/dist/output/markdown.js.map +1 -0
- package/dist/output/multi-stage-progress.d.ts +77 -0
- package/dist/output/multi-stage-progress.d.ts.map +1 -0
- package/dist/output/multi-stage-progress.js +173 -0
- package/dist/output/multi-stage-progress.js.map +1 -0
- package/dist/output/pipeline-emitter.d.ts +85 -0
- package/dist/output/pipeline-emitter.d.ts.map +1 -0
- package/dist/output/pipeline-emitter.js +202 -0
- package/dist/output/pipeline-emitter.js.map +1 -0
- package/dist/output/processing-feedback.d.ts +299 -0
- package/dist/output/processing-feedback.d.ts.map +1 -0
- package/dist/output/processing-feedback.js +1032 -0
- package/dist/output/processing-feedback.js.map +1 -0
- package/dist/output/progress-formatter.d.ts +68 -0
- package/dist/output/progress-formatter.d.ts.map +1 -0
- package/dist/output/progress-formatter.js +210 -0
- package/dist/output/progress-formatter.js.map +1 -0
- package/dist/output/progress.d.ts +92 -0
- package/dist/output/progress.d.ts.map +1 -0
- package/dist/output/progress.js +256 -0
- package/dist/output/progress.js.map +1 -0
- package/dist/output/retention-manager.d.ts +62 -0
- package/dist/output/retention-manager.d.ts.map +1 -0
- package/dist/output/retention-manager.js +401 -0
- package/dist/output/retention-manager.js.map +1 -0
- package/dist/output/terminal-utils.d.ts +50 -0
- package/dist/output/terminal-utils.d.ts.map +1 -0
- package/dist/output/terminal-utils.js +103 -0
- package/dist/output/terminal-utils.js.map +1 -0
- package/dist/output/verbose-formatter.d.ts +91 -0
- package/dist/output/verbose-formatter.d.ts.map +1 -0
- package/dist/output/verbose-formatter.js +182 -0
- package/dist/output/verbose-formatter.js.map +1 -0
- package/dist/output/welcome-banner.d.ts +16 -0
- package/dist/output/welcome-banner.d.ts.map +1 -0
- package/dist/output/welcome-banner.js +80 -0
- package/dist/output/welcome-banner.js.map +1 -0
- package/dist/package.json +166 -0
- package/dist/services/agent-capability-matcher.service.d.ts +89 -0
- package/dist/services/agent-capability-matcher.service.d.ts.map +1 -0
- package/dist/services/agent-capability-matcher.service.js +310 -0
- package/dist/services/agent-capability-matcher.service.js.map +1 -0
- package/dist/services/agent-capability-registry.service.d.ts +93 -0
- package/dist/services/agent-capability-registry.service.d.ts.map +1 -0
- package/dist/services/agent-capability-registry.service.js +242 -0
- package/dist/services/agent-capability-registry.service.js.map +1 -0
- package/dist/services/agent-selection-analytics.service.d.ts +89 -0
- package/dist/services/agent-selection-analytics.service.d.ts.map +1 -0
- package/dist/services/agent-selection-analytics.service.js +180 -0
- package/dist/services/agent-selection-analytics.service.js.map +1 -0
- package/dist/services/context-analyzer.service.d.ts +56 -0
- package/dist/services/context-analyzer.service.d.ts.map +1 -0
- package/dist/services/context-analyzer.service.js +323 -0
- package/dist/services/context-analyzer.service.js.map +1 -0
- package/dist/services/diagnostics.service.d.ts +40 -0
- package/dist/services/diagnostics.service.d.ts.map +1 -0
- package/dist/services/diagnostics.service.js +245 -0
- package/dist/services/diagnostics.service.js.map +1 -0
- package/dist/services/document-detector.service.d.ts +89 -0
- package/dist/services/document-detector.service.d.ts.map +1 -0
- package/dist/services/document-detector.service.js +500 -0
- package/dist/services/document-detector.service.js.map +1 -0
- package/dist/services/document-path-resolver.service.d.ts +68 -0
- package/dist/services/document-path-resolver.service.d.ts.map +1 -0
- package/dist/services/document-path-resolver.service.js +155 -0
- package/dist/services/document-path-resolver.service.js.map +1 -0
- package/dist/services/document-template.service.d.ts +83 -0
- package/dist/services/document-template.service.d.ts.map +1 -0
- package/dist/services/document-template.service.js +317 -0
- package/dist/services/document-template.service.js.map +1 -0
- package/dist/services/document-writer.service.d.ts +42 -0
- package/dist/services/document-writer.service.d.ts.map +1 -0
- package/dist/services/document-writer.service.js +155 -0
- package/dist/services/document-writer.service.js.map +1 -0
- package/dist/services/dynamic-agent-resolver.service.d.ts +81 -0
- package/dist/services/dynamic-agent-resolver.service.d.ts.map +1 -0
- package/dist/services/dynamic-agent-resolver.service.js +267 -0
- package/dist/services/dynamic-agent-resolver.service.js.map +1 -0
- package/dist/services/git-stash-protection.service.d.ts +76 -0
- package/dist/services/git-stash-protection.service.d.ts.map +1 -0
- package/dist/services/git-stash-protection.service.js +190 -0
- package/dist/services/git-stash-protection.service.js.map +1 -0
- package/dist/services/idempotency-store.service.d.ts +101 -0
- package/dist/services/idempotency-store.service.d.ts.map +1 -0
- package/dist/services/idempotency-store.service.js +418 -0
- package/dist/services/idempotency-store.service.js.map +1 -0
- package/dist/services/index.d.ts +17 -0
- package/dist/services/index.d.ts.map +1 -0
- package/dist/services/index.js +17 -0
- package/dist/services/index.js.map +1 -0
- package/dist/services/task-classifier.service.d.ts +42 -0
- package/dist/services/task-classifier.service.d.ts.map +1 -0
- package/dist/services/task-classifier.service.js +211 -0
- package/dist/services/task-classifier.service.js.map +1 -0
- package/dist/session/archive-adapter.d.ts +26 -0
- package/dist/session/archive-adapter.d.ts.map +1 -0
- package/dist/session/archive-adapter.interface.d.ts +59 -0
- package/dist/session/archive-adapter.interface.d.ts.map +1 -0
- package/dist/session/archive-adapter.interface.js +11 -0
- package/dist/session/archive-adapter.interface.js.map +1 -0
- package/dist/session/archive-adapter.js +72 -0
- package/dist/session/archive-adapter.js.map +1 -0
- package/dist/session/cleanup-scheduler.d.ts +22 -0
- package/dist/session/cleanup-scheduler.d.ts.map +1 -0
- package/dist/session/cleanup-scheduler.js +96 -0
- package/dist/session/cleanup-scheduler.js.map +1 -0
- package/dist/session/context.d.ts +109 -0
- package/dist/session/context.d.ts.map +1 -0
- package/dist/session/context.js +253 -0
- package/dist/session/context.js.map +1 -0
- package/dist/session/index.d.ts +9 -0
- package/dist/session/index.d.ts.map +1 -0
- package/dist/session/index.js +9 -0
- package/dist/session/index.js.map +1 -0
- package/dist/session/lifecycle.d.ts +87 -0
- package/dist/session/lifecycle.d.ts.map +1 -0
- package/dist/session/lifecycle.js +301 -0
- package/dist/session/lifecycle.js.map +1 -0
- package/dist/session/retention-manager.d.ts +55 -0
- package/dist/session/retention-manager.d.ts.map +1 -0
- package/dist/session/retention-manager.js +299 -0
- package/dist/session/retention-manager.js.map +1 -0
- package/dist/session/retention-policy-runner.d.ts +19 -0
- package/dist/session/retention-policy-runner.d.ts.map +1 -0
- package/dist/session/retention-policy-runner.js +103 -0
- package/dist/session/retention-policy-runner.js.map +1 -0
- package/dist/session/session-cleanup-ui.d.ts +101 -0
- package/dist/session/session-cleanup-ui.d.ts.map +1 -0
- package/dist/session/session-cleanup-ui.js +339 -0
- package/dist/session/session-cleanup-ui.js.map +1 -0
- package/dist/session/session-exporter.d.ts +61 -0
- package/dist/session/session-exporter.d.ts.map +1 -0
- package/dist/session/session-exporter.js +274 -0
- package/dist/session/session-exporter.js.map +1 -0
- package/dist/session/store.d.ts +138 -0
- package/dist/session/store.d.ts.map +1 -0
- package/dist/session/store.js +430 -0
- package/dist/session/store.js.map +1 -0
- package/dist/session/types.d.ts +22 -0
- package/dist/session/types.d.ts.map +1 -0
- package/dist/session/types.js +7 -0
- package/dist/session/types.js.map +1 -0
- package/dist/tsconfig.json +18 -0
- package/dist/types/agent.types.d.ts +110 -0
- package/dist/types/agent.types.d.ts.map +1 -0
- package/dist/types/agent.types.js +5 -0
- package/dist/types/agent.types.js.map +1 -0
- package/dist/types/cli.types.d.ts +86 -0
- package/dist/types/cli.types.d.ts.map +1 -0
- package/dist/types/cli.types.js +5 -0
- package/dist/types/cli.types.js.map +1 -0
- package/dist/types/command.types.d.ts +176 -0
- package/dist/types/command.types.d.ts.map +1 -0
- package/dist/types/command.types.js +19 -0
- package/dist/types/command.types.js.map +1 -0
- package/dist/types/common.types.d.ts +31 -0
- package/dist/types/common.types.d.ts.map +1 -0
- package/dist/types/common.types.js +8 -0
- package/dist/types/common.types.js.map +1 -0
- package/dist/types/config.types.d.ts +104 -0
- package/dist/types/config.types.d.ts.map +1 -0
- package/dist/types/config.types.js +5 -0
- package/dist/types/config.types.js.map +1 -0
- package/dist/types/diagnostics.types.d.ts +18 -0
- package/dist/types/diagnostics.types.d.ts.map +1 -0
- package/dist/types/diagnostics.types.js +8 -0
- package/dist/types/diagnostics.types.js.map +1 -0
- package/dist/types/document.types.d.ts +127 -0
- package/dist/types/document.types.d.ts.map +1 -0
- package/dist/types/document.types.js +73 -0
- package/dist/types/document.types.js.map +1 -0
- package/dist/types/error.types.d.ts +48 -0
- package/dist/types/error.types.d.ts.map +1 -0
- package/dist/types/error.types.js +16 -0
- package/dist/types/error.types.js.map +1 -0
- package/dist/types/escalation.types.d.ts +76 -0
- package/dist/types/escalation.types.d.ts.map +1 -0
- package/dist/types/escalation.types.js +15 -0
- package/dist/types/escalation.types.js.map +1 -0
- package/dist/types/exploration.types.d.ts +298 -0
- package/dist/types/exploration.types.d.ts.map +1 -0
- package/dist/types/exploration.types.js +5 -0
- package/dist/types/exploration.types.js.map +1 -0
- package/dist/types/hook.types.d.ts +47 -0
- package/dist/types/hook.types.d.ts.map +1 -0
- package/dist/types/hook.types.js +8 -0
- package/dist/types/hook.types.js.map +1 -0
- package/dist/types/idempotency.types.d.ts +80 -0
- package/dist/types/idempotency.types.d.ts.map +1 -0
- package/dist/types/idempotency.types.js +16 -0
- package/dist/types/idempotency.types.js.map +1 -0
- package/dist/types/index.d.ts +25 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +25 -0
- package/dist/types/index.js.map +1 -0
- package/dist/types/llm.types.d.ts +73 -0
- package/dist/types/llm.types.d.ts.map +1 -0
- package/dist/types/llm.types.js +5 -0
- package/dist/types/llm.types.js.map +1 -0
- package/dist/types/logger.types.d.ts +21 -0
- package/dist/types/logger.types.d.ts.map +1 -0
- package/dist/types/logger.types.js +9 -0
- package/dist/types/logger.types.js.map +1 -0
- package/dist/types/mcp-client.types.d.ts +232 -0
- package/dist/types/mcp-client.types.d.ts.map +1 -0
- package/dist/types/mcp-client.types.js +8 -0
- package/dist/types/mcp-client.types.js.map +1 -0
- package/dist/types/mcp-registry.types.d.ts +49 -0
- package/dist/types/mcp-registry.types.d.ts.map +1 -0
- package/dist/types/mcp-registry.types.js +70 -0
- package/dist/types/mcp-registry.types.js.map +1 -0
- package/dist/types/mcp.types.d.ts +127 -0
- package/dist/types/mcp.types.d.ts.map +1 -0
- package/dist/types/mcp.types.js +5 -0
- package/dist/types/mcp.types.js.map +1 -0
- package/dist/types/pipeline.types.d.ts +139 -0
- package/dist/types/pipeline.types.d.ts.map +1 -0
- package/dist/types/pipeline.types.js +26 -0
- package/dist/types/pipeline.types.js.map +1 -0
- package/dist/types/prompt.types.d.ts +66 -0
- package/dist/types/prompt.types.d.ts.map +1 -0
- package/dist/types/prompt.types.js +5 -0
- package/dist/types/prompt.types.js.map +1 -0
- package/dist/types/provider-names.types.d.ts +56 -0
- package/dist/types/provider-names.types.d.ts.map +1 -0
- package/dist/types/provider-names.types.js +63 -0
- package/dist/types/provider-names.types.js.map +1 -0
- package/dist/types/provider.types.d.ts +22 -0
- package/dist/types/provider.types.d.ts.map +1 -0
- package/dist/types/provider.types.js +21 -0
- package/dist/types/provider.types.js.map +1 -0
- package/dist/types/session.types.d.ts +121 -0
- package/dist/types/session.types.d.ts.map +1 -0
- package/dist/types/session.types.js +5 -0
- package/dist/types/session.types.js.map +1 -0
- package/dist/types/tracing.types.d.ts +176 -0
- package/dist/types/tracing.types.d.ts.map +1 -0
- package/dist/types/tracing.types.js +77 -0
- package/dist/types/tracing.types.js.map +1 -0
- package/dist/types/ui.types.d.ts +88 -0
- package/dist/types/ui.types.d.ts.map +1 -0
- package/dist/types/ui.types.js +8 -0
- package/dist/types/ui.types.js.map +1 -0
- package/dist/types/workflow.types.d.ts +63 -0
- package/dist/types/workflow.types.d.ts.map +1 -0
- package/dist/types/workflow.types.js +5 -0
- package/dist/types/workflow.types.js.map +1 -0
- package/dist/ui/dashboard-tui.d.ts +38 -0
- package/dist/ui/dashboard-tui.d.ts.map +1 -0
- package/dist/ui/dashboard-tui.js +422 -0
- package/dist/ui/dashboard-tui.js.map +1 -0
- package/dist/ui/prompt-adapter.d.ts +37 -0
- package/dist/ui/prompt-adapter.d.ts.map +1 -0
- package/dist/ui/prompt-adapter.interface.d.ts +175 -0
- package/dist/ui/prompt-adapter.interface.d.ts.map +1 -0
- package/dist/ui/prompt-adapter.interface.js +54 -0
- package/dist/ui/prompt-adapter.interface.js.map +1 -0
- package/dist/ui/prompt-adapter.js +45 -0
- package/dist/ui/prompt-adapter.js.map +1 -0
- package/dist/ui/spinner-adapter.d.ts +29 -0
- package/dist/ui/spinner-adapter.d.ts.map +1 -0
- package/dist/ui/spinner-adapter.interface.d.ts +200 -0
- package/dist/ui/spinner-adapter.interface.d.ts.map +1 -0
- package/dist/ui/spinner-adapter.interface.js +53 -0
- package/dist/ui/spinner-adapter.interface.js.map +1 -0
- package/dist/ui/spinner-adapter.js +40 -0
- package/dist/ui/spinner-adapter.js.map +1 -0
- package/dist/ui/tui-adapter.d.ts +52 -0
- package/dist/ui/tui-adapter.d.ts.map +1 -0
- package/dist/ui/tui-adapter.interface.d.ts +197 -0
- package/dist/ui/tui-adapter.interface.d.ts.map +1 -0
- package/dist/ui/tui-adapter.interface.js +62 -0
- package/dist/ui/tui-adapter.interface.js.map +1 -0
- package/dist/ui/tui-adapter.js +58 -0
- package/dist/ui/tui-adapter.js.map +1 -0
- package/dist/utils/base-cleanup-scheduler.d.ts +60 -0
- package/dist/utils/base-cleanup-scheduler.d.ts.map +1 -0
- package/dist/utils/base-cleanup-scheduler.js +110 -0
- package/dist/utils/base-cleanup-scheduler.js.map +1 -0
- package/dist/utils/base-retention-manager.d.ts +136 -0
- package/dist/utils/base-retention-manager.d.ts.map +1 -0
- package/dist/utils/base-retention-manager.js +234 -0
- package/dist/utils/base-retention-manager.js.map +1 -0
- package/dist/utils/console-interceptor.d.ts +52 -0
- package/dist/utils/console-interceptor.d.ts.map +1 -0
- package/dist/utils/console-interceptor.js +92 -0
- package/dist/utils/console-interceptor.js.map +1 -0
- package/dist/utils/data-sanitizer.d.ts +106 -0
- package/dist/utils/data-sanitizer.d.ts.map +1 -0
- package/dist/utils/data-sanitizer.js +295 -0
- package/dist/utils/data-sanitizer.js.map +1 -0
- package/dist/utils/diff-generator.d.ts +42 -0
- package/dist/utils/diff-generator.d.ts.map +1 -0
- package/dist/utils/diff-generator.js +286 -0
- package/dist/utils/diff-generator.js.map +1 -0
- package/dist/utils/docs-linter.d.ts +178 -0
- package/dist/utils/docs-linter.d.ts.map +1 -0
- package/dist/utils/docs-linter.js +623 -0
- package/dist/utils/docs-linter.js.map +1 -0
- package/dist/utils/domain-keyword-registry.d.ts +57 -0
- package/dist/utils/domain-keyword-registry.d.ts.map +1 -0
- package/dist/utils/domain-keyword-registry.js +253 -0
- package/dist/utils/domain-keyword-registry.js.map +1 -0
- package/dist/utils/encryption.d.ts +111 -0
- package/dist/utils/encryption.d.ts.map +1 -0
- package/dist/utils/encryption.js +304 -0
- package/dist/utils/encryption.js.map +1 -0
- package/dist/utils/environment.d.ts +37 -0
- package/dist/utils/environment.d.ts.map +1 -0
- package/dist/utils/environment.js +87 -0
- package/dist/utils/environment.js.map +1 -0
- package/dist/utils/error-handler.d.ts +130 -0
- package/dist/utils/error-handler.d.ts.map +1 -0
- package/dist/utils/error-handler.js +319 -0
- package/dist/utils/error-handler.js.map +1 -0
- package/dist/utils/error-messages.d.ts +23 -0
- package/dist/utils/error-messages.d.ts.map +1 -0
- package/dist/utils/error-messages.js +160 -0
- package/dist/utils/error-messages.js.map +1 -0
- package/dist/utils/error-utils.d.ts +26 -0
- package/dist/utils/error-utils.d.ts.map +1 -0
- package/dist/utils/error-utils.js +33 -0
- package/dist/utils/error-utils.js.map +1 -0
- package/dist/utils/file-lock.d.ts +77 -0
- package/dist/utils/file-lock.d.ts.map +1 -0
- package/dist/utils/file-lock.js +355 -0
- package/dist/utils/file-lock.js.map +1 -0
- package/dist/utils/file-utils.d.ts +71 -0
- package/dist/utils/file-utils.d.ts.map +1 -0
- package/dist/utils/file-utils.js +235 -0
- package/dist/utils/file-utils.js.map +1 -0
- package/dist/utils/heap-profiler.d.ts +20 -0
- package/dist/utils/heap-profiler.d.ts.map +1 -0
- package/dist/utils/heap-profiler.js +60 -0
- package/dist/utils/heap-profiler.js.map +1 -0
- package/dist/utils/help-content.d.ts +117 -0
- package/dist/utils/help-content.d.ts.map +1 -0
- package/dist/utils/help-content.js +1512 -0
- package/dist/utils/help-content.js.map +1 -0
- package/dist/utils/id-generator.d.ts +45 -0
- package/dist/utils/id-generator.d.ts.map +1 -0
- package/dist/utils/id-generator.js +62 -0
- package/dist/utils/id-generator.js.map +1 -0
- package/dist/utils/index.d.ts +17 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/index.js +18 -0
- package/dist/utils/index.js.map +1 -0
- package/dist/utils/input-validator.d.ts +152 -0
- package/dist/utils/input-validator.d.ts.map +1 -0
- package/dist/utils/input-validator.js +494 -0
- package/dist/utils/input-validator.js.map +1 -0
- package/dist/utils/markdown-parser.d.ts +32 -0
- package/dist/utils/markdown-parser.d.ts.map +1 -0
- package/dist/utils/markdown-parser.js +85 -0
- package/dist/utils/markdown-parser.js.map +1 -0
- package/dist/utils/metrics-collector.d.ts +165 -0
- package/dist/utils/metrics-collector.d.ts.map +1 -0
- package/dist/utils/metrics-collector.js +392 -0
- package/dist/utils/metrics-collector.js.map +1 -0
- package/dist/utils/number-format.d.ts +29 -0
- package/dist/utils/number-format.d.ts.map +1 -0
- package/dist/utils/number-format.js +72 -0
- package/dist/utils/number-format.js.map +1 -0
- package/dist/utils/paths.d.ts +37 -0
- package/dist/utils/paths.d.ts.map +1 -0
- package/dist/utils/paths.js +91 -0
- package/dist/utils/paths.js.map +1 -0
- package/dist/utils/performance-profiler.d.ts +155 -0
- package/dist/utils/performance-profiler.d.ts.map +1 -0
- package/dist/utils/performance-profiler.js +429 -0
- package/dist/utils/performance-profiler.js.map +1 -0
- package/dist/utils/prompt-handler.d.ts +18 -0
- package/dist/utils/prompt-handler.d.ts.map +1 -0
- package/dist/utils/prompt-handler.js +66 -0
- package/dist/utils/prompt-handler.js.map +1 -0
- package/dist/utils/rate-limiter.d.ts +99 -0
- package/dist/utils/rate-limiter.d.ts.map +1 -0
- package/dist/utils/rate-limiter.js +214 -0
- package/dist/utils/rate-limiter.js.map +1 -0
- package/dist/utils/resource-monitor.d.ts +203 -0
- package/dist/utils/resource-monitor.d.ts.map +1 -0
- package/dist/utils/resource-monitor.js +521 -0
- package/dist/utils/resource-monitor.js.map +1 -0
- package/dist/utils/resource-resolver.d.ts +58 -0
- package/dist/utils/resource-resolver.d.ts.map +1 -0
- package/dist/utils/resource-resolver.js +150 -0
- package/dist/utils/resource-resolver.js.map +1 -0
- package/dist/utils/safe-exec.d.ts +90 -0
- package/dist/utils/safe-exec.d.ts.map +1 -0
- package/dist/utils/safe-exec.js +210 -0
- package/dist/utils/safe-exec.js.map +1 -0
- package/dist/utils/safe-regex.d.ts +49 -0
- package/dist/utils/safe-regex.d.ts.map +1 -0
- package/dist/utils/safe-regex.js +96 -0
- package/dist/utils/safe-regex.js.map +1 -0
- package/dist/utils/template-loader.d.ts +39 -0
- package/dist/utils/template-loader.d.ts.map +1 -0
- package/dist/utils/template-loader.js +75 -0
- package/dist/utils/template-loader.js.map +1 -0
- package/dist/utils/token-estimator.d.ts +60 -0
- package/dist/utils/token-estimator.d.ts.map +1 -0
- package/dist/utils/token-estimator.js +114 -0
- package/dist/utils/token-estimator.js.map +1 -0
- package/dist/utils/tracing.d.ts +166 -0
- package/dist/utils/tracing.d.ts.map +1 -0
- package/dist/utils/tracing.js +645 -0
- package/dist/utils/tracing.js.map +1 -0
- package/dist/utils/type-guards.d.ts +58 -0
- package/dist/utils/type-guards.d.ts.map +1 -0
- package/dist/utils/type-guards.js +103 -0
- package/dist/utils/type-guards.js.map +1 -0
- package/dist/utils/yaml-parser.d.ts +38 -0
- package/dist/utils/yaml-parser.d.ts.map +1 -0
- package/dist/utils/yaml-parser.js +71 -0
- package/dist/utils/yaml-parser.js.map +1 -0
- package/package.json +166 -0
|
@@ -0,0 +1,1512 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Centralized help content for all commands with structured metadata
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* Workflow phase definitions with color codes
|
|
6
|
+
*/
|
|
7
|
+
export const WORKFLOW_PHASES = {
|
|
8
|
+
finalize: { color: 'magenta', icon: '🟣', name: 'Finalize' },
|
|
9
|
+
implement: { color: 'green', icon: '🟢', name: 'Implement' },
|
|
10
|
+
initialize: { color: 'cyan', icon: '🔷', name: 'Initialize' },
|
|
11
|
+
learn: { color: 'blue', icon: '🔄', name: 'Learn' },
|
|
12
|
+
prepare: { color: 'yellow', icon: '🔮', name: 'Prepare Task' },
|
|
13
|
+
review: { color: 'red', icon: '🔴', name: 'Review' },
|
|
14
|
+
system: { color: 'gray', icon: '🔧', name: 'System' },
|
|
15
|
+
test: { color: 'yellow', icon: '🟡', name: 'Validate' },
|
|
16
|
+
workflow: { color: 'white', icon: '⚙️', name: 'Workflow' }
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Global flags available to all commands
|
|
20
|
+
*/
|
|
21
|
+
export const GLOBAL_FLAGS = [
|
|
22
|
+
// Core Execution
|
|
23
|
+
{ category: 'Core', default: 'true', description: 'Enable interactive mode with prompts', flag: '--interactive' },
|
|
24
|
+
{ category: 'Core', description: 'Disable interactive mode', flag: '--no-interactive' },
|
|
25
|
+
{ category: 'Core', description: 'Resume or use specific session', flag: '--session-id <id>' },
|
|
26
|
+
{ category: 'Core', description: 'Override default AI model', flag: '--model <name>' },
|
|
27
|
+
{ category: 'Core', description: 'Override default LLM provider', flag: '--provider <name>' },
|
|
28
|
+
{ category: 'Core', description: 'Override default AI model mode', flag: '--mode <mode>' },
|
|
29
|
+
{ category: 'Core', description: 'Override default agent', flag: '--agent <role>' },
|
|
30
|
+
// Output & Logging
|
|
31
|
+
{ category: 'Output', description: 'Enable verbose output', flag: '-v, --verbose' },
|
|
32
|
+
{ category: 'Output', description: 'Suppress non-essential output', flag: '-q, --quiet' },
|
|
33
|
+
{ category: 'Output', description: 'Set log level (debug, info, warn, error)', flag: '--log-level <level>' },
|
|
34
|
+
{ category: 'Output', description: 'Output format (markdown, json, yaml)', flag: '--output <format>' },
|
|
35
|
+
{
|
|
36
|
+
category: 'Output',
|
|
37
|
+
description: 'Preview changes without executing (shows diffs, commands, cost estimates)',
|
|
38
|
+
flag: '-n, --dry-run'
|
|
39
|
+
},
|
|
40
|
+
// Document Output
|
|
41
|
+
{ category: 'Document', description: 'Disable document output to knowledge-base', flag: '--no-document-output' },
|
|
42
|
+
{ category: 'Document', description: 'Auto-approve document creation', flag: '--document-auto-approve' },
|
|
43
|
+
{
|
|
44
|
+
category: 'Document',
|
|
45
|
+
description: 'Override document category (root, backend, frontend, infrastructure)',
|
|
46
|
+
flag: '--document-category <category>'
|
|
47
|
+
},
|
|
48
|
+
{ category: 'Document', description: 'Custom output path for document', flag: '--document-path <path>' },
|
|
49
|
+
// Log Retention
|
|
50
|
+
{ category: 'Log Retention', description: 'Enable log retention cleanup', flag: '--retention-enabled' },
|
|
51
|
+
{ category: 'Log Retention', description: 'Disable log retention cleanup', flag: '--no-retention' },
|
|
52
|
+
{ category: 'Log Retention', description: 'Override logs directory path', flag: '--logs-path <path>' },
|
|
53
|
+
{ category: 'Log Retention', description: 'Maximum age for log files in days', flag: '--max-age <days>' },
|
|
54
|
+
{ category: 'Log Retention', description: 'Maximum total log size in MB', flag: '--max-size <mb>' },
|
|
55
|
+
{ category: 'Log Retention', description: 'Maximum number of log files', flag: '--max-files <count>' },
|
|
56
|
+
{ category: 'Log Retention', description: 'Compress logs after N days', flag: '--compress-after <days>' },
|
|
57
|
+
{ category: 'Log Retention', description: 'Run cleanup every N hours', flag: '--cleanup-interval <hours>' },
|
|
58
|
+
{ category: 'Log Retention', description: 'Preview retention actions', flag: '--retention-dry-run' },
|
|
59
|
+
// Session Retention
|
|
60
|
+
{
|
|
61
|
+
category: 'Session Retention',
|
|
62
|
+
description: 'Enable session retention cleanup',
|
|
63
|
+
flag: '--session-retention-enabled'
|
|
64
|
+
},
|
|
65
|
+
{ category: 'Session Retention', description: 'Disable session retention cleanup', flag: '--no-session-retention' },
|
|
66
|
+
{ category: 'Session Retention', description: 'Maximum age for sessions in days', flag: '--session-max-age <days>' },
|
|
67
|
+
{ category: 'Session Retention', description: 'Maximum total sessions size in MB', flag: '--session-max-size <mb>' },
|
|
68
|
+
{ category: 'Session Retention', description: 'Maximum number of sessions', flag: '--session-max-count <count>' },
|
|
69
|
+
{
|
|
70
|
+
category: 'Session Retention',
|
|
71
|
+
description: 'Compress sessions after N days',
|
|
72
|
+
flag: '--session-compress-after <days>'
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
category: 'Session Retention',
|
|
76
|
+
description: 'Run session cleanup every N hours',
|
|
77
|
+
flag: '--session-cleanup-interval <hours>'
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
category: 'Session Retention',
|
|
81
|
+
description: 'Preview session retention actions',
|
|
82
|
+
flag: '--session-retention-dry-run'
|
|
83
|
+
},
|
|
84
|
+
// Isolation & Testing
|
|
85
|
+
{ category: 'Isolation', description: 'Execute only specific stage(s)', flag: '--stage <stage>' },
|
|
86
|
+
{ category: 'Isolation', description: 'Skip pipeline validation', flag: '--skip-validation' },
|
|
87
|
+
{ category: 'Isolation', description: 'Provide mock inputs as JSON', flag: '--mock-inputs <json>' },
|
|
88
|
+
{ category: 'Isolation', description: 'Override stage requirements', flag: '--force-required' },
|
|
89
|
+
{ category: 'Isolation', description: 'Execute in complete isolation mode', flag: '--isolated' },
|
|
90
|
+
// UI & Progress
|
|
91
|
+
{ category: 'UI', description: 'Launch interactive command wizard', flag: '--wizard' },
|
|
92
|
+
{
|
|
93
|
+
category: 'UI',
|
|
94
|
+
default: 'simple',
|
|
95
|
+
description: 'Progress display mode (rich, simple, off)',
|
|
96
|
+
flag: '--progress <mode>'
|
|
97
|
+
},
|
|
98
|
+
{ category: 'UI', description: 'Display real-time activity feed', flag: '--show-activity' },
|
|
99
|
+
{ category: 'UI', description: 'Save activity log to file', flag: '--save-activity <file>' }
|
|
100
|
+
];
|
|
101
|
+
/**
|
|
102
|
+
* Get global flags grouped by category
|
|
103
|
+
*/
|
|
104
|
+
export function getGlobalFlagsByCategory() {
|
|
105
|
+
return GLOBAL_FLAGS.reduce((grouped, flag) => {
|
|
106
|
+
const existing = grouped[flag.category];
|
|
107
|
+
if (existing) {
|
|
108
|
+
existing.push(flag);
|
|
109
|
+
}
|
|
110
|
+
else {
|
|
111
|
+
grouped[flag.category] = [flag];
|
|
112
|
+
}
|
|
113
|
+
return grouped;
|
|
114
|
+
}, {});
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* Command help content for all commands
|
|
118
|
+
*/
|
|
119
|
+
export const COMMAND_HELP = {
|
|
120
|
+
assert: {
|
|
121
|
+
agent: '@asserter',
|
|
122
|
+
description: 'Validate implementation completeness, correctness, and compliance before testing phase through static analysis and requirements verification',
|
|
123
|
+
examples: [
|
|
124
|
+
{
|
|
125
|
+
code: 'valora assert',
|
|
126
|
+
description: 'Validate all recent changes'
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
code: 'valora assert --severity=critical',
|
|
130
|
+
description: 'Check only critical issues'
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
code: 'valora assert --report-format=detailed',
|
|
134
|
+
description: 'Generate detailed assertion report'
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
code: 'valora assert --quick=typescript',
|
|
138
|
+
description: 'Quick TypeScript validation (~2 min)'
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
code: 'valora assert --quick=all',
|
|
142
|
+
description: 'All quick templates (~5 min)'
|
|
143
|
+
}
|
|
144
|
+
],
|
|
145
|
+
name: 'assert',
|
|
146
|
+
options: [
|
|
147
|
+
{
|
|
148
|
+
description: 'Filter by severity level',
|
|
149
|
+
flag: '--severity <level>'
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
default: 'structured',
|
|
153
|
+
description: 'Report output format',
|
|
154
|
+
flag: '--report-format <format>'
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
description: 'Quick template validation (completeness, security, typescript, all)',
|
|
158
|
+
flag: '--quick <template>'
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
relatedCommands: ['test', 'review-code', 'implement'],
|
|
162
|
+
workflowPhase: 'test'
|
|
163
|
+
},
|
|
164
|
+
commit: {
|
|
165
|
+
agent: '@lead',
|
|
166
|
+
description: 'Analyze changes and create atomic, conventional commits with intelligent message generation, version management, changelog updates, and quality insights',
|
|
167
|
+
examples: [
|
|
168
|
+
{
|
|
169
|
+
code: 'valora commit',
|
|
170
|
+
description: 'Generate conventional commit message'
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
code: 'valora commit --scope=auth',
|
|
174
|
+
description: 'Commit with specific scope'
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
code: 'valora commit --breaking',
|
|
178
|
+
description: 'Mark as breaking change'
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
code: 'valora commit --version-bump=minor',
|
|
182
|
+
description: 'Bump version and update changelog'
|
|
183
|
+
}
|
|
184
|
+
],
|
|
185
|
+
name: 'commit',
|
|
186
|
+
options: [
|
|
187
|
+
{
|
|
188
|
+
description: 'Scope of changes',
|
|
189
|
+
flag: '--scope <area>'
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
description: 'Mark as breaking change',
|
|
193
|
+
flag: '--breaking'
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
description: 'Custom commit message',
|
|
197
|
+
flag: '--message <text>'
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
description: 'Version bump strategy',
|
|
201
|
+
flag: '--version-bump <type>'
|
|
202
|
+
}
|
|
203
|
+
],
|
|
204
|
+
relatedCommands: ['review-code', 'test', 'create-pr'],
|
|
205
|
+
workflowPhase: 'finalize'
|
|
206
|
+
},
|
|
207
|
+
'create-backlog': {
|
|
208
|
+
agent: '@product-manager',
|
|
209
|
+
description: 'Decompose Product Requirements Document into prioritized, actionable task backlog',
|
|
210
|
+
examples: [
|
|
211
|
+
{
|
|
212
|
+
code: 'valora create-backlog',
|
|
213
|
+
description: 'Create backlog from PRD in session'
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
code: 'valora create-backlog --prd-file=./docs/prd.md',
|
|
217
|
+
description: 'Create backlog from specific PRD file'
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
code: 'valora create-backlog --granularity=fine',
|
|
221
|
+
description: 'Create fine-grained tasks'
|
|
222
|
+
}
|
|
223
|
+
],
|
|
224
|
+
name: 'create-backlog',
|
|
225
|
+
options: [
|
|
226
|
+
{
|
|
227
|
+
description: 'Path to PRD file',
|
|
228
|
+
flag: '--prd-file <path>'
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
default: 'medium',
|
|
232
|
+
description: 'Task granularity level',
|
|
233
|
+
flag: '--granularity <level>'
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
default: 'markdown',
|
|
237
|
+
description: 'Output format',
|
|
238
|
+
flag: '--format <format>'
|
|
239
|
+
}
|
|
240
|
+
],
|
|
241
|
+
relatedCommands: ['create-prd', 'fetch-task', 'refine-task', 'generate-docs'],
|
|
242
|
+
workflowPhase: 'initialize'
|
|
243
|
+
},
|
|
244
|
+
'create-pr': {
|
|
245
|
+
agent: '@lead',
|
|
246
|
+
description: 'Generate and submit pull requests with intelligent title/description generation, automated reviewer assignment, label management, and quality validation',
|
|
247
|
+
examples: [
|
|
248
|
+
{
|
|
249
|
+
code: 'valora create-pr',
|
|
250
|
+
description: 'Create PR with auto-generated content'
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
code: 'valora create-pr --draft',
|
|
254
|
+
description: 'Create draft PR'
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
code: 'valora create-pr --reviewers=john,jane',
|
|
258
|
+
description: 'Assign specific reviewers'
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
code: 'valora create-pr --link-issues',
|
|
262
|
+
description: 'Auto-link related issues'
|
|
263
|
+
}
|
|
264
|
+
],
|
|
265
|
+
name: 'create-pr',
|
|
266
|
+
options: [
|
|
267
|
+
{
|
|
268
|
+
description: 'Custom PR title',
|
|
269
|
+
flag: '--title <text>'
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
description: 'Create as draft',
|
|
273
|
+
flag: '--draft'
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
description: 'Base branch',
|
|
277
|
+
flag: '--base <branch>'
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
description: 'Assign reviewers',
|
|
281
|
+
flag: '--reviewers <users>'
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
description: 'Add labels',
|
|
285
|
+
flag: '--labels <labels>'
|
|
286
|
+
}
|
|
287
|
+
],
|
|
288
|
+
relatedCommands: ['commit', 'review-code', 'review-functional'],
|
|
289
|
+
workflowPhase: 'finalize'
|
|
290
|
+
},
|
|
291
|
+
'create-prd': {
|
|
292
|
+
agent: '@product-manager',
|
|
293
|
+
description: 'Generate a comprehensive Product Requirements Document from refined specifications',
|
|
294
|
+
examples: [
|
|
295
|
+
{
|
|
296
|
+
code: 'valora create-prd',
|
|
297
|
+
description: 'Generate PRD from specs in session'
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
code: 'valora create-prd --specs-file=./specs.md',
|
|
301
|
+
description: 'Generate from specific specs file'
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
code: 'valora create-prd --template=technical',
|
|
305
|
+
description: 'Use technical PRD template'
|
|
306
|
+
}
|
|
307
|
+
],
|
|
308
|
+
name: 'create-prd',
|
|
309
|
+
options: [
|
|
310
|
+
{
|
|
311
|
+
description: 'Path to specs file',
|
|
312
|
+
flag: '--specs-file <path>'
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
default: 'standard',
|
|
316
|
+
description: 'PRD template type',
|
|
317
|
+
flag: '--template <type>'
|
|
318
|
+
}
|
|
319
|
+
],
|
|
320
|
+
relatedCommands: ['refine-specs', 'create-backlog'],
|
|
321
|
+
workflowPhase: 'initialize'
|
|
322
|
+
},
|
|
323
|
+
feedback: {
|
|
324
|
+
agent: '@product-manager',
|
|
325
|
+
description: 'Capture outcomes and user feedback to refine agents and prompts through continuous learning and workflow optimization',
|
|
326
|
+
examples: [
|
|
327
|
+
{
|
|
328
|
+
code: 'valora feedback',
|
|
329
|
+
description: 'Provide feedback on last command'
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
code: 'valora feedback --command=plan',
|
|
333
|
+
description: 'Feedback on specific command'
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
code: 'valora feedback --satisfaction=8',
|
|
337
|
+
description: 'Quick satisfaction rating'
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
code: 'valora feedback --interactive',
|
|
341
|
+
description: 'Interactive feedback session'
|
|
342
|
+
}
|
|
343
|
+
],
|
|
344
|
+
name: 'feedback',
|
|
345
|
+
options: [
|
|
346
|
+
{
|
|
347
|
+
description: 'Command to provide feedback on',
|
|
348
|
+
flag: '--command <name>'
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
description: 'Satisfaction rating (1-10)',
|
|
352
|
+
flag: '--satisfaction <rating>'
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
description: 'Interactive mode',
|
|
356
|
+
flag: '--interactive'
|
|
357
|
+
}
|
|
358
|
+
],
|
|
359
|
+
relatedCommands: [],
|
|
360
|
+
workflowPhase: 'learn'
|
|
361
|
+
},
|
|
362
|
+
'fetch-task': {
|
|
363
|
+
agent: '@product-manager',
|
|
364
|
+
description: 'Retrieve and contextualize a task from the project backlog - either specified or auto-selected next priority',
|
|
365
|
+
examples: [
|
|
366
|
+
{
|
|
367
|
+
code: 'valora fetch-task',
|
|
368
|
+
description: 'Get next priority task'
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
code: 'valora fetch-task --task-id=T-123',
|
|
372
|
+
description: 'Fetch specific task'
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
code: 'valora fetch-task --priority=p0',
|
|
376
|
+
description: 'Get highest priority task'
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
code: 'valora fetch-task --domain=backend',
|
|
380
|
+
description: 'Get task from specific domain'
|
|
381
|
+
}
|
|
382
|
+
],
|
|
383
|
+
name: 'fetch-task',
|
|
384
|
+
options: [
|
|
385
|
+
{
|
|
386
|
+
description: 'Specific task ID',
|
|
387
|
+
flag: '--task-id <id>'
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
description: 'Priority filter',
|
|
391
|
+
flag: '--priority <level>'
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
description: 'Domain filter',
|
|
395
|
+
flag: '--domain <type>'
|
|
396
|
+
}
|
|
397
|
+
],
|
|
398
|
+
relatedCommands: ['create-backlog', 'refine-task', 'plan'],
|
|
399
|
+
workflowPhase: 'prepare'
|
|
400
|
+
},
|
|
401
|
+
'gather-knowledge': {
|
|
402
|
+
agent: '@lead',
|
|
403
|
+
description: 'Analyze codebase, dependencies, patterns, and constraints to build comprehensive technical context for planning or implementation',
|
|
404
|
+
examples: [
|
|
405
|
+
{
|
|
406
|
+
code: 'valora gather-knowledge',
|
|
407
|
+
description: 'Analyze entire project context'
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
code: 'valora gather-knowledge --scope=task',
|
|
411
|
+
description: 'Focus on current task context'
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
code: 'valora gather-knowledge --domain=backend --depth=deep',
|
|
415
|
+
description: 'Deep analysis of backend'
|
|
416
|
+
}
|
|
417
|
+
],
|
|
418
|
+
name: 'gather-knowledge',
|
|
419
|
+
options: [
|
|
420
|
+
{
|
|
421
|
+
default: 'project',
|
|
422
|
+
description: 'Analysis scope',
|
|
423
|
+
flag: '--scope <level>'
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
description: 'Domain to analyze',
|
|
427
|
+
flag: '--domain <type>'
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
default: 'shallow',
|
|
431
|
+
description: 'Analysis depth',
|
|
432
|
+
flag: '--depth <level>'
|
|
433
|
+
}
|
|
434
|
+
],
|
|
435
|
+
relatedCommands: ['plan', 'implement'],
|
|
436
|
+
workflowPhase: 'workflow'
|
|
437
|
+
},
|
|
438
|
+
'generate-docs': {
|
|
439
|
+
agent: '@lead',
|
|
440
|
+
description: 'Generate comprehensive technical documentation across infrastructure, backend, and frontend domains using a 7-stage pipeline',
|
|
441
|
+
examples: [
|
|
442
|
+
{
|
|
443
|
+
code: 'valora generate-docs',
|
|
444
|
+
description: 'Generate all 15 documentation files'
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
code: 'valora generate-docs --domain=backend',
|
|
448
|
+
description: 'Generate backend documentation only'
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
code: 'valora generate-docs --domain=infrastructure',
|
|
452
|
+
description: 'Generate infrastructure documentation only'
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
code: 'valora generate-docs --output-dir=docs/',
|
|
456
|
+
description: 'Output to custom directory'
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
code: 'valora generate-docs --quick',
|
|
460
|
+
description: 'Quick template-based generation (~50% faster)'
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
code: 'valora generate-docs --extract-only',
|
|
464
|
+
description: 'Run extraction phase only'
|
|
465
|
+
}
|
|
466
|
+
],
|
|
467
|
+
name: 'generate-docs',
|
|
468
|
+
options: [
|
|
469
|
+
{
|
|
470
|
+
default: 'all',
|
|
471
|
+
description: 'Domain to generate (infrastructure, backend, frontend, all)',
|
|
472
|
+
flag: '--domain <domain>'
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
description: 'Specific document type (HLD, API, ARCHITECTURE, etc.)',
|
|
476
|
+
flag: '--doc-type <type>'
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
default: 'knowledge-base/',
|
|
480
|
+
description: 'Output directory for generated documentation',
|
|
481
|
+
flag: '--output-dir <path>'
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
description: 'Use quick templates for faster generation',
|
|
485
|
+
flag: '--quick'
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
description: 'Run extraction phase only (generates checklist)',
|
|
489
|
+
flag: '--extract-only'
|
|
490
|
+
}
|
|
491
|
+
],
|
|
492
|
+
relatedCommands: ['create-backlog', 'create-prd', 'fetch-task'],
|
|
493
|
+
workflowPhase: 'initialize'
|
|
494
|
+
},
|
|
495
|
+
implement: {
|
|
496
|
+
agent: '@software-engineer (dynamic)',
|
|
497
|
+
description: 'Execute code changes following approved implementation plan, including code, tests, and documentation',
|
|
498
|
+
examples: [
|
|
499
|
+
{
|
|
500
|
+
code: 'valora implement',
|
|
501
|
+
description: 'Execute plan from session'
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
code: 'valora implement --mode=step-by-step',
|
|
505
|
+
description: 'Execute plan step by step'
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
code: 'valora implement --step=3',
|
|
509
|
+
description: 'Execute specific step'
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
code: 'valora implement --agent=software-engineer-react',
|
|
513
|
+
description: 'Use specific engineer agent'
|
|
514
|
+
}
|
|
515
|
+
],
|
|
516
|
+
name: 'implement',
|
|
517
|
+
options: [
|
|
518
|
+
{
|
|
519
|
+
description: 'Override agent selection',
|
|
520
|
+
flag: '--agent <type>'
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
default: 'standard',
|
|
524
|
+
description: 'Execution mode',
|
|
525
|
+
flag: '--mode <mode>'
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
description: 'Execute specific step',
|
|
529
|
+
flag: '--step <number>'
|
|
530
|
+
}
|
|
531
|
+
],
|
|
532
|
+
relatedCommands: ['plan', 'review-plan', 'test', 'assert'],
|
|
533
|
+
workflowPhase: 'implement'
|
|
534
|
+
},
|
|
535
|
+
plan: {
|
|
536
|
+
agent: '@lead',
|
|
537
|
+
description: 'Analyze task and create detailed implementation plan with steps, dependencies, and risk assessment',
|
|
538
|
+
examples: [
|
|
539
|
+
{
|
|
540
|
+
code: 'valora plan "Add user authentication"',
|
|
541
|
+
description: 'Plan a new feature'
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
code: 'valora plan "Refactor database layer"',
|
|
545
|
+
description: 'Plan refactoring task'
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
code: 'valora plan "Fix login bug" --complexity-threshold=3',
|
|
549
|
+
description: 'Plan with complexity check'
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
code: 'valora plan "Add API endpoint" --mode=tiered',
|
|
553
|
+
description: 'Tiered planning (architecture → implementation)'
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
code: 'valora plan "Add users API" --pattern=rest-api',
|
|
557
|
+
description: 'Use REST API pattern template'
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
code: 'valora plan "Add dashboard" --pattern=react-feature',
|
|
561
|
+
description: 'Use React feature pattern template'
|
|
562
|
+
}
|
|
563
|
+
],
|
|
564
|
+
name: 'plan',
|
|
565
|
+
options: [
|
|
566
|
+
{
|
|
567
|
+
default: '5',
|
|
568
|
+
description: 'Complexity threshold for warnings',
|
|
569
|
+
flag: '--complexity-threshold <n>'
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
default: 'auto',
|
|
573
|
+
description: 'Planning mode (standard, incremental, tiered)',
|
|
574
|
+
flag: '--mode <mode>'
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
description: 'Use pattern template (rest-api, react-feature, database, auth, background-job)',
|
|
578
|
+
flag: '--pattern <type>'
|
|
579
|
+
}
|
|
580
|
+
],
|
|
581
|
+
relatedCommands: ['plan-architecture', 'plan-implementation', 'gather-knowledge', 'review-plan', 'implement'],
|
|
582
|
+
workflowPhase: 'workflow'
|
|
583
|
+
},
|
|
584
|
+
'plan-architecture': {
|
|
585
|
+
agent: '@lead',
|
|
586
|
+
description: 'Create high-level architectural plan covering technology choices, component boundaries, and integration strategy (Phase 1 of tiered planning)',
|
|
587
|
+
examples: [
|
|
588
|
+
{
|
|
589
|
+
code: 'valora plan-architecture',
|
|
590
|
+
description: 'Create architecture plan for current task'
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
code: 'valora plan-architecture --task-id=TASK-001',
|
|
594
|
+
description: 'Create architecture plan for specific task'
|
|
595
|
+
}
|
|
596
|
+
],
|
|
597
|
+
name: 'plan-architecture',
|
|
598
|
+
options: [
|
|
599
|
+
{
|
|
600
|
+
description: 'Task ID to load from backlog',
|
|
601
|
+
flag: '--task-id <id>'
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
description: 'Path to backlog file',
|
|
605
|
+
flag: '--backlog-file <path>'
|
|
606
|
+
}
|
|
607
|
+
],
|
|
608
|
+
relatedCommands: ['plan', 'plan-implementation', 'review-plan'],
|
|
609
|
+
workflowPhase: 'workflow'
|
|
610
|
+
},
|
|
611
|
+
'plan-implementation': {
|
|
612
|
+
agent: '@lead',
|
|
613
|
+
description: 'Create detailed implementation plan with step-by-step tasks, dependencies, and rollback procedures (Phase 2 of tiered planning)',
|
|
614
|
+
examples: [
|
|
615
|
+
{
|
|
616
|
+
code: 'valora plan-implementation --arch-plan=knowledge-base/PLAN-ARCH-TASK-001.md',
|
|
617
|
+
description: 'Create implementation plan from architecture plan'
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
code: 'valora plan-implementation --task-id=TASK-001',
|
|
621
|
+
description: 'Create implementation plan for specific task'
|
|
622
|
+
}
|
|
623
|
+
],
|
|
624
|
+
name: 'plan-implementation',
|
|
625
|
+
options: [
|
|
626
|
+
{
|
|
627
|
+
description: 'Path to approved architecture plan',
|
|
628
|
+
flag: '--arch-plan <path>'
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
description: 'Task ID to derive architecture plan path',
|
|
632
|
+
flag: '--task-id <id>'
|
|
633
|
+
}
|
|
634
|
+
],
|
|
635
|
+
relatedCommands: ['plan', 'plan-architecture', 'review-plan', 'implement'],
|
|
636
|
+
workflowPhase: 'workflow'
|
|
637
|
+
},
|
|
638
|
+
'pre-check': {
|
|
639
|
+
agent: '@qa',
|
|
640
|
+
description: 'Run automated code quality pre-checks (linting, type validation, security) before manual review to reduce review time by 50%',
|
|
641
|
+
examples: [
|
|
642
|
+
{
|
|
643
|
+
code: 'valora pre-check',
|
|
644
|
+
description: 'Run all automated pre-checks (~1.5 min)'
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
code: 'valora pre-check --fix',
|
|
648
|
+
description: 'Auto-fix issues where possible'
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
code: 'valora pre-check --strict',
|
|
652
|
+
description: 'Strict mode (warnings as errors)'
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
code: 'valora pre-check --ci --report-format=json',
|
|
656
|
+
description: 'CI/CD mode with JSON output'
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
code: 'valora pre-check && valora review-code --focus=architecture',
|
|
660
|
+
description: 'Two-phase review (recommended)'
|
|
661
|
+
}
|
|
662
|
+
],
|
|
663
|
+
name: 'pre-check',
|
|
664
|
+
options: [
|
|
665
|
+
{
|
|
666
|
+
description: 'Auto-fix issues where possible (ESLint, Prettier)',
|
|
667
|
+
flag: '--fix'
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
description: 'Strict mode (warnings treated as errors)',
|
|
671
|
+
flag: '--strict'
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
description: 'CI/CD mode with JSON output, fails fast',
|
|
675
|
+
flag: '--ci'
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
default: 'summary',
|
|
679
|
+
description: 'Report format (summary, detailed, json)',
|
|
680
|
+
flag: '--report-format <format>'
|
|
681
|
+
}
|
|
682
|
+
],
|
|
683
|
+
relatedCommands: ['review-code', 'validate-coverage', 'test', 'assert'],
|
|
684
|
+
workflowPhase: 'review'
|
|
685
|
+
},
|
|
686
|
+
'refine-specs': {
|
|
687
|
+
agent: '@product-manager',
|
|
688
|
+
description: 'Collaboratively refine product specifications through structured questioning and clarification',
|
|
689
|
+
examples: [
|
|
690
|
+
{
|
|
691
|
+
code: 'valora refine-specs "Build analytics dashboard"',
|
|
692
|
+
description: 'Refine initial concept'
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
code: 'valora refine-specs --concept-file=./ideas/dashboard.md',
|
|
696
|
+
description: 'Refine from concept file'
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
code: 'valora refine-specs "User management" --domain=security',
|
|
700
|
+
description: 'Focus on specific domain'
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
code: 'valora refine-specs "API v2" --stakeholders=team,pm',
|
|
704
|
+
description: 'Include stakeholder perspectives'
|
|
705
|
+
}
|
|
706
|
+
],
|
|
707
|
+
name: 'refine-specs',
|
|
708
|
+
options: [
|
|
709
|
+
{
|
|
710
|
+
description: 'Path to concept file with initial thoughts',
|
|
711
|
+
flag: '--concept-file <path>'
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
description: 'Focus domain',
|
|
715
|
+
flag: '--domain <area>'
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
description: 'Stakeholder list',
|
|
719
|
+
flag: '--stakeholders <list>'
|
|
720
|
+
}
|
|
721
|
+
],
|
|
722
|
+
relatedCommands: ['create-prd', 'create-backlog'],
|
|
723
|
+
workflowPhase: 'initialize'
|
|
724
|
+
},
|
|
725
|
+
'refine-task': {
|
|
726
|
+
agent: '@product-manager',
|
|
727
|
+
description: 'Clarify task requirements, acceptance criteria, and implementation details before planning phase',
|
|
728
|
+
examples: [
|
|
729
|
+
{
|
|
730
|
+
code: 'valora refine-task',
|
|
731
|
+
description: 'Refine current task'
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
code: 'valora refine-task --task-id=T-456',
|
|
735
|
+
description: 'Refine specific task'
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
code: 'valora refine-task --interactive',
|
|
739
|
+
description: 'Interactive refinement session'
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
code: 'valora refine-task --acceptance-criteria-only',
|
|
743
|
+
description: 'Focus on acceptance criteria'
|
|
744
|
+
}
|
|
745
|
+
],
|
|
746
|
+
name: 'refine-task',
|
|
747
|
+
options: [
|
|
748
|
+
{
|
|
749
|
+
description: 'Task to refine',
|
|
750
|
+
flag: '--task-id <id>'
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
description: 'Interactive mode',
|
|
754
|
+
flag: '--interactive'
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
description: 'Only update acceptance criteria',
|
|
758
|
+
flag: '--acceptance-criteria-only'
|
|
759
|
+
}
|
|
760
|
+
],
|
|
761
|
+
relatedCommands: ['fetch-task', 'plan'],
|
|
762
|
+
workflowPhase: 'prepare'
|
|
763
|
+
},
|
|
764
|
+
'review-code': {
|
|
765
|
+
agent: '@lead',
|
|
766
|
+
description: 'Perform comprehensive code quality review including standards, security, maintainability, and best practices validation',
|
|
767
|
+
examples: [
|
|
768
|
+
{
|
|
769
|
+
code: 'valora review-code',
|
|
770
|
+
description: 'Review all recent changes'
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
code: 'valora review-code src/auth/',
|
|
774
|
+
description: 'Review specific directory'
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
code: 'valora review-code --severity=critical',
|
|
778
|
+
description: 'Check critical issues only'
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
code: 'valora review-code --focus=security',
|
|
782
|
+
description: 'Security-focused review'
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
code: 'valora review-code --focus=architecture',
|
|
786
|
+
description: 'Architecture-only review (~5 min after pre-check)'
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
code: 'valora review-code --checklist',
|
|
790
|
+
description: 'Quick checklist review (~3 min)'
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
code: 'valora review-code --auto-only',
|
|
794
|
+
description: 'Automated checks only (~1 min)'
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
code: 'valora pre-check && valora review-code --focus=architecture',
|
|
798
|
+
description: 'Two-phase review (reduces time by 50%)'
|
|
799
|
+
}
|
|
800
|
+
],
|
|
801
|
+
name: 'review-code',
|
|
802
|
+
options: [
|
|
803
|
+
{
|
|
804
|
+
description: 'Filter by severity',
|
|
805
|
+
flag: '--severity <level>'
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
default: 'all',
|
|
809
|
+
description: 'Review focus area',
|
|
810
|
+
flag: '--focus <area>'
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
description: 'Quick binary validation using checklist template',
|
|
814
|
+
flag: '--checklist'
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
description: 'Run automated checks only (tsc, lint, test)',
|
|
818
|
+
flag: '--auto-only'
|
|
819
|
+
}
|
|
820
|
+
],
|
|
821
|
+
relatedCommands: ['implement', 'test', 'commit'],
|
|
822
|
+
workflowPhase: 'review'
|
|
823
|
+
},
|
|
824
|
+
'review-functional': {
|
|
825
|
+
agent: '@lead',
|
|
826
|
+
description: 'Validate feature completeness, acceptance criteria, user experience, and functional requirements alignment with PRD/task specifications',
|
|
827
|
+
examples: [
|
|
828
|
+
{
|
|
829
|
+
code: 'valora review-functional',
|
|
830
|
+
description: 'Review completed feature'
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
code: 'valora review-functional --severity=high',
|
|
834
|
+
description: 'Check high-severity issues'
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
code: 'valora review-functional --check-a11y=true',
|
|
838
|
+
description: 'Include accessibility check'
|
|
839
|
+
}
|
|
840
|
+
],
|
|
841
|
+
name: 'review-functional',
|
|
842
|
+
options: [
|
|
843
|
+
{
|
|
844
|
+
description: 'Filter by severity',
|
|
845
|
+
flag: '--severity <level>'
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
default: 'true',
|
|
849
|
+
description: 'Check accessibility',
|
|
850
|
+
flag: '--check-a11y <bool>'
|
|
851
|
+
}
|
|
852
|
+
],
|
|
853
|
+
relatedCommands: ['test', 'review-code', 'create-pr'],
|
|
854
|
+
workflowPhase: 'review'
|
|
855
|
+
},
|
|
856
|
+
'review-plan': {
|
|
857
|
+
agent: '@lead',
|
|
858
|
+
description: 'Validate implementation plan quality, completeness, and feasibility before execution begins',
|
|
859
|
+
examples: [
|
|
860
|
+
{
|
|
861
|
+
code: 'valora review-plan',
|
|
862
|
+
description: 'Review plan in session'
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
code: 'valora review-plan --strict-mode',
|
|
866
|
+
description: 'Strict validation'
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
code: 'valora review-plan --focus=risks',
|
|
870
|
+
description: 'Focus on risk assessment'
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
code: 'valora review-plan --checklist',
|
|
874
|
+
description: 'Quick binary validation (~3 min)'
|
|
875
|
+
}
|
|
876
|
+
],
|
|
877
|
+
name: 'review-plan',
|
|
878
|
+
options: [
|
|
879
|
+
{
|
|
880
|
+
description: 'Enable strict validation',
|
|
881
|
+
flag: '--strict-mode'
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
description: 'Review focus area',
|
|
885
|
+
flag: '--focus <area>'
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
description: 'Quick binary validation using checklist template',
|
|
889
|
+
flag: '--checklist'
|
|
890
|
+
}
|
|
891
|
+
],
|
|
892
|
+
relatedCommands: ['plan', 'plan-architecture', 'plan-implementation', 'implement'],
|
|
893
|
+
workflowPhase: 'workflow'
|
|
894
|
+
},
|
|
895
|
+
test: {
|
|
896
|
+
agent: '@qa',
|
|
897
|
+
description: 'Execute comprehensive test suites (unit, integration, e2e) to validate implementation correctness and quality',
|
|
898
|
+
examples: [
|
|
899
|
+
{
|
|
900
|
+
code: 'valora test',
|
|
901
|
+
description: 'Run all tests'
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
code: 'valora test --type=unit',
|
|
905
|
+
description: 'Run unit tests only'
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
code: 'valora test --coverage-threshold=90',
|
|
909
|
+
description: 'Require 90% coverage'
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
code: 'valora test src/auth/',
|
|
913
|
+
description: 'Test specific scope'
|
|
914
|
+
}
|
|
915
|
+
],
|
|
916
|
+
name: 'test',
|
|
917
|
+
options: [
|
|
918
|
+
{
|
|
919
|
+
default: 'all',
|
|
920
|
+
description: 'Test type to run',
|
|
921
|
+
flag: '--type <type>'
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
default: '80',
|
|
925
|
+
description: 'Minimum coverage threshold',
|
|
926
|
+
flag: '--coverage-threshold <n>'
|
|
927
|
+
}
|
|
928
|
+
],
|
|
929
|
+
relatedCommands: ['implement', 'assert', 'review-code', 'validate-parallel'],
|
|
930
|
+
workflowPhase: 'test'
|
|
931
|
+
},
|
|
932
|
+
'validate-coverage': {
|
|
933
|
+
agent: '@qa',
|
|
934
|
+
description: 'Automated test coverage validation gate with specific thresholds and quality scoring (addresses low test quality scores)',
|
|
935
|
+
examples: [
|
|
936
|
+
{
|
|
937
|
+
code: 'valora validate-coverage',
|
|
938
|
+
description: 'Validate coverage against default threshold (80%)'
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
code: 'valora validate-coverage --threshold=85',
|
|
942
|
+
description: 'Validate with custom threshold'
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
code: 'valora validate-coverage --strict',
|
|
946
|
+
description: 'Strict mode requiring all thresholds to pass'
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
code: 'valora validate-coverage --new-code-only',
|
|
950
|
+
description: 'Only validate changed files'
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
code: 'valora validate-coverage --report-format=json',
|
|
954
|
+
description: 'Generate JSON report for CI/CD'
|
|
955
|
+
}
|
|
956
|
+
],
|
|
957
|
+
name: 'validate-coverage',
|
|
958
|
+
options: [
|
|
959
|
+
{
|
|
960
|
+
default: '80',
|
|
961
|
+
description: 'Minimum line coverage percentage',
|
|
962
|
+
flag: '--threshold <n>'
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
description: 'Enable strict mode requiring ALL thresholds to pass',
|
|
966
|
+
flag: '--strict'
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
description: 'Only validate changed/new files',
|
|
970
|
+
flag: '--new-code-only'
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
default: 'summary',
|
|
974
|
+
description: 'Report format (summary, detailed, json)',
|
|
975
|
+
flag: '--report-format <format>'
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
default: 'true',
|
|
979
|
+
description: 'Fail if coverage decreased from baseline',
|
|
980
|
+
flag: '--fail-on-decrease'
|
|
981
|
+
}
|
|
982
|
+
],
|
|
983
|
+
relatedCommands: ['test', 'assert', 'implement', 'validate-parallel'],
|
|
984
|
+
workflowPhase: 'test'
|
|
985
|
+
},
|
|
986
|
+
'validate-parallel': {
|
|
987
|
+
agent: '@lead',
|
|
988
|
+
description: 'Run assert and review-code commands in parallel to reduce validation time by ~50% (saves ~9 minutes per workflow)',
|
|
989
|
+
examples: [
|
|
990
|
+
{
|
|
991
|
+
code: 'valora validate-parallel',
|
|
992
|
+
description: 'Run both validations in parallel (~10 min)'
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
code: 'valora validate-parallel --quick',
|
|
996
|
+
description: 'Quick parallel validation (~5 min)'
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
code: 'valora validate-parallel --severity=critical',
|
|
1000
|
+
description: 'Focus on critical issues only'
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
code: 'valora validate-parallel --focus=security',
|
|
1004
|
+
description: 'Focus on security review'
|
|
1005
|
+
}
|
|
1006
|
+
],
|
|
1007
|
+
name: 'validate-parallel',
|
|
1008
|
+
options: [
|
|
1009
|
+
{
|
|
1010
|
+
description: 'Use quick validation modes for both commands',
|
|
1011
|
+
flag: '--quick'
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
default: 'all',
|
|
1015
|
+
description: 'Filter issues by severity level',
|
|
1016
|
+
flag: '--severity <level>'
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
default: 'all',
|
|
1020
|
+
description: 'Focus area for code review',
|
|
1021
|
+
flag: '--focus <area>'
|
|
1022
|
+
}
|
|
1023
|
+
],
|
|
1024
|
+
relatedCommands: ['assert', 'review-code', 'implement', 'commit'],
|
|
1025
|
+
workflowPhase: 'test'
|
|
1026
|
+
},
|
|
1027
|
+
'validate-plan': {
|
|
1028
|
+
agent: '@lead',
|
|
1029
|
+
description: 'Automated pre-review validation to catch missing plan parameters early (reduces review-plan time by 60-70%)',
|
|
1030
|
+
examples: [
|
|
1031
|
+
{
|
|
1032
|
+
code: 'valora validate-plan',
|
|
1033
|
+
description: 'Validate most recent plan (~2 min)'
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
code: 'valora validate-plan knowledge-base/PLAN-IMPL-001.md',
|
|
1037
|
+
description: 'Validate specific plan file'
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
code: 'valora validate-plan --fix',
|
|
1041
|
+
description: 'Auto-fix missing sections with TODOs'
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
code: 'valora validate-plan --strict',
|
|
1045
|
+
description: 'Require 100% completeness'
|
|
1046
|
+
}
|
|
1047
|
+
],
|
|
1048
|
+
name: 'validate-plan',
|
|
1049
|
+
options: [
|
|
1050
|
+
{
|
|
1051
|
+
description: 'Attempt to auto-fix missing parameters',
|
|
1052
|
+
flag: '--fix'
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
description: 'Require 100% completeness for pass',
|
|
1056
|
+
flag: '--strict'
|
|
1057
|
+
}
|
|
1058
|
+
],
|
|
1059
|
+
relatedCommands: ['plan', 'plan-architecture', 'plan-implementation', 'review-plan'],
|
|
1060
|
+
workflowPhase: 'workflow'
|
|
1061
|
+
},
|
|
1062
|
+
// =====================================================
|
|
1063
|
+
// BUILT-IN COMMANDS (System utilities and management)
|
|
1064
|
+
// =====================================================
|
|
1065
|
+
config: {
|
|
1066
|
+
agent: 'system',
|
|
1067
|
+
description: 'Manage AI orchestrator configuration including providers, API keys, and settings',
|
|
1068
|
+
examples: [
|
|
1069
|
+
{
|
|
1070
|
+
code: 'valora config setup',
|
|
1071
|
+
description: 'Run interactive setup wizard'
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
code: 'valora config setup --quick',
|
|
1075
|
+
description: 'Quick setup with minimal prompts'
|
|
1076
|
+
},
|
|
1077
|
+
{
|
|
1078
|
+
code: 'valora config show',
|
|
1079
|
+
description: 'Display current configuration'
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
code: 'valora config path',
|
|
1083
|
+
description: 'Show configuration file path'
|
|
1084
|
+
}
|
|
1085
|
+
],
|
|
1086
|
+
name: 'config',
|
|
1087
|
+
options: [],
|
|
1088
|
+
relatedCommands: ['doctor'],
|
|
1089
|
+
subcommands: [
|
|
1090
|
+
{
|
|
1091
|
+
description: 'Run interactive setup wizard to configure providers and API keys',
|
|
1092
|
+
examples: [
|
|
1093
|
+
{ code: 'valora config setup', description: 'Full interactive setup' },
|
|
1094
|
+
{ code: 'valora config setup --quick', description: 'Quick setup with defaults' }
|
|
1095
|
+
],
|
|
1096
|
+
name: 'setup',
|
|
1097
|
+
options: [{ description: 'Quick setup with minimal prompts', flag: '--quick' }]
|
|
1098
|
+
},
|
|
1099
|
+
{
|
|
1100
|
+
description: 'Display current configuration (sensitive data sanitized)',
|
|
1101
|
+
name: 'show'
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
description: 'Show the path to the configuration file',
|
|
1105
|
+
name: 'path'
|
|
1106
|
+
}
|
|
1107
|
+
],
|
|
1108
|
+
workflowPhase: 'system'
|
|
1109
|
+
},
|
|
1110
|
+
dashboard: {
|
|
1111
|
+
agent: 'system',
|
|
1112
|
+
description: 'Launch real-time TUI dashboard for monitoring sessions, system health, and resource usage',
|
|
1113
|
+
examples: [
|
|
1114
|
+
{
|
|
1115
|
+
code: 'valora dashboard',
|
|
1116
|
+
description: 'Launch the dashboard'
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
code: 'valora dash',
|
|
1120
|
+
description: 'Launch using alias'
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
code: 'valora dashboard --no-auto-refresh',
|
|
1124
|
+
description: 'Launch without auto-refresh'
|
|
1125
|
+
}
|
|
1126
|
+
],
|
|
1127
|
+
name: 'dashboard',
|
|
1128
|
+
options: [
|
|
1129
|
+
{
|
|
1130
|
+
default: 'enabled (2s)',
|
|
1131
|
+
description: 'Disable auto-refresh of dashboard data',
|
|
1132
|
+
flag: '--no-auto-refresh'
|
|
1133
|
+
}
|
|
1134
|
+
],
|
|
1135
|
+
relatedCommands: ['monitoring', 'session'],
|
|
1136
|
+
workflowPhase: 'system'
|
|
1137
|
+
},
|
|
1138
|
+
doctor: {
|
|
1139
|
+
agent: 'system',
|
|
1140
|
+
description: 'Run diagnostic checks on the system including configuration, providers, API keys, and environment validation',
|
|
1141
|
+
examples: [
|
|
1142
|
+
{
|
|
1143
|
+
code: 'valora doctor',
|
|
1144
|
+
description: 'Run all diagnostic checks'
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
code: 'valora doctor --fix',
|
|
1148
|
+
description: 'Auto-fix detected issues'
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
code: 'valora doctor --export ./report.json',
|
|
1152
|
+
description: 'Export diagnostics to file'
|
|
1153
|
+
}
|
|
1154
|
+
],
|
|
1155
|
+
name: 'doctor',
|
|
1156
|
+
options: [
|
|
1157
|
+
{
|
|
1158
|
+
description: 'Attempt to auto-fix detected issues',
|
|
1159
|
+
flag: '--fix'
|
|
1160
|
+
},
|
|
1161
|
+
{
|
|
1162
|
+
description: 'Export diagnostics report to JSON file',
|
|
1163
|
+
flag: '--export <path>'
|
|
1164
|
+
}
|
|
1165
|
+
],
|
|
1166
|
+
relatedCommands: ['config', 'monitoring'],
|
|
1167
|
+
workflowPhase: 'system'
|
|
1168
|
+
},
|
|
1169
|
+
exec: {
|
|
1170
|
+
agent: 'system',
|
|
1171
|
+
description: 'Execute a specific command dynamically with full control over execution options and isolation',
|
|
1172
|
+
examples: [
|
|
1173
|
+
{
|
|
1174
|
+
code: 'valora exec plan "Build feature"',
|
|
1175
|
+
description: 'Execute plan command'
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
code: 'valora exec implement --dry-run',
|
|
1179
|
+
description: 'Execute with dry-run flag'
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
code: 'valora exec test --stage=unit',
|
|
1183
|
+
description: 'Execute specific stage only'
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
code: 'valora exec plan --isolated',
|
|
1187
|
+
description: 'Execute in isolation mode'
|
|
1188
|
+
}
|
|
1189
|
+
],
|
|
1190
|
+
name: 'exec',
|
|
1191
|
+
options: [
|
|
1192
|
+
{
|
|
1193
|
+
description: 'Session ID to use or resume',
|
|
1194
|
+
flag: '--session-id <id>'
|
|
1195
|
+
},
|
|
1196
|
+
{
|
|
1197
|
+
description: 'Set log level',
|
|
1198
|
+
flag: '--log-level <level>'
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
description: 'Execute only specific stage(s)',
|
|
1202
|
+
flag: '--stage <stage>'
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
description: 'Skip pipeline validation',
|
|
1206
|
+
flag: '--skip-validation'
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
description: 'Provide mock inputs as JSON',
|
|
1210
|
+
flag: '--mock-inputs <json>'
|
|
1211
|
+
},
|
|
1212
|
+
{
|
|
1213
|
+
description: 'Override stage requirements',
|
|
1214
|
+
flag: '--force-required'
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
description: 'Execute in isolation mode',
|
|
1218
|
+
flag: '--isolated'
|
|
1219
|
+
}
|
|
1220
|
+
],
|
|
1221
|
+
relatedCommands: ['list', 'plan', 'implement'],
|
|
1222
|
+
workflowPhase: 'system'
|
|
1223
|
+
},
|
|
1224
|
+
help: {
|
|
1225
|
+
agent: 'system',
|
|
1226
|
+
description: 'Display help information for commands with workflow context, examples, and related commands',
|
|
1227
|
+
examples: [
|
|
1228
|
+
{
|
|
1229
|
+
code: 'valora help',
|
|
1230
|
+
description: 'Show help overview'
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
code: 'valora help plan',
|
|
1234
|
+
description: 'Help for plan command'
|
|
1235
|
+
},
|
|
1236
|
+
{
|
|
1237
|
+
code: 'valora help --search auth',
|
|
1238
|
+
description: 'Search commands by keyword'
|
|
1239
|
+
}
|
|
1240
|
+
],
|
|
1241
|
+
name: 'help',
|
|
1242
|
+
options: [
|
|
1243
|
+
{
|
|
1244
|
+
description: 'Search commands by keyword',
|
|
1245
|
+
flag: '-s, --search <keyword>'
|
|
1246
|
+
}
|
|
1247
|
+
],
|
|
1248
|
+
relatedCommands: ['list', 'doctor'],
|
|
1249
|
+
workflowPhase: 'system'
|
|
1250
|
+
},
|
|
1251
|
+
list: {
|
|
1252
|
+
agent: 'system',
|
|
1253
|
+
description: 'List all available commands including workflow and utility commands',
|
|
1254
|
+
examples: [
|
|
1255
|
+
{
|
|
1256
|
+
code: 'valora list',
|
|
1257
|
+
description: 'List all available commands'
|
|
1258
|
+
}
|
|
1259
|
+
],
|
|
1260
|
+
name: 'list',
|
|
1261
|
+
options: [],
|
|
1262
|
+
relatedCommands: ['help', 'exec'],
|
|
1263
|
+
workflowPhase: 'system'
|
|
1264
|
+
},
|
|
1265
|
+
monitoring: {
|
|
1266
|
+
agent: 'system',
|
|
1267
|
+
description: 'Access performance monitoring, metrics collection, resource usage, and documentation linting tools',
|
|
1268
|
+
examples: [
|
|
1269
|
+
{
|
|
1270
|
+
code: 'valora monitoring metrics',
|
|
1271
|
+
description: 'Show metrics snapshot'
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
code: 'valora monitoring performance --detailed',
|
|
1275
|
+
description: 'Detailed performance report'
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
code: 'valora monitoring resources',
|
|
1279
|
+
description: 'Show system resource usage'
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
code: 'valora monitoring status',
|
|
1283
|
+
description: 'Show monitoring status'
|
|
1284
|
+
}
|
|
1285
|
+
],
|
|
1286
|
+
name: 'monitoring',
|
|
1287
|
+
options: [],
|
|
1288
|
+
relatedCommands: ['dashboard', 'doctor'],
|
|
1289
|
+
subcommands: [
|
|
1290
|
+
{
|
|
1291
|
+
description: 'Show current metrics snapshot (counters, gauges, histograms)',
|
|
1292
|
+
name: 'metrics',
|
|
1293
|
+
options: [
|
|
1294
|
+
{
|
|
1295
|
+
default: 'json',
|
|
1296
|
+
description: 'Output format',
|
|
1297
|
+
flag: '-f, --format <format>'
|
|
1298
|
+
}
|
|
1299
|
+
]
|
|
1300
|
+
},
|
|
1301
|
+
{
|
|
1302
|
+
description: 'Show performance profiling report with slowest operations and resource stats',
|
|
1303
|
+
name: 'performance',
|
|
1304
|
+
options: [
|
|
1305
|
+
{
|
|
1306
|
+
default: 'false',
|
|
1307
|
+
description: 'Show detailed profiling data',
|
|
1308
|
+
flag: '-d, --detailed'
|
|
1309
|
+
}
|
|
1310
|
+
]
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
description: 'Show current system resource usage (CPU, memory, disk, process, network)',
|
|
1314
|
+
name: 'resources'
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
description: 'Show monitoring system status and active collectors',
|
|
1318
|
+
name: 'status'
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
description: 'Lint documentation files for quality and completeness',
|
|
1322
|
+
name: 'docs',
|
|
1323
|
+
options: [
|
|
1324
|
+
{ default: 'table', description: 'Output format', flag: '-f, --format <format>' },
|
|
1325
|
+
{ default: 'true', description: 'Enable link validation', flag: '--check-links' },
|
|
1326
|
+
{ default: 'true', description: 'Enable code example validation', flag: '--check-code-examples' },
|
|
1327
|
+
{ default: 'false', description: 'Enable API completeness checks', flag: '--check-api-completeness' },
|
|
1328
|
+
{ default: 'false', description: 'Enable freshness checks', flag: '--check-freshness' },
|
|
1329
|
+
{ default: '0', description: 'Max errors before failing', flag: '--max-errors <number>' },
|
|
1330
|
+
{ default: '0', description: 'Max warnings before failing', flag: '--max-warnings <number>' }
|
|
1331
|
+
]
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
description: 'Trigger a V8 heap snapshot for memory analysis',
|
|
1335
|
+
name: 'heap-dump',
|
|
1336
|
+
options: [
|
|
1337
|
+
{ default: './heap-dumps', description: 'Output directory', flag: '-o, --out <path>' },
|
|
1338
|
+
{ default: 'manual-dump', description: 'File prefix', flag: '-p, --prefix <prefix>' }
|
|
1339
|
+
]
|
|
1340
|
+
},
|
|
1341
|
+
{
|
|
1342
|
+
description: 'Reset all monitoring data (metrics, profiles)',
|
|
1343
|
+
name: 'reset'
|
|
1344
|
+
}
|
|
1345
|
+
],
|
|
1346
|
+
workflowPhase: 'system'
|
|
1347
|
+
},
|
|
1348
|
+
rollout: {
|
|
1349
|
+
agent: 'system',
|
|
1350
|
+
description: 'Monitor dynamic agent selection rollout status, analytics, and success metrics',
|
|
1351
|
+
examples: [
|
|
1352
|
+
{
|
|
1353
|
+
code: 'valora rollout --status',
|
|
1354
|
+
description: 'Show current rollout status'
|
|
1355
|
+
},
|
|
1356
|
+
{
|
|
1357
|
+
code: 'valora rollout --analytics 24',
|
|
1358
|
+
description: 'Show analytics for last 24 hours'
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
code: 'valora rollout --metrics',
|
|
1362
|
+
description: 'Show success metrics'
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
code: 'valora rollout --export ./data.json',
|
|
1366
|
+
description: 'Export analytics to file'
|
|
1367
|
+
}
|
|
1368
|
+
],
|
|
1369
|
+
name: 'rollout',
|
|
1370
|
+
options: [
|
|
1371
|
+
{
|
|
1372
|
+
description: 'Show current rollout status and feature flags',
|
|
1373
|
+
flag: '--status'
|
|
1374
|
+
},
|
|
1375
|
+
{
|
|
1376
|
+
default: '24',
|
|
1377
|
+
description: 'Show analytics for last N hours',
|
|
1378
|
+
flag: '--analytics <hours>'
|
|
1379
|
+
},
|
|
1380
|
+
{
|
|
1381
|
+
description: 'Show success metrics for rollout evaluation',
|
|
1382
|
+
flag: '--metrics'
|
|
1383
|
+
},
|
|
1384
|
+
{
|
|
1385
|
+
description: 'Export analytics data to JSON file',
|
|
1386
|
+
flag: '--export <file>'
|
|
1387
|
+
}
|
|
1388
|
+
],
|
|
1389
|
+
relatedCommands: ['monitoring', 'config'],
|
|
1390
|
+
workflowPhase: 'system'
|
|
1391
|
+
},
|
|
1392
|
+
session: {
|
|
1393
|
+
agent: 'system',
|
|
1394
|
+
description: 'Manage sessions including listing, resuming, browsing, cleanup, export, and import',
|
|
1395
|
+
examples: [
|
|
1396
|
+
{
|
|
1397
|
+
code: 'valora session list',
|
|
1398
|
+
description: 'List all sessions'
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
code: 'valora session resume --auto',
|
|
1402
|
+
description: 'Resume most recent session'
|
|
1403
|
+
},
|
|
1404
|
+
{
|
|
1405
|
+
code: 'valora session browse',
|
|
1406
|
+
description: 'Interactive session browser'
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
code: 'valora session clean --older-than 30',
|
|
1410
|
+
description: 'Clean old sessions'
|
|
1411
|
+
}
|
|
1412
|
+
],
|
|
1413
|
+
name: 'session',
|
|
1414
|
+
options: [],
|
|
1415
|
+
relatedCommands: ['dashboard', 'config'],
|
|
1416
|
+
subcommands: [
|
|
1417
|
+
{
|
|
1418
|
+
description: 'List all sessions with filtering and sorting options',
|
|
1419
|
+
name: 'list',
|
|
1420
|
+
options: [
|
|
1421
|
+
{ description: 'Show detailed session information', flag: '-v, --verbose' },
|
|
1422
|
+
{ description: 'Filter by status (active, paused, completed, failed)', flag: '--status <status>' },
|
|
1423
|
+
{ default: 'date', description: 'Sort by field', flag: '--sort <field>' }
|
|
1424
|
+
]
|
|
1425
|
+
},
|
|
1426
|
+
{
|
|
1427
|
+
description: 'Resume a session with smart suggestions',
|
|
1428
|
+
name: 'resume [sessionId]',
|
|
1429
|
+
options: [{ description: 'Auto-select most recent session', flag: '--auto' }]
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
description: 'Interactive session browser (alias: b)',
|
|
1433
|
+
name: 'browse'
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
description: 'Interactive session cleanup with preview (alias: cleanup)',
|
|
1437
|
+
name: 'clean',
|
|
1438
|
+
options: [
|
|
1439
|
+
{ description: 'Delete sessions older than N days', flag: '--older-than <days>' },
|
|
1440
|
+
{ description: 'Delete sessions with specific status', flag: '--status <status>' },
|
|
1441
|
+
{ description: 'Use configured retention policy', flag: '--retention' },
|
|
1442
|
+
{ description: 'Preview without deleting', flag: '--dry-run' },
|
|
1443
|
+
{ description: 'Skip confirmation prompts', flag: '--force' },
|
|
1444
|
+
{ description: 'Non-interactive mode', flag: '--no-interactive' }
|
|
1445
|
+
]
|
|
1446
|
+
},
|
|
1447
|
+
{
|
|
1448
|
+
description: 'Archive a session (mark as completed)',
|
|
1449
|
+
name: 'archive <sessionId>'
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
description: 'Delete a specific session permanently',
|
|
1453
|
+
name: 'delete <sessionId>',
|
|
1454
|
+
options: [{ description: 'Skip confirmation prompt', flag: '-f, --force' }]
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
description: 'Export session as ZIP archive for transfer or backup',
|
|
1458
|
+
name: 'export <sessionId> [outputPath]',
|
|
1459
|
+
options: [{ description: 'Exclude session artifacts', flag: '--no-artifacts' }]
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
description: 'Import session from ZIP archive',
|
|
1463
|
+
name: 'import <zipPath> [sessionId]',
|
|
1464
|
+
options: [{ description: 'Overwrite existing session', flag: '--overwrite' }]
|
|
1465
|
+
},
|
|
1466
|
+
{
|
|
1467
|
+
description: 'Show detailed session information',
|
|
1468
|
+
name: 'show <sessionId>',
|
|
1469
|
+
options: [
|
|
1470
|
+
{ description: 'Show detailed file changes', flag: '--files' },
|
|
1471
|
+
{ description: 'Show full context details', flag: '--context' },
|
|
1472
|
+
{ description: 'Hide metrics section', flag: '--no-metrics' }
|
|
1473
|
+
]
|
|
1474
|
+
}
|
|
1475
|
+
],
|
|
1476
|
+
workflowPhase: 'system'
|
|
1477
|
+
}
|
|
1478
|
+
};
|
|
1479
|
+
/**
|
|
1480
|
+
* Get help for a specific command
|
|
1481
|
+
*/
|
|
1482
|
+
export function getCommandHelp(commandName) {
|
|
1483
|
+
return COMMAND_HELP[commandName];
|
|
1484
|
+
}
|
|
1485
|
+
/**
|
|
1486
|
+
* Get all command names
|
|
1487
|
+
*/
|
|
1488
|
+
export function getAllCommandNames() {
|
|
1489
|
+
return Object.keys(COMMAND_HELP).sort();
|
|
1490
|
+
}
|
|
1491
|
+
/**
|
|
1492
|
+
* Search commands by keyword
|
|
1493
|
+
*/
|
|
1494
|
+
export function searchCommands(keyword) {
|
|
1495
|
+
const lowerKeyword = keyword.toLowerCase();
|
|
1496
|
+
return Object.values(COMMAND_HELP).filter((help) => help.name.includes(lowerKeyword) ||
|
|
1497
|
+
help.description.toLowerCase().includes(lowerKeyword) ||
|
|
1498
|
+
help.workflowPhase.toLowerCase().includes(lowerKeyword));
|
|
1499
|
+
}
|
|
1500
|
+
/**
|
|
1501
|
+
* Get commands by workflow phase
|
|
1502
|
+
*/
|
|
1503
|
+
export function getCommandsByPhase(phase) {
|
|
1504
|
+
return Object.values(COMMAND_HELP).filter((help) => help.workflowPhase === phase);
|
|
1505
|
+
}
|
|
1506
|
+
/**
|
|
1507
|
+
* Check if command exists
|
|
1508
|
+
*/
|
|
1509
|
+
export function hasCommandHelp(commandName) {
|
|
1510
|
+
return commandName in COMMAND_HELP;
|
|
1511
|
+
}
|
|
1512
|
+
//# sourceMappingURL=help-content.js.map
|