@harness-forge/cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agents/skills/api-contract-review/SKILL.md +23 -0
- package/.agents/skills/architecture-decision-records/SKILL.md +23 -0
- package/.agents/skills/cloud-architect/SKILL.md +21 -0
- package/.agents/skills/cpp-engineering/SKILL.md +21 -0
- package/.agents/skills/db-migration-review/SKILL.md +23 -0
- package/.agents/skills/documentation-lookup/SKILL.md +8 -0
- package/.agents/skills/dotnet-engineering/SKILL.md +29 -0
- package/.agents/skills/go-engineering/SKILL.md +21 -0
- package/.agents/skills/java-engineering/SKILL.md +24 -0
- package/.agents/skills/javascript-engineering/SKILL.md +31 -0
- package/.agents/skills/kotlin-engineering/SKILL.md +21 -0
- package/.agents/skills/lua-engineering/SKILL.md +28 -0
- package/.agents/skills/parallel-worktree-supervisor/SKILL.md +23 -0
- package/.agents/skills/perl-engineering/SKILL.md +21 -0
- package/.agents/skills/php-engineering/SKILL.md +21 -0
- package/.agents/skills/powershell-engineering/SKILL.md +24 -0
- package/.agents/skills/python-engineering/SKILL.md +22 -0
- package/.agents/skills/release-readiness/SKILL.md +8 -0
- package/.agents/skills/repo-modernization/SKILL.md +23 -0
- package/.agents/skills/repo-onboarding/SKILL.md +23 -0
- package/.agents/skills/rust-engineering/SKILL.md +21 -0
- package/.agents/skills/security-scan/SKILL.md +8 -0
- package/.agents/skills/shell-engineering/SKILL.md +21 -0
- package/.agents/skills/speckit-analyze/SKILL.md +190 -0
- package/.agents/skills/speckit-checklist/SKILL.md +301 -0
- package/.agents/skills/speckit-clarify/SKILL.md +183 -0
- package/.agents/skills/speckit-constitution/SKILL.md +86 -0
- package/.agents/skills/speckit-implement/SKILL.md +204 -0
- package/.agents/skills/speckit-plan/SKILL.md +151 -0
- package/.agents/skills/speckit-specify/SKILL.md +304 -0
- package/.agents/skills/speckit-tasks/SKILL.md +197 -0
- package/.agents/skills/speckit-taskstoissues/SKILL.md +35 -0
- package/.agents/skills/swift-engineering/SKILL.md +21 -0
- package/.agents/skills/typescript-engineering/SKILL.md +28 -0
- package/.specify/README.md +3 -0
- package/.specify/extensions.yml +3 -0
- package/.specify/init-options.json +5 -0
- package/.specify/memory/constitution.md +5 -0
- package/.specify/scripts/powershell/check-prerequisites.ps1 +54 -0
- package/.specify/scripts/powershell/common.ps1 +263 -0
- package/.specify/scripts/powershell/create-new-feature.ps1 +23 -0
- package/.specify/scripts/powershell/setup-plan.ps1 +10 -0
- package/.specify/scripts/powershell/update-agent-context.ps1 +6 -0
- package/.specify/state/agent-context.md +1 -0
- package/.specify/state/flow-state.json +21 -0
- package/.specify/templates/agent-file-template.md +40 -0
- package/.specify/templates/checklist-template.md +5 -0
- package/.specify/templates/commands/plan.md +1 -0
- package/.specify/templates/commands/specify.md +1 -0
- package/.specify/templates/commands/tasks.md +1 -0
- package/.specify/templates/constitution-template.md +5 -0
- package/.specify/templates/plan-template.md +9 -0
- package/.specify/templates/spec-template.md +9 -0
- package/.specify/templates/tasks-template.md +5 -0
- package/AGENTS.md +75 -0
- package/CHANGELOG.md +15 -0
- package/CONTRIBUTING.md +38 -0
- package/LICENSE +674 -0
- package/README.md +386 -0
- package/RESEARCH-SOURCES.md +75 -0
- package/VALIDATION.md +32 -0
- package/agents/planner.md +49 -0
- package/commands/plan.md +41 -0
- package/commands/test.md +41 -0
- package/contexts/dev.md +25 -0
- package/dist/application/flow/load-flow-state.d.ts +17 -0
- package/dist/application/flow/load-flow-state.d.ts.map +1 -0
- package/dist/application/flow/load-flow-state.js +123 -0
- package/dist/application/flow/load-flow-state.js.map +1 -0
- package/dist/application/flow/save-flow-state.d.ts +3 -0
- package/dist/application/flow/save-flow-state.d.ts.map +1 -0
- package/dist/application/flow/save-flow-state.js +13 -0
- package/dist/application/flow/save-flow-state.js.map +1 -0
- package/dist/application/install/agent-manifest.d.ts +42 -0
- package/dist/application/install/agent-manifest.d.ts.map +1 -0
- package/dist/application/install/agent-manifest.js +144 -0
- package/dist/application/install/agent-manifest.js.map +1 -0
- package/dist/application/install/apply-install.d.ts +6 -0
- package/dist/application/install/apply-install.d.ts.map +1 -0
- package/dist/application/install/apply-install.js +83 -0
- package/dist/application/install/apply-install.js.map +1 -0
- package/dist/application/install/bootstrap-workspace.d.ts +33 -0
- package/dist/application/install/bootstrap-workspace.d.ts.map +1 -0
- package/dist/application/install/bootstrap-workspace.js +123 -0
- package/dist/application/install/bootstrap-workspace.js.map +1 -0
- package/dist/application/install/discover-workspace-targets.d.ts +9 -0
- package/dist/application/install/discover-workspace-targets.d.ts.map +1 -0
- package/dist/application/install/discover-workspace-targets.js +61 -0
- package/dist/application/install/discover-workspace-targets.js.map +1 -0
- package/dist/application/install/generate-guidance.d.ts +3 -0
- package/dist/application/install/generate-guidance.d.ts.map +1 -0
- package/dist/application/install/generate-guidance.js +25 -0
- package/dist/application/install/generate-guidance.js.map +1 -0
- package/dist/application/install/initialize-workspace.d.ts +16 -0
- package/dist/application/install/initialize-workspace.d.ts.map +1 -0
- package/dist/application/install/initialize-workspace.js +165 -0
- package/dist/application/install/initialize-workspace.js.map +1 -0
- package/dist/application/install/plan-install.d.ts +9 -0
- package/dist/application/install/plan-install.d.ts.map +1 -0
- package/dist/application/install/plan-install.js +123 -0
- package/dist/application/install/plan-install.js.map +1 -0
- package/dist/application/install/reconcile-state.d.ts +6 -0
- package/dist/application/install/reconcile-state.d.ts.map +1 -0
- package/dist/application/install/reconcile-state.js +39 -0
- package/dist/application/install/reconcile-state.js.map +1 -0
- package/dist/application/install/refresh-workspace-runtime.d.ts +9 -0
- package/dist/application/install/refresh-workspace-runtime.d.ts.map +1 -0
- package/dist/application/install/refresh-workspace-runtime.js +69 -0
- package/dist/application/install/refresh-workspace-runtime.js.map +1 -0
- package/dist/application/install/rewrite-installed-ai-layer.d.ts +3 -0
- package/dist/application/install/rewrite-installed-ai-layer.d.ts.map +1 -0
- package/dist/application/install/rewrite-installed-ai-layer.js +72 -0
- package/dist/application/install/rewrite-installed-ai-layer.js.map +1 -0
- package/dist/application/install/shared-runtime.d.ts +5 -0
- package/dist/application/install/shared-runtime.d.ts.map +1 -0
- package/dist/application/install/shared-runtime.js +388 -0
- package/dist/application/install/shared-runtime.js.map +1 -0
- package/dist/application/install/shell-integration.d.ts +40 -0
- package/dist/application/install/shell-integration.d.ts.map +1 -0
- package/dist/application/install/shell-integration.js +232 -0
- package/dist/application/install/shell-integration.js.map +1 -0
- package/dist/application/install/validate-environment.d.ts +2 -0
- package/dist/application/install/validate-environment.d.ts.map +1 -0
- package/dist/application/install/validate-environment.js +19 -0
- package/dist/application/install/validate-environment.js.map +1 -0
- package/dist/application/install/workspace-launcher.d.ts +7 -0
- package/dist/application/install/workspace-launcher.d.ts.map +1 -0
- package/dist/application/install/workspace-launcher.js +45 -0
- package/dist/application/install/workspace-launcher.js.map +1 -0
- package/dist/application/maintenance/audit-install.d.ts +17 -0
- package/dist/application/maintenance/audit-install.d.ts.map +1 -0
- package/dist/application/maintenance/audit-install.js +31 -0
- package/dist/application/maintenance/audit-install.js.map +1 -0
- package/dist/application/maintenance/diff-install.d.ts +7 -0
- package/dist/application/maintenance/diff-install.d.ts.map +1 -0
- package/dist/application/maintenance/diff-install.js +20 -0
- package/dist/application/maintenance/diff-install.js.map +1 -0
- package/dist/application/maintenance/doctor-workspace.d.ts +6 -0
- package/dist/application/maintenance/doctor-workspace.d.ts.map +1 -0
- package/dist/application/maintenance/doctor-workspace.js +12 -0
- package/dist/application/maintenance/doctor-workspace.js.map +1 -0
- package/dist/application/maintenance/prune-install.d.ts +5 -0
- package/dist/application/maintenance/prune-install.d.ts.map +1 -0
- package/dist/application/maintenance/prune-install.js +30 -0
- package/dist/application/maintenance/prune-install.js.map +1 -0
- package/dist/application/maintenance/sync-install.d.ts +6 -0
- package/dist/application/maintenance/sync-install.d.ts.map +1 -0
- package/dist/application/maintenance/sync-install.js +24 -0
- package/dist/application/maintenance/sync-install.js.map +1 -0
- package/dist/application/maintenance/upgrade-surface.d.ts +7 -0
- package/dist/application/maintenance/upgrade-surface.d.ts.map +1 -0
- package/dist/application/maintenance/upgrade-surface.js +18 -0
- package/dist/application/maintenance/upgrade-surface.js.map +1 -0
- package/dist/application/migration/scan-reference-install.d.ts +9 -0
- package/dist/application/migration/scan-reference-install.d.ts.map +1 -0
- package/dist/application/migration/scan-reference-install.js +17 -0
- package/dist/application/migration/scan-reference-install.js.map +1 -0
- package/dist/application/planning/resolve-bundles.d.ts +8 -0
- package/dist/application/planning/resolve-bundles.d.ts.map +1 -0
- package/dist/application/planning/resolve-bundles.js +40 -0
- package/dist/application/planning/resolve-bundles.js.map +1 -0
- package/dist/application/recommendations/recommend-bundles.d.ts +2 -0
- package/dist/application/recommendations/recommend-bundles.d.ts.map +1 -0
- package/dist/application/recommendations/recommend-bundles.js +89 -0
- package/dist/application/recommendations/recommend-bundles.js.map +1 -0
- package/dist/application/recommendations/recommend-from-intelligence.d.ts +3 -0
- package/dist/application/recommendations/recommend-from-intelligence.d.ts.map +1 -0
- package/dist/application/recommendations/recommend-from-intelligence.js +38 -0
- package/dist/application/recommendations/recommend-from-intelligence.js.map +1 -0
- package/dist/application/recommendations/recommend-templates.d.ts +2 -0
- package/dist/application/recommendations/recommend-templates.d.ts.map +1 -0
- package/dist/application/recommendations/recommend-templates.js +11 -0
- package/dist/application/recommendations/recommend-templates.js.map +1 -0
- package/dist/application/recursive/build-environment.d.ts +12 -0
- package/dist/application/recursive/build-environment.d.ts.map +1 -0
- package/dist/application/recursive/build-environment.js +91 -0
- package/dist/application/recursive/build-environment.js.map +1 -0
- package/dist/application/recursive/compact-session.d.ts +6 -0
- package/dist/application/recursive/compact-session.d.ts.map +1 -0
- package/dist/application/recursive/compact-session.js +10 -0
- package/dist/application/recursive/compact-session.js.map +1 -0
- package/dist/application/recursive/finalize-session.d.ts +6 -0
- package/dist/application/recursive/finalize-session.d.ts.map +1 -0
- package/dist/application/recursive/finalize-session.js +10 -0
- package/dist/application/recursive/finalize-session.js.map +1 -0
- package/dist/application/recursive/plan-task.d.ts +16 -0
- package/dist/application/recursive/plan-task.d.ts.map +1 -0
- package/dist/application/recursive/plan-task.js +115 -0
- package/dist/application/recursive/plan-task.js.map +1 -0
- package/dist/application/runtime/assess-architecture-significance.d.ts +13 -0
- package/dist/application/runtime/assess-architecture-significance.d.ts.map +1 -0
- package/dist/application/runtime/assess-architecture-significance.js +65 -0
- package/dist/application/runtime/assess-architecture-significance.js.map +1 -0
- package/dist/application/runtime/command-catalog.d.ts +17 -0
- package/dist/application/runtime/command-catalog.d.ts.map +1 -0
- package/dist/application/runtime/command-catalog.js +99 -0
- package/dist/application/runtime/command-catalog.js.map +1 -0
- package/dist/application/runtime/create-asr-record.d.ts +18 -0
- package/dist/application/runtime/create-asr-record.d.ts.map +1 -0
- package/dist/application/runtime/create-asr-record.js +105 -0
- package/dist/application/runtime/create-asr-record.js.map +1 -0
- package/dist/application/runtime/decision-runtime-store.d.ts +13 -0
- package/dist/application/runtime/decision-runtime-store.d.ts.map +1 -0
- package/dist/application/runtime/decision-runtime-store.js +60 -0
- package/dist/application/runtime/decision-runtime-store.js.map +1 -0
- package/dist/application/runtime/derive-impact-analysis.d.ts +5 -0
- package/dist/application/runtime/derive-impact-analysis.d.ts.map +1 -0
- package/dist/application/runtime/derive-impact-analysis.js +78 -0
- package/dist/application/runtime/derive-impact-analysis.js.map +1 -0
- package/dist/application/runtime/select-files-of-interest.d.ts +29 -0
- package/dist/application/runtime/select-files-of-interest.d.ts.map +1 -0
- package/dist/application/runtime/select-files-of-interest.js +162 -0
- package/dist/application/runtime/select-files-of-interest.js.map +1 -0
- package/dist/application/runtime/task-runtime-store.d.ts +37 -0
- package/dist/application/runtime/task-runtime-store.d.ts.map +1 -0
- package/dist/application/runtime/task-runtime-store.js +84 -0
- package/dist/application/runtime/task-runtime-store.js.map +1 -0
- package/dist/application/validation/validate-templates.d.ts +19 -0
- package/dist/application/validation/validate-templates.d.ts.map +1 -0
- package/dist/application/validation/validate-templates.js +142 -0
- package/dist/application/validation/validate-templates.js.map +1 -0
- package/dist/cli/commands/audit.d.ts +3 -0
- package/dist/cli/commands/audit.d.ts.map +1 -0
- package/dist/cli/commands/audit.js +37 -0
- package/dist/cli/commands/audit.js.map +1 -0
- package/dist/cli/commands/catalog.d.ts +3 -0
- package/dist/cli/commands/catalog.d.ts.map +1 -0
- package/dist/cli/commands/catalog.js +142 -0
- package/dist/cli/commands/catalog.js.map +1 -0
- package/dist/cli/commands/commands.d.ts +3 -0
- package/dist/cli/commands/commands.d.ts.map +1 -0
- package/dist/cli/commands/commands.js +32 -0
- package/dist/cli/commands/commands.js.map +1 -0
- package/dist/cli/commands/diff-install.d.ts +3 -0
- package/dist/cli/commands/diff-install.d.ts.map +1 -0
- package/dist/cli/commands/diff-install.js +31 -0
- package/dist/cli/commands/diff-install.js.map +1 -0
- package/dist/cli/commands/doctor.d.ts +3 -0
- package/dist/cli/commands/doctor.d.ts.map +1 -0
- package/dist/cli/commands/doctor.js +33 -0
- package/dist/cli/commands/doctor.js.map +1 -0
- package/dist/cli/commands/export.d.ts +3 -0
- package/dist/cli/commands/export.d.ts.map +1 -0
- package/dist/cli/commands/export.js +37 -0
- package/dist/cli/commands/export.js.map +1 -0
- package/dist/cli/commands/flow.d.ts +3 -0
- package/dist/cli/commands/flow.d.ts.map +1 -0
- package/dist/cli/commands/flow.js +27 -0
- package/dist/cli/commands/flow.js.map +1 -0
- package/dist/cli/commands/init.d.ts +3 -0
- package/dist/cli/commands/init.d.ts.map +1 -0
- package/dist/cli/commands/init.js +91 -0
- package/dist/cli/commands/init.js.map +1 -0
- package/dist/cli/commands/install.d.ts +3 -0
- package/dist/cli/commands/install.d.ts.map +1 -0
- package/dist/cli/commands/install.js +119 -0
- package/dist/cli/commands/install.js.map +1 -0
- package/dist/cli/commands/intelligence.d.ts +3 -0
- package/dist/cli/commands/intelligence.d.ts.map +1 -0
- package/dist/cli/commands/intelligence.js +63 -0
- package/dist/cli/commands/intelligence.js.map +1 -0
- package/dist/cli/commands/maintenance.d.ts +3 -0
- package/dist/cli/commands/maintenance.d.ts.map +1 -0
- package/dist/cli/commands/maintenance.js +81 -0
- package/dist/cli/commands/maintenance.js.map +1 -0
- package/dist/cli/commands/observability.d.ts +3 -0
- package/dist/cli/commands/observability.d.ts.map +1 -0
- package/dist/cli/commands/observability.js +33 -0
- package/dist/cli/commands/observability.js.map +1 -0
- package/dist/cli/commands/pack.d.ts +3 -0
- package/dist/cli/commands/pack.d.ts.map +1 -0
- package/dist/cli/commands/pack.js +25 -0
- package/dist/cli/commands/pack.js.map +1 -0
- package/dist/cli/commands/parallel.d.ts +3 -0
- package/dist/cli/commands/parallel.d.ts.map +1 -0
- package/dist/cli/commands/parallel.js +45 -0
- package/dist/cli/commands/parallel.js.map +1 -0
- package/dist/cli/commands/prune.d.ts +3 -0
- package/dist/cli/commands/prune.d.ts.map +1 -0
- package/dist/cli/commands/prune.js +25 -0
- package/dist/cli/commands/prune.js.map +1 -0
- package/dist/cli/commands/recommend.d.ts +3 -0
- package/dist/cli/commands/recommend.d.ts.map +1 -0
- package/dist/cli/commands/recommend.js +25 -0
- package/dist/cli/commands/recommend.js.map +1 -0
- package/dist/cli/commands/recursive.d.ts +3 -0
- package/dist/cli/commands/recursive.d.ts.map +1 -0
- package/dist/cli/commands/recursive.js +138 -0
- package/dist/cli/commands/recursive.js.map +1 -0
- package/dist/cli/commands/refresh.d.ts +3 -0
- package/dist/cli/commands/refresh.d.ts.map +1 -0
- package/dist/cli/commands/refresh.js +33 -0
- package/dist/cli/commands/refresh.js.map +1 -0
- package/dist/cli/commands/review.d.ts +3 -0
- package/dist/cli/commands/review.d.ts.map +1 -0
- package/dist/cli/commands/review.js +53 -0
- package/dist/cli/commands/review.js.map +1 -0
- package/dist/cli/commands/script-runner.d.ts +2 -0
- package/dist/cli/commands/script-runner.d.ts.map +1 -0
- package/dist/cli/commands/script-runner.js +21 -0
- package/dist/cli/commands/script-runner.js.map +1 -0
- package/dist/cli/commands/shell.d.ts +3 -0
- package/dist/cli/commands/shell.d.ts.map +1 -0
- package/dist/cli/commands/shell.js +91 -0
- package/dist/cli/commands/shell.js.map +1 -0
- package/dist/cli/commands/status.d.ts +3 -0
- package/dist/cli/commands/status.d.ts.map +1 -0
- package/dist/cli/commands/status.js +31 -0
- package/dist/cli/commands/status.js.map +1 -0
- package/dist/cli/commands/sync.d.ts +3 -0
- package/dist/cli/commands/sync.d.ts.map +1 -0
- package/dist/cli/commands/sync.js +25 -0
- package/dist/cli/commands/sync.js.map +1 -0
- package/dist/cli/commands/target.d.ts +3 -0
- package/dist/cli/commands/target.d.ts.map +1 -0
- package/dist/cli/commands/target.js +78 -0
- package/dist/cli/commands/target.js.map +1 -0
- package/dist/cli/commands/task.d.ts +3 -0
- package/dist/cli/commands/task.d.ts.map +1 -0
- package/dist/cli/commands/task.js +57 -0
- package/dist/cli/commands/task.js.map +1 -0
- package/dist/cli/commands/template.d.ts +3 -0
- package/dist/cli/commands/template.d.ts.map +1 -0
- package/dist/cli/commands/template.js +81 -0
- package/dist/cli/commands/template.js.map +1 -0
- package/dist/cli/commands/upgrade-surface.d.ts +3 -0
- package/dist/cli/commands/upgrade-surface.d.ts.map +1 -0
- package/dist/cli/commands/upgrade-surface.js +24 -0
- package/dist/cli/commands/upgrade-surface.js.map +1 -0
- package/dist/cli/index.d.ts +3 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +86 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/interactive/default-recommendations.d.ts +9 -0
- package/dist/cli/interactive/default-recommendations.d.ts.map +1 -0
- package/dist/cli/interactive/default-recommendations.js +19 -0
- package/dist/cli/interactive/default-recommendations.js.map +1 -0
- package/dist/cli/interactive/entry-router.d.ts +5 -0
- package/dist/cli/interactive/entry-router.d.ts.map +1 -0
- package/dist/cli/interactive/entry-router.js +30 -0
- package/dist/cli/interactive/entry-router.js.map +1 -0
- package/dist/cli/interactive/invocation-context.d.ts +16 -0
- package/dist/cli/interactive/invocation-context.d.ts.map +1 -0
- package/dist/cli/interactive/invocation-context.js +33 -0
- package/dist/cli/interactive/invocation-context.js.map +1 -0
- package/dist/cli/interactive/onboarding-flow.d.ts +3 -0
- package/dist/cli/interactive/onboarding-flow.d.ts.map +1 -0
- package/dist/cli/interactive/onboarding-flow.js +81 -0
- package/dist/cli/interactive/onboarding-flow.js.map +1 -0
- package/dist/cli/interactive/project-hub.d.ts +3 -0
- package/dist/cli/interactive/project-hub.d.ts.map +1 -0
- package/dist/cli/interactive/project-hub.js +159 -0
- package/dist/cli/interactive/project-hub.js.map +1 -0
- package/dist/cli/interactive/prompt-io.d.ts +23 -0
- package/dist/cli/interactive/prompt-io.d.ts.map +1 -0
- package/dist/cli/interactive/prompt-io.js +144 -0
- package/dist/cli/interactive/prompt-io.js.map +1 -0
- package/dist/cli/interactive/prompts/folder-selection.d.ts +3 -0
- package/dist/cli/interactive/prompts/folder-selection.d.ts.map +1 -0
- package/dist/cli/interactive/prompts/folder-selection.js +25 -0
- package/dist/cli/interactive/prompts/folder-selection.js.map +1 -0
- package/dist/cli/interactive/prompts/module-selection.d.ts +4 -0
- package/dist/cli/interactive/prompts/module-selection.d.ts.map +1 -0
- package/dist/cli/interactive/prompts/module-selection.js +21 -0
- package/dist/cli/interactive/prompts/module-selection.js.map +1 -0
- package/dist/cli/interactive/prompts/setup-profile.d.ts +4 -0
- package/dist/cli/interactive/prompts/setup-profile.d.ts.map +1 -0
- package/dist/cli/interactive/prompts/setup-profile.js +20 -0
- package/dist/cli/interactive/prompts/setup-profile.js.map +1 -0
- package/dist/cli/interactive/prompts/target-selection.d.ts +3 -0
- package/dist/cli/interactive/prompts/target-selection.d.ts.map +1 -0
- package/dist/cli/interactive/prompts/target-selection.js +28 -0
- package/dist/cli/interactive/prompts/target-selection.js.map +1 -0
- package/dist/cli/interactive/recovery-notices.d.ts +3 -0
- package/dist/cli/interactive/recovery-notices.d.ts.map +1 -0
- package/dist/cli/interactive/recovery-notices.js +13 -0
- package/dist/cli/interactive/recovery-notices.js.map +1 -0
- package/dist/cli/interactive/renderers/choice-list.d.ts +2 -0
- package/dist/cli/interactive/renderers/choice-list.d.ts.map +1 -0
- package/dist/cli/interactive/renderers/choice-list.js +9 -0
- package/dist/cli/interactive/renderers/choice-list.js.map +1 -0
- package/dist/cli/interactive/renderers/completion-screen.d.ts +4 -0
- package/dist/cli/interactive/renderers/completion-screen.d.ts.map +1 -0
- package/dist/cli/interactive/renderers/completion-screen.js +16 -0
- package/dist/cli/interactive/renderers/completion-screen.js.map +1 -0
- package/dist/cli/interactive/renderers/hub-screen.d.ts +3 -0
- package/dist/cli/interactive/renderers/hub-screen.d.ts.map +1 -0
- package/dist/cli/interactive/renderers/hub-screen.js +12 -0
- package/dist/cli/interactive/renderers/hub-screen.js.map +1 -0
- package/dist/cli/interactive/renderers/progress.d.ts +3 -0
- package/dist/cli/interactive/renderers/progress.d.ts.map +1 -0
- package/dist/cli/interactive/renderers/progress.js +5 -0
- package/dist/cli/interactive/renderers/progress.js.map +1 -0
- package/dist/cli/interactive/renderers/screen-layout.d.ts +9 -0
- package/dist/cli/interactive/renderers/screen-layout.d.ts.map +1 -0
- package/dist/cli/interactive/renderers/screen-layout.js +27 -0
- package/dist/cli/interactive/renderers/screen-layout.js.map +1 -0
- package/dist/cli/interactive/renderers/step-frame.d.ts +3 -0
- package/dist/cli/interactive/renderers/step-frame.d.ts.map +1 -0
- package/dist/cli/interactive/renderers/step-frame.js +7 -0
- package/dist/cli/interactive/renderers/step-frame.js.map +1 -0
- package/dist/cli/interactive/renderers/text-style.d.ts +10 -0
- package/dist/cli/interactive/renderers/text-style.d.ts.map +1 -0
- package/dist/cli/interactive/renderers/text-style.js +52 -0
- package/dist/cli/interactive/renderers/text-style.js.map +1 -0
- package/dist/cli/interactive/renderers/welcome-screen.d.ts +3 -0
- package/dist/cli/interactive/renderers/welcome-screen.d.ts.map +1 -0
- package/dist/cli/interactive/renderers/welcome-screen.js +22 -0
- package/dist/cli/interactive/renderers/welcome-screen.js.map +1 -0
- package/dist/cli/interactive/review-plan.d.ts +19 -0
- package/dist/cli/interactive/review-plan.d.ts.map +1 -0
- package/dist/cli/interactive/review-plan.js +151 -0
- package/dist/cli/interactive/review-plan.js.map +1 -0
- package/dist/cli/interactive/review-summary.d.ts +4 -0
- package/dist/cli/interactive/review-summary.d.ts.map +1 -0
- package/dist/cli/interactive/review-summary.js +20 -0
- package/dist/cli/interactive/review-summary.js.map +1 -0
- package/dist/cli/interactive/session-state.d.ts +35 -0
- package/dist/cli/interactive/session-state.d.ts.map +1 -0
- package/dist/cli/interactive/session-state.js +11 -0
- package/dist/cli/interactive/session-state.js.map +1 -0
- package/dist/cli/interactive/setup-intent.d.ts +32 -0
- package/dist/cli/interactive/setup-intent.d.ts.map +1 -0
- package/dist/cli/interactive/setup-intent.js +54 -0
- package/dist/cli/interactive/setup-intent.js.map +1 -0
- package/dist/cli/interactive/terminal-capabilities.d.ts +20 -0
- package/dist/cli/interactive/terminal-capabilities.d.ts.map +1 -0
- package/dist/cli/interactive/terminal-capabilities.js +69 -0
- package/dist/cli/interactive/terminal-capabilities.js.map +1 -0
- package/dist/domain/capabilities/capability-record.d.ts +25 -0
- package/dist/domain/capabilities/capability-record.d.ts.map +1 -0
- package/dist/domain/capabilities/capability-record.js +2 -0
- package/dist/domain/capabilities/capability-record.js.map +1 -0
- package/dist/domain/capabilities/capability-taxonomy.d.ts +11 -0
- package/dist/domain/capabilities/capability-taxonomy.d.ts.map +1 -0
- package/dist/domain/capabilities/capability-taxonomy.js +2 -0
- package/dist/domain/capabilities/capability-taxonomy.js.map +1 -0
- package/dist/domain/intelligence/instruction-plan.d.ts +26 -0
- package/dist/domain/intelligence/instruction-plan.d.ts.map +1 -0
- package/dist/domain/intelligence/instruction-plan.js +2 -0
- package/dist/domain/intelligence/instruction-plan.js.map +1 -0
- package/dist/domain/intelligence/repo-intelligence.d.ts +1007 -0
- package/dist/domain/intelligence/repo-intelligence.d.ts.map +1 -0
- package/dist/domain/intelligence/repo-intelligence.js +102 -0
- package/dist/domain/intelligence/repo-intelligence.js.map +1 -0
- package/dist/domain/intelligence/repo-map.d.ts +30 -0
- package/dist/domain/intelligence/repo-map.d.ts.map +1 -0
- package/dist/domain/intelligence/repo-map.js +2 -0
- package/dist/domain/intelligence/repo-map.js.map +1 -0
- package/dist/domain/manifests/index.d.ts +154 -0
- package/dist/domain/manifests/index.d.ts.map +1 -0
- package/dist/domain/manifests/index.js +37 -0
- package/dist/domain/manifests/index.js.map +1 -0
- package/dist/domain/observability/benchmark-expectation.d.ts +11 -0
- package/dist/domain/observability/benchmark-expectation.d.ts.map +1 -0
- package/dist/domain/observability/benchmark-expectation.js +2 -0
- package/dist/domain/observability/benchmark-expectation.js.map +1 -0
- package/dist/domain/observability/event.d.ts +17 -0
- package/dist/domain/observability/event.d.ts.map +1 -0
- package/dist/domain/observability/event.js +2 -0
- package/dist/domain/observability/event.js.map +1 -0
- package/dist/domain/observability/summary.d.ts +10 -0
- package/dist/domain/observability/summary.d.ts.map +1 -0
- package/dist/domain/observability/summary.js +2 -0
- package/dist/domain/observability/summary.js.map +1 -0
- package/dist/domain/operations/install-plan.d.ts +85 -0
- package/dist/domain/operations/install-plan.d.ts.map +1 -0
- package/dist/domain/operations/install-plan.js +2 -0
- package/dist/domain/operations/install-plan.js.map +1 -0
- package/dist/domain/parallel/merge-readiness.d.ts +10 -0
- package/dist/domain/parallel/merge-readiness.d.ts.map +1 -0
- package/dist/domain/parallel/merge-readiness.js +2 -0
- package/dist/domain/parallel/merge-readiness.js.map +1 -0
- package/dist/domain/parallel/parallel-plan.d.ts +24 -0
- package/dist/domain/parallel/parallel-plan.d.ts.map +1 -0
- package/dist/domain/parallel/parallel-plan.js +2 -0
- package/dist/domain/parallel/parallel-plan.js.map +1 -0
- package/dist/domain/parallel/shard-state.d.ts +11 -0
- package/dist/domain/parallel/shard-state.d.ts.map +1 -0
- package/dist/domain/parallel/shard-state.js +2 -0
- package/dist/domain/parallel/shard-state.js.map +1 -0
- package/dist/domain/recursive/adr-candidate.d.ts +45 -0
- package/dist/domain/recursive/adr-candidate.d.ts.map +1 -0
- package/dist/domain/recursive/adr-candidate.js +20 -0
- package/dist/domain/recursive/adr-candidate.js.map +1 -0
- package/dist/domain/recursive/asr.d.ts +41 -0
- package/dist/domain/recursive/asr.d.ts.map +1 -0
- package/dist/domain/recursive/asr.js +19 -0
- package/dist/domain/recursive/asr.js.map +1 -0
- package/dist/domain/recursive/budget.d.ts +47 -0
- package/dist/domain/recursive/budget.d.ts.map +1 -0
- package/dist/domain/recursive/budget.js +41 -0
- package/dist/domain/recursive/budget.js.map +1 -0
- package/dist/domain/recursive/session-summary.d.ts +56 -0
- package/dist/domain/recursive/session-summary.d.ts.map +1 -0
- package/dist/domain/recursive/session-summary.js +21 -0
- package/dist/domain/recursive/session-summary.js.map +1 -0
- package/dist/domain/recursive/session.d.ts +181 -0
- package/dist/domain/recursive/session.d.ts.map +1 -0
- package/dist/domain/recursive/session.js +41 -0
- package/dist/domain/recursive/session.js.map +1 -0
- package/dist/domain/recursive/template-registry.d.ts +83 -0
- package/dist/domain/recursive/template-registry.d.ts.map +1 -0
- package/dist/domain/recursive/template-registry.js +28 -0
- package/dist/domain/recursive/template-registry.js.map +1 -0
- package/dist/domain/recursive/trace-event.d.ts +61 -0
- package/dist/domain/recursive/trace-event.d.ts.map +1 -0
- package/dist/domain/recursive/trace-event.js +36 -0
- package/dist/domain/recursive/trace-event.js.map +1 -0
- package/dist/domain/runtime/architecture-significance.d.ts +35 -0
- package/dist/domain/runtime/architecture-significance.d.ts.map +1 -0
- package/dist/domain/runtime/architecture-significance.js +20 -0
- package/dist/domain/runtime/architecture-significance.js.map +1 -0
- package/dist/domain/runtime/decision-coverage-summary.d.ts +29 -0
- package/dist/domain/runtime/decision-coverage-summary.d.ts.map +1 -0
- package/dist/domain/runtime/decision-coverage-summary.js +14 -0
- package/dist/domain/runtime/decision-coverage-summary.js.map +1 -0
- package/dist/domain/runtime/decision-record.d.ts +482 -0
- package/dist/domain/runtime/decision-record.d.ts.map +1 -0
- package/dist/domain/runtime/decision-record.js +78 -0
- package/dist/domain/runtime/decision-record.js.map +1 -0
- package/dist/domain/runtime/file-interest.d.ts +148 -0
- package/dist/domain/runtime/file-interest.d.ts.map +1 -0
- package/dist/domain/runtime/file-interest.js +42 -0
- package/dist/domain/runtime/file-interest.js.map +1 -0
- package/dist/domain/runtime/impact-analysis.d.ts +122 -0
- package/dist/domain/runtime/impact-analysis.d.ts.map +1 -0
- package/dist/domain/runtime/impact-analysis.js +24 -0
- package/dist/domain/runtime/impact-analysis.js.map +1 -0
- package/dist/domain/runtime/task-pack.d.ts +278 -0
- package/dist/domain/runtime/task-pack.d.ts.map +1 -0
- package/dist/domain/runtime/task-pack.js +61 -0
- package/dist/domain/runtime/task-pack.js.map +1 -0
- package/dist/domain/runtime/template-registry.d.ts +100 -0
- package/dist/domain/runtime/template-registry.d.ts.map +1 -0
- package/dist/domain/runtime/template-registry.js +35 -0
- package/dist/domain/runtime/template-registry.js.map +1 -0
- package/dist/domain/runtime/working-memory.d.ts +44 -0
- package/dist/domain/runtime/working-memory.d.ts.map +1 -0
- package/dist/domain/runtime/working-memory.js +19 -0
- package/dist/domain/runtime/working-memory.js.map +1 -0
- package/dist/domain/state/install-state.d.ts +28 -0
- package/dist/domain/state/install-state.d.ts.map +1 -0
- package/dist/domain/state/install-state.js +15 -0
- package/dist/domain/state/install-state.js.map +1 -0
- package/dist/domain/targets/adapter.d.ts +18 -0
- package/dist/domain/targets/adapter.d.ts.map +1 -0
- package/dist/domain/targets/adapter.js +16 -0
- package/dist/domain/targets/adapter.js.map +1 -0
- package/dist/infrastructure/diagnostics/recommendation-reporter.d.ts +3 -0
- package/dist/infrastructure/diagnostics/recommendation-reporter.d.ts.map +1 -0
- package/dist/infrastructure/diagnostics/recommendation-reporter.js +44 -0
- package/dist/infrastructure/diagnostics/recommendation-reporter.js.map +1 -0
- package/dist/infrastructure/diagnostics/reporter.d.ts +6 -0
- package/dist/infrastructure/diagnostics/reporter.d.ts.map +1 -0
- package/dist/infrastructure/diagnostics/reporter.js +35 -0
- package/dist/infrastructure/diagnostics/reporter.js.map +1 -0
- package/dist/infrastructure/filesystem/apply-operation.d.ts +3 -0
- package/dist/infrastructure/filesystem/apply-operation.d.ts.map +1 -0
- package/dist/infrastructure/filesystem/apply-operation.js +75 -0
- package/dist/infrastructure/filesystem/apply-operation.js.map +1 -0
- package/dist/infrastructure/filesystem/normalize-target-path.d.ts +2 -0
- package/dist/infrastructure/filesystem/normalize-target-path.d.ts.map +1 -0
- package/dist/infrastructure/filesystem/normalize-target-path.js +11 -0
- package/dist/infrastructure/filesystem/normalize-target-path.js.map +1 -0
- package/dist/infrastructure/observability/local-metrics-store.d.ts +18 -0
- package/dist/infrastructure/observability/local-metrics-store.d.ts.map +1 -0
- package/dist/infrastructure/observability/local-metrics-store.js +35 -0
- package/dist/infrastructure/observability/local-metrics-store.js.map +1 -0
- package/dist/infrastructure/recursive/session-store.d.ts +45 -0
- package/dist/infrastructure/recursive/session-store.d.ts.map +1 -0
- package/dist/infrastructure/recursive/session-store.js +62 -0
- package/dist/infrastructure/recursive/session-store.js.map +1 -0
- package/dist/infrastructure/recursive/template-loader.d.ts +3 -0
- package/dist/infrastructure/recursive/template-loader.d.ts.map +1 -0
- package/dist/infrastructure/recursive/template-loader.js +19 -0
- package/dist/infrastructure/recursive/template-loader.js.map +1 -0
- package/dist/infrastructure/recursive/trace-logger.d.ts +3 -0
- package/dist/infrastructure/recursive/trace-logger.d.ts.map +1 -0
- package/dist/infrastructure/recursive/trace-logger.js +8 -0
- package/dist/infrastructure/recursive/trace-logger.js.map +1 -0
- package/dist/shared/constants.d.ts +97 -0
- package/dist/shared/constants.d.ts.map +1 -0
- package/dist/shared/constants.js +111 -0
- package/dist/shared/constants.js.map +1 -0
- package/dist/shared/errors.d.ts +8 -0
- package/dist/shared/errors.d.ts.map +1 -0
- package/dist/shared/errors.js +14 -0
- package/dist/shared/errors.js.map +1 -0
- package/dist/shared/fs.d.ts +8 -0
- package/dist/shared/fs.d.ts.map +1 -0
- package/dist/shared/fs.js +35 -0
- package/dist/shared/fs.js.map +1 -0
- package/dist/shared/index.d.ts +5 -0
- package/dist/shared/index.d.ts.map +1 -0
- package/dist/shared/index.js +5 -0
- package/dist/shared/index.js.map +1 -0
- package/dist/shared/seeded-knowledge.d.ts +8 -0
- package/dist/shared/seeded-knowledge.d.ts.map +1 -0
- package/dist/shared/seeded-knowledge.js +49 -0
- package/dist/shared/seeded-knowledge.js.map +1 -0
- package/docs/agents.md +45 -0
- package/docs/authoring/engineering-assistant-port.md +108 -0
- package/docs/authoring/enhanced-skill-import.md +89 -0
- package/docs/authoring/skills.md +53 -0
- package/docs/benchmark-scenarios.md +29 -0
- package/docs/catalog/framework-packs.md +22 -0
- package/docs/catalog/frameworks/aspnet-core.md +18 -0
- package/docs/catalog/frameworks/django.md +18 -0
- package/docs/catalog/frameworks/express.md +18 -0
- package/docs/catalog/frameworks/fastapi.md +18 -0
- package/docs/catalog/frameworks/gin.md +18 -0
- package/docs/catalog/frameworks/ktor.md +18 -0
- package/docs/catalog/frameworks/laravel.md +14 -0
- package/docs/catalog/frameworks/nextjs.md +14 -0
- package/docs/catalog/frameworks/react.md +18 -0
- package/docs/catalog/frameworks/spring-boot.md +18 -0
- package/docs/catalog/frameworks/symfony.md +18 -0
- package/docs/catalog/frameworks/vite.md +18 -0
- package/docs/catalog/language-packs.md +39 -0
- package/docs/catalog/languages/cpp.md +25 -0
- package/docs/catalog/languages/dotnet.md +59 -0
- package/docs/catalog/languages/go.md +29 -0
- package/docs/catalog/languages/java.md +60 -0
- package/docs/catalog/languages/kotlin.md +29 -0
- package/docs/catalog/languages/lua.md +59 -0
- package/docs/catalog/languages/perl.md +25 -0
- package/docs/catalog/languages/php.md +30 -0
- package/docs/catalog/languages/powershell.md +59 -0
- package/docs/catalog/languages/python.md +30 -0
- package/docs/catalog/languages/rust.md +25 -0
- package/docs/catalog/languages/shell.md +25 -0
- package/docs/catalog/languages/swift.md +25 -0
- package/docs/catalog/languages/typescript.md +60 -0
- package/docs/commands.md +202 -0
- package/docs/content-architecture.md +3 -0
- package/docs/flow-orchestration/parallel-execution.md +7 -0
- package/docs/flow-orchestration.md +63 -0
- package/docs/generated-artifacts.md +129 -0
- package/docs/hooks/catalog.md +44 -0
- package/docs/install/targets.md +29 -0
- package/docs/installation.md +98 -0
- package/docs/languages.md +31 -0
- package/docs/maintenance-lifecycle.md +62 -0
- package/docs/manifests.md +16 -0
- package/docs/migration/reference-project.md +18 -0
- package/docs/observability/benchmark-authoring.md +6 -0
- package/docs/observability/eval-model.md +7 -0
- package/docs/observability/event-taxonomy.md +12 -0
- package/docs/observability.md +44 -0
- package/docs/pack-authoring.md +19 -0
- package/docs/parallel-worktrees.md +6 -0
- package/docs/profile-guide.md +63 -0
- package/docs/quality-gates.md +56 -0
- package/docs/quickstart.md +41 -0
- package/docs/release-process.md +30 -0
- package/docs/repo-cartography.md +12 -0
- package/docs/style-guides/agent-style-guide.md +21 -0
- package/docs/style-guides/command-style-guide.md +21 -0
- package/docs/style-guides/rule-style-guide.md +20 -0
- package/docs/target-support-matrix.md +73 -0
- package/docs/targets/capability-families.md +13 -0
- package/docs/targets/translation-vs-emulation.md +11 -0
- package/docs/targets.md +20 -0
- package/docs/templates/authoring.md +23 -0
- package/docs/troubleshooting.md +53 -0
- package/docs/versioning-and-migration.md +25 -0
- package/examples/README.md +12 -0
- package/examples/knowledge-bases/README.md +12 -0
- package/examples/production-readiness-demo/README.md +16 -0
- package/hooks/README.md +3 -0
- package/hooks/shared/PostChangeSummary.ps1 +1 -0
- package/hooks/shared/PreChangeQualityGate.ps1 +1 -0
- package/hooks/shared/post-change-summary.sh +3 -0
- package/hooks/shared/pre-change-quality-gate.sh +3 -0
- package/install.ps1 +28 -0
- package/install.sh +24 -0
- package/knowledge-bases/operations/observability-and-evals/README.md +7 -0
- package/knowledge-bases/seeded/README.md +33 -0
- package/knowledge-bases/seeded/dotnet/README.md +18 -0
- package/knowledge-bases/seeded/dotnet/docs/examples-guide.md +15 -0
- package/knowledge-bases/seeded/dotnet/docs/frameworks.md +11 -0
- package/knowledge-bases/seeded/dotnet/docs/overview.md +33 -0
- package/knowledge-bases/seeded/dotnet/docs/review-checklist.md +27 -0
- package/knowledge-bases/seeded/dotnet/examples/01-aspnet-core-crud-api.md +13 -0
- package/knowledge-bases/seeded/dotnet/examples/02-background-worker-with-queue-processing.md +13 -0
- package/knowledge-bases/seeded/dotnet/examples/03-shared-domain-library.md +13 -0
- package/knowledge-bases/seeded/dotnet/examples/04-cli-automation-tool.md +13 -0
- package/knowledge-bases/seeded/dotnet/knowledge-base.json +8 -0
- package/knowledge-bases/seeded/dotnet/legacy-seed/csharp/coding-style.md +72 -0
- package/knowledge-bases/seeded/dotnet/legacy-seed/csharp/hooks.md +25 -0
- package/knowledge-bases/seeded/dotnet/legacy-seed/csharp/patterns.md +50 -0
- package/knowledge-bases/seeded/dotnet/legacy-seed/csharp/security.md +58 -0
- package/knowledge-bases/seeded/dotnet/legacy-seed/csharp/testing.md +46 -0
- package/knowledge-bases/seeded/dotnet/rules/common/agents.md +50 -0
- package/knowledge-bases/seeded/dotnet/rules/common/coding-style.md +48 -0
- package/knowledge-bases/seeded/dotnet/rules/common/development-workflow.md +38 -0
- package/knowledge-bases/seeded/dotnet/rules/common/git-workflow.md +24 -0
- package/knowledge-bases/seeded/dotnet/rules/common/hooks.md +30 -0
- package/knowledge-bases/seeded/dotnet/rules/common/patterns.md +31 -0
- package/knowledge-bases/seeded/dotnet/rules/common/performance.md +55 -0
- package/knowledge-bases/seeded/dotnet/rules/common/security.md +29 -0
- package/knowledge-bases/seeded/dotnet/rules/common/testing.md +29 -0
- package/knowledge-bases/seeded/dotnet/rules/dotnet/coding-style.md +38 -0
- package/knowledge-bases/seeded/dotnet/rules/dotnet/hooks.md +24 -0
- package/knowledge-bases/seeded/dotnet/rules/dotnet/patterns.md +30 -0
- package/knowledge-bases/seeded/dotnet/rules/dotnet/security.md +28 -0
- package/knowledge-bases/seeded/dotnet/rules/dotnet/testing.md +31 -0
- package/knowledge-bases/seeded/java/README.md +18 -0
- package/knowledge-bases/seeded/java/docs/examples-guide.md +15 -0
- package/knowledge-bases/seeded/java/docs/frameworks.md +11 -0
- package/knowledge-bases/seeded/java/docs/overview.md +34 -0
- package/knowledge-bases/seeded/java/docs/review-checklist.md +27 -0
- package/knowledge-bases/seeded/java/examples/01-spring-boot-rest-api.md +13 -0
- package/knowledge-bases/seeded/java/examples/02-event-consumer-service.md +13 -0
- package/knowledge-bases/seeded/java/examples/03-gradle-multi-module-backend.md +13 -0
- package/knowledge-bases/seeded/java/examples/04-library-module-with-strong-domain-tests.md +13 -0
- package/knowledge-bases/seeded/java/knowledge-base.json +8 -0
- package/knowledge-bases/seeded/java/legacy-seed/java/coding-style.md +114 -0
- package/knowledge-bases/seeded/java/legacy-seed/java/hooks.md +18 -0
- package/knowledge-bases/seeded/java/legacy-seed/java/patterns.md +146 -0
- package/knowledge-bases/seeded/java/legacy-seed/java/security.md +100 -0
- package/knowledge-bases/seeded/java/legacy-seed/java/testing.md +131 -0
- package/knowledge-bases/seeded/java/rules/common/agents.md +50 -0
- package/knowledge-bases/seeded/java/rules/common/coding-style.md +48 -0
- package/knowledge-bases/seeded/java/rules/common/development-workflow.md +38 -0
- package/knowledge-bases/seeded/java/rules/common/git-workflow.md +24 -0
- package/knowledge-bases/seeded/java/rules/common/hooks.md +30 -0
- package/knowledge-bases/seeded/java/rules/common/patterns.md +31 -0
- package/knowledge-bases/seeded/java/rules/common/performance.md +55 -0
- package/knowledge-bases/seeded/java/rules/common/security.md +29 -0
- package/knowledge-bases/seeded/java/rules/common/testing.md +29 -0
- package/knowledge-bases/seeded/java/rules/java/coding-style.md +22 -0
- package/knowledge-bases/seeded/java/rules/java/hooks.md +23 -0
- package/knowledge-bases/seeded/java/rules/java/patterns.md +22 -0
- package/knowledge-bases/seeded/java/rules/java/security.md +21 -0
- package/knowledge-bases/seeded/java/rules/java/testing.md +23 -0
- package/knowledge-bases/seeded/lua/README.md +18 -0
- package/knowledge-bases/seeded/lua/docs/examples-guide.md +15 -0
- package/knowledge-bases/seeded/lua/docs/frameworks.md +11 -0
- package/knowledge-bases/seeded/lua/docs/overview.md +30 -0
- package/knowledge-bases/seeded/lua/docs/review-checklist.md +27 -0
- package/knowledge-bases/seeded/lua/examples/01-neovim-plugin.md +13 -0
- package/knowledge-bases/seeded/lua/examples/02-openresty-request-handler.md +13 -0
- package/knowledge-bases/seeded/lua/examples/03-l/303/266ve-gameplay-module.md +13 -0
- package/knowledge-bases/seeded/lua/examples/04-embedded-automation-script.md +13 -0
- package/knowledge-bases/seeded/lua/knowledge-base.json +8 -0
- package/knowledge-bases/seeded/lua/rules/common/agents.md +50 -0
- package/knowledge-bases/seeded/lua/rules/common/coding-style.md +48 -0
- package/knowledge-bases/seeded/lua/rules/common/development-workflow.md +38 -0
- package/knowledge-bases/seeded/lua/rules/common/git-workflow.md +24 -0
- package/knowledge-bases/seeded/lua/rules/common/hooks.md +30 -0
- package/knowledge-bases/seeded/lua/rules/common/patterns.md +31 -0
- package/knowledge-bases/seeded/lua/rules/common/performance.md +55 -0
- package/knowledge-bases/seeded/lua/rules/common/security.md +29 -0
- package/knowledge-bases/seeded/lua/rules/common/testing.md +29 -0
- package/knowledge-bases/seeded/lua/rules/lua/coding-style.md +27 -0
- package/knowledge-bases/seeded/lua/rules/lua/hooks.md +21 -0
- package/knowledge-bases/seeded/lua/rules/lua/patterns.md +23 -0
- package/knowledge-bases/seeded/lua/rules/lua/security.md +20 -0
- package/knowledge-bases/seeded/lua/rules/lua/testing.md +23 -0
- package/knowledge-bases/seeded/powershell/README.md +18 -0
- package/knowledge-bases/seeded/powershell/docs/examples-guide.md +15 -0
- package/knowledge-bases/seeded/powershell/docs/frameworks.md +11 -0
- package/knowledge-bases/seeded/powershell/docs/overview.md +30 -0
- package/knowledge-bases/seeded/powershell/docs/review-checklist.md +27 -0
- package/knowledge-bases/seeded/powershell/examples/01-script-module.md +13 -0
- package/knowledge-bases/seeded/powershell/examples/02-ci-admin-automation-script.md +13 -0
- package/knowledge-bases/seeded/powershell/examples/03-remote-fleet-maintenance-command.md +13 -0
- package/knowledge-bases/seeded/powershell/examples/04-developer-bootstrap-utility.md +13 -0
- package/knowledge-bases/seeded/powershell/knowledge-base.json +8 -0
- package/knowledge-bases/seeded/powershell/rules/common/agents.md +50 -0
- package/knowledge-bases/seeded/powershell/rules/common/coding-style.md +48 -0
- package/knowledge-bases/seeded/powershell/rules/common/development-workflow.md +38 -0
- package/knowledge-bases/seeded/powershell/rules/common/git-workflow.md +24 -0
- package/knowledge-bases/seeded/powershell/rules/common/hooks.md +30 -0
- package/knowledge-bases/seeded/powershell/rules/common/patterns.md +31 -0
- package/knowledge-bases/seeded/powershell/rules/common/performance.md +55 -0
- package/knowledge-bases/seeded/powershell/rules/common/security.md +29 -0
- package/knowledge-bases/seeded/powershell/rules/common/testing.md +29 -0
- package/knowledge-bases/seeded/powershell/rules/powershell/coding-style.md +25 -0
- package/knowledge-bases/seeded/powershell/rules/powershell/hooks.md +24 -0
- package/knowledge-bases/seeded/powershell/rules/powershell/patterns.md +23 -0
- package/knowledge-bases/seeded/powershell/rules/powershell/security.md +23 -0
- package/knowledge-bases/seeded/powershell/rules/powershell/testing.md +24 -0
- package/knowledge-bases/seeded/typescript/README.md +18 -0
- package/knowledge-bases/seeded/typescript/docs/examples-guide.md +15 -0
- package/knowledge-bases/seeded/typescript/docs/frameworks.md +11 -0
- package/knowledge-bases/seeded/typescript/docs/overview.md +34 -0
- package/knowledge-bases/seeded/typescript/docs/review-checklist.md +27 -0
- package/knowledge-bases/seeded/typescript/examples/01-node-api.md +13 -0
- package/knowledge-bases/seeded/typescript/examples/02-react-component-library.md +13 -0
- package/knowledge-bases/seeded/typescript/examples/03-nextjs-app.md +13 -0
- package/knowledge-bases/seeded/typescript/examples/04-monorepo-shared-types-and-validation.md +13 -0
- package/knowledge-bases/seeded/typescript/knowledge-base.json +8 -0
- package/knowledge-bases/seeded/typescript/legacy-seed/typescript/coding-style.md +199 -0
- package/knowledge-bases/seeded/typescript/legacy-seed/typescript/hooks.md +22 -0
- package/knowledge-bases/seeded/typescript/legacy-seed/typescript/patterns.md +52 -0
- package/knowledge-bases/seeded/typescript/legacy-seed/typescript/security.md +28 -0
- package/knowledge-bases/seeded/typescript/legacy-seed/typescript/testing.md +18 -0
- package/knowledge-bases/seeded/typescript/rules/common/agents.md +50 -0
- package/knowledge-bases/seeded/typescript/rules/common/coding-style.md +48 -0
- package/knowledge-bases/seeded/typescript/rules/common/development-workflow.md +38 -0
- package/knowledge-bases/seeded/typescript/rules/common/git-workflow.md +24 -0
- package/knowledge-bases/seeded/typescript/rules/common/hooks.md +30 -0
- package/knowledge-bases/seeded/typescript/rules/common/patterns.md +31 -0
- package/knowledge-bases/seeded/typescript/rules/common/performance.md +55 -0
- package/knowledge-bases/seeded/typescript/rules/common/security.md +29 -0
- package/knowledge-bases/seeded/typescript/rules/common/testing.md +29 -0
- package/knowledge-bases/seeded/typescript/rules/typescript/coding-style.md +30 -0
- package/knowledge-bases/seeded/typescript/rules/typescript/hooks.md +25 -0
- package/knowledge-bases/seeded/typescript/rules/typescript/patterns.md +23 -0
- package/knowledge-bases/seeded/typescript/rules/typescript/security.md +23 -0
- package/knowledge-bases/seeded/typescript/rules/typescript/testing.md +22 -0
- package/knowledge-bases/structured/README.md +3 -0
- package/knowledge-bases/structured/cpp/README.md +3 -0
- package/knowledge-bases/structured/cpp/docs/frameworks.md +3 -0
- package/knowledge-bases/structured/cpp/docs/overview.md +12 -0
- package/knowledge-bases/structured/cpp/docs/review-checklist.md +6 -0
- package/knowledge-bases/structured/cpp/examples/01-reference-scenario.md +3 -0
- package/knowledge-bases/structured/cpp/knowledge-base.json +13 -0
- package/knowledge-bases/structured/go/README.md +3 -0
- package/knowledge-bases/structured/go/docs/frameworks.md +3 -0
- package/knowledge-bases/structured/go/docs/overview.md +12 -0
- package/knowledge-bases/structured/go/docs/review-checklist.md +6 -0
- package/knowledge-bases/structured/go/examples/01-reference-scenario.md +3 -0
- package/knowledge-bases/structured/go/knowledge-base.json +13 -0
- package/knowledge-bases/structured/kotlin/README.md +3 -0
- package/knowledge-bases/structured/kotlin/docs/frameworks.md +3 -0
- package/knowledge-bases/structured/kotlin/docs/overview.md +12 -0
- package/knowledge-bases/structured/kotlin/docs/review-checklist.md +6 -0
- package/knowledge-bases/structured/kotlin/examples/01-reference-scenario.md +3 -0
- package/knowledge-bases/structured/kotlin/knowledge-base.json +13 -0
- package/knowledge-bases/structured/perl/README.md +3 -0
- package/knowledge-bases/structured/perl/docs/frameworks.md +3 -0
- package/knowledge-bases/structured/perl/docs/overview.md +12 -0
- package/knowledge-bases/structured/perl/docs/review-checklist.md +6 -0
- package/knowledge-bases/structured/perl/examples/01-reference-scenario.md +3 -0
- package/knowledge-bases/structured/perl/knowledge-base.json +13 -0
- package/knowledge-bases/structured/php/README.md +3 -0
- package/knowledge-bases/structured/php/docs/frameworks.md +3 -0
- package/knowledge-bases/structured/php/docs/overview.md +12 -0
- package/knowledge-bases/structured/php/docs/review-checklist.md +6 -0
- package/knowledge-bases/structured/php/examples/01-reference-scenario.md +3 -0
- package/knowledge-bases/structured/php/knowledge-base.json +13 -0
- package/knowledge-bases/structured/python/README.md +3 -0
- package/knowledge-bases/structured/python/docs/frameworks.md +3 -0
- package/knowledge-bases/structured/python/docs/overview.md +12 -0
- package/knowledge-bases/structured/python/docs/review-checklist.md +6 -0
- package/knowledge-bases/structured/python/examples/01-reference-scenario.md +3 -0
- package/knowledge-bases/structured/python/knowledge-base.json +13 -0
- package/knowledge-bases/structured/rust/README.md +3 -0
- package/knowledge-bases/structured/rust/docs/frameworks.md +3 -0
- package/knowledge-bases/structured/rust/docs/overview.md +12 -0
- package/knowledge-bases/structured/rust/docs/review-checklist.md +6 -0
- package/knowledge-bases/structured/rust/examples/01-reference-scenario.md +3 -0
- package/knowledge-bases/structured/rust/knowledge-base.json +13 -0
- package/knowledge-bases/structured/shell/README.md +3 -0
- package/knowledge-bases/structured/shell/docs/frameworks.md +3 -0
- package/knowledge-bases/structured/shell/docs/overview.md +12 -0
- package/knowledge-bases/structured/shell/docs/review-checklist.md +6 -0
- package/knowledge-bases/structured/shell/examples/01-reference-scenario.md +3 -0
- package/knowledge-bases/structured/shell/knowledge-base.json +13 -0
- package/knowledge-bases/structured/swift/README.md +3 -0
- package/knowledge-bases/structured/swift/docs/frameworks.md +3 -0
- package/knowledge-bases/structured/swift/docs/overview.md +12 -0
- package/knowledge-bases/structured/swift/docs/review-checklist.md +6 -0
- package/knowledge-bases/structured/swift/examples/01-reference-scenario.md +3 -0
- package/knowledge-bases/structured/swift/knowledge-base.json +13 -0
- package/manifests/bundles/core.json +384 -0
- package/manifests/bundles/frameworks.json +196 -0
- package/manifests/bundles/languages-seeded.json +136 -0
- package/manifests/bundles/languages-v1.json +317 -0
- package/manifests/catalog/capability-taxonomy.json +47 -0
- package/manifests/catalog/compatibility-matrix.json +4259 -0
- package/manifests/catalog/engineering-assistant-import-inventory.json +215 -0
- package/manifests/catalog/enhanced-skill-import-inventory.json +402 -0
- package/manifests/catalog/flow-artifacts.json +324 -0
- package/manifests/catalog/framework-assets.json +124 -0
- package/manifests/catalog/harness-capability-matrix.json +429 -0
- package/manifests/catalog/index.json +56 -0
- package/manifests/catalog/language-assets.json +616 -0
- package/manifests/catalog/package-surface.json +426 -0
- package/manifests/catalog/seeded-knowledge-files.json +1094 -0
- package/manifests/hooks/index.json +70 -0
- package/manifests/profiles/ai-runtime.json +24 -0
- package/manifests/profiles/core.json +24 -0
- package/manifests/profiles/developer.json +24 -0
- package/manifests/profiles/game-dev-native.json +24 -0
- package/manifests/profiles/legacy-modernization.json +24 -0
- package/manifests/profiles/rapid-prototyping.json +24 -0
- package/manifests/profiles/release-manager.json +24 -0
- package/manifests/profiles/research-first.json +24 -0
- package/manifests/profiles/reviewer.json +24 -0
- package/manifests/profiles/security.json +24 -0
- package/manifests/targets/core.json +125 -0
- package/mcp/README.md +3 -0
- package/mcp/servers/context7.codex.toml +3 -0
- package/mcp/servers/context7.md +3 -0
- package/mcp/servers/openai-developer-docs.codex.toml +3 -0
- package/mcp/servers/openai-developer-docs.md +3 -0
- package/mcp/servers/playwright.codex.toml +3 -0
- package/mcp/servers/playwright.md +3 -0
- package/mcp/servers/semgrep.md +3 -0
- package/package.json +126 -0
- package/profiles/README.md +3 -0
- package/profiles/claude-code.md +3 -0
- package/profiles/codex.md +3 -0
- package/profiles/core.md +3 -0
- package/profiles/developer.md +3 -0
- package/profiles/release-manager.md +3 -0
- package/rules/README.md +58 -0
- package/rules/common/README.md +37 -0
- package/rules/common/agents.md +50 -0
- package/rules/common/coding-style.md +48 -0
- package/rules/common/development-workflow.md +38 -0
- package/rules/common/git-workflow.md +24 -0
- package/rules/common/hooks.md +30 -0
- package/rules/common/patterns.md +31 -0
- package/rules/common/performance.md +55 -0
- package/rules/common/security.md +29 -0
- package/rules/common/testing.md +29 -0
- package/rules/cpp/README.md +19 -0
- package/rules/cpp/coding-style.md +3 -0
- package/rules/cpp/patterns.md +3 -0
- package/rules/cpp/security.md +3 -0
- package/rules/cpp/testing.md +3 -0
- package/rules/cpp/tooling.md +3 -0
- package/rules/dotnet/README.md +41 -0
- package/rules/dotnet/coding-style.md +38 -0
- package/rules/dotnet/hooks.md +24 -0
- package/rules/dotnet/patterns.md +30 -0
- package/rules/dotnet/security.md +28 -0
- package/rules/dotnet/testing.md +31 -0
- package/rules/golang/README.md +19 -0
- package/rules/golang/coding-style.md +3 -0
- package/rules/golang/patterns.md +3 -0
- package/rules/golang/security.md +3 -0
- package/rules/golang/testing.md +3 -0
- package/rules/golang/tooling.md +3 -0
- package/rules/java/README.md +41 -0
- package/rules/java/coding-style.md +22 -0
- package/rules/java/hooks.md +23 -0
- package/rules/java/patterns.md +22 -0
- package/rules/java/security.md +21 -0
- package/rules/java/testing.md +23 -0
- package/rules/kotlin/README.md +19 -0
- package/rules/kotlin/coding-style.md +3 -0
- package/rules/kotlin/patterns.md +3 -0
- package/rules/kotlin/security.md +3 -0
- package/rules/kotlin/testing.md +3 -0
- package/rules/kotlin/tooling.md +3 -0
- package/rules/lua/README.md +41 -0
- package/rules/lua/coding-style.md +27 -0
- package/rules/lua/hooks.md +21 -0
- package/rules/lua/patterns.md +23 -0
- package/rules/lua/security.md +20 -0
- package/rules/lua/testing.md +23 -0
- package/rules/perl/README.md +19 -0
- package/rules/perl/coding-style.md +3 -0
- package/rules/perl/patterns.md +3 -0
- package/rules/perl/security.md +3 -0
- package/rules/perl/testing.md +3 -0
- package/rules/perl/tooling.md +3 -0
- package/rules/php/README.md +19 -0
- package/rules/php/coding-style.md +3 -0
- package/rules/php/patterns.md +3 -0
- package/rules/php/security.md +3 -0
- package/rules/php/testing.md +3 -0
- package/rules/php/tooling.md +3 -0
- package/rules/powershell/README.md +41 -0
- package/rules/powershell/coding-style.md +25 -0
- package/rules/powershell/hooks.md +24 -0
- package/rules/powershell/patterns.md +23 -0
- package/rules/powershell/security.md +23 -0
- package/rules/powershell/testing.md +24 -0
- package/rules/python/README.md +19 -0
- package/rules/python/coding-style.md +3 -0
- package/rules/python/patterns.md +3 -0
- package/rules/python/security.md +3 -0
- package/rules/python/testing.md +3 -0
- package/rules/python/tooling.md +3 -0
- package/rules/rust/README.md +19 -0
- package/rules/rust/coding-style.md +3 -0
- package/rules/rust/patterns.md +3 -0
- package/rules/rust/security.md +3 -0
- package/rules/rust/testing.md +3 -0
- package/rules/rust/tooling.md +3 -0
- package/rules/shell/README.md +19 -0
- package/rules/shell/coding-style.md +3 -0
- package/rules/shell/patterns.md +3 -0
- package/rules/shell/security.md +3 -0
- package/rules/shell/testing.md +3 -0
- package/rules/shell/tooling.md +3 -0
- package/rules/swift/README.md +19 -0
- package/rules/swift/coding-style.md +3 -0
- package/rules/swift/patterns.md +3 -0
- package/rules/swift/security.md +3 -0
- package/rules/swift/testing.md +3 -0
- package/rules/swift/tooling.md +3 -0
- package/rules/typescript/README.md +41 -0
- package/rules/typescript/coding-style.md +30 -0
- package/rules/typescript/hooks.md +25 -0
- package/rules/typescript/patterns.md +23 -0
- package/rules/typescript/security.md +23 -0
- package/rules/typescript/testing.md +22 -0
- package/schemas/content/content-metadata.schema.json +100 -0
- package/schemas/hooks/hook.schema.json +57 -0
- package/schemas/manifests/catalog.schema.json +22 -0
- package/schemas/manifests/harness-capability-matrix.schema.json +127 -0
- package/schemas/manifests/package-surface.schema.json +63 -0
- package/schemas/manifests/seeded-knowledge-files.schema.json +69 -0
- package/schemas/runtime/architecture-significance.schema.json +45 -0
- package/schemas/runtime/benchmark-expectation.schema.json +33 -0
- package/schemas/runtime/decision-coverage-summary.schema.json +46 -0
- package/schemas/runtime/decision-record.schema.json +266 -0
- package/schemas/runtime/file-interest.schema.json +78 -0
- package/schemas/runtime/flow-state.schema.json +39 -0
- package/schemas/runtime/impact-analysis.schema.json +83 -0
- package/schemas/runtime/instruction-plan.schema.json +63 -0
- package/schemas/runtime/observability-event.schema.json +40 -0
- package/schemas/runtime/observability-summary.schema.json +32 -0
- package/schemas/runtime/recursive-adr-candidate.schema.json +57 -0
- package/schemas/runtime/recursive-budget.schema.json +40 -0
- package/schemas/runtime/recursive-session-summary.schema.json +49 -0
- package/schemas/runtime/recursive-session.schema.json +65 -0
- package/schemas/runtime/recursive-trace-event.schema.json +43 -0
- package/schemas/runtime/repo-map.schema.json +65 -0
- package/schemas/runtime/task-pack.schema.json +172 -0
- package/schemas/runtime/working-memory.schema.json +52 -0
- package/schemas/runtime/worktree-plan.schema.json +72 -0
- package/schemas/runtime/worktree-state.schema.json +41 -0
- package/schemas/templates/recursive-template-registry.schema.json +43 -0
- package/schemas/templates/runtime-template-registry.schema.json +55 -0
- package/schemas/templates/template-catalog.schema.json +38 -0
- package/scripts/ci/capability-matrix-shared.mjs +263 -0
- package/scripts/ci/generate-compatibility-matrix.mjs +189 -0
- package/scripts/ci/generate-target-support-docs.mjs +27 -0
- package/scripts/ci/release-smoke.mjs +121 -0
- package/scripts/ci/smoke-runner.mjs +90 -0
- package/scripts/ci/validate-capability-matrix.mjs +30 -0
- package/scripts/ci/validate-content-metadata.mjs +188 -0
- package/scripts/ci/validate-doc-command-alignment.mjs +146 -0
- package/scripts/ci/validate-framework-coverage.mjs +52 -0
- package/scripts/ci/validate-generated-sync.mjs +122 -0
- package/scripts/ci/validate-manifest-runtime-consistency.mjs +134 -0
- package/scripts/ci/validate-no-placeholders.mjs +86 -0
- package/scripts/ci/validate-pack-dependencies.mjs +78 -0
- package/scripts/ci/validate-packed-install-surface.mjs +77 -0
- package/scripts/ci/validate-seeded-knowledge-coverage.mjs +89 -0
- package/scripts/ci/validate-skill-depth.mjs +88 -0
- package/scripts/codex/apply-home-config.mjs +39 -0
- package/scripts/intelligence/cartograph-repo.mjs +15 -0
- package/scripts/intelligence/classify-boundaries.mjs +15 -0
- package/scripts/intelligence/detect-frameworks.mjs +16 -0
- package/scripts/intelligence/scan-repo.mjs +16 -0
- package/scripts/intelligence/score-recommendations.mjs +16 -0
- package/scripts/intelligence/shared/cartography.mjs +129 -0
- package/scripts/intelligence/shared.mjs +660 -0
- package/scripts/intelligence/synthesize-instructions.mjs +90 -0
- package/scripts/knowledge/import-pack.mjs +56 -0
- package/scripts/knowledge/normalize-pack.mjs +49 -0
- package/scripts/knowledge/report-coverage.mjs +82 -0
- package/scripts/knowledge/report-drift.mjs +67 -0
- package/scripts/runtime/check-merge-readiness.mjs +44 -0
- package/scripts/runtime/check-parallel-status.mjs +39 -0
- package/scripts/runtime/create-parallel-plan.mjs +61 -0
- package/scripts/runtime/flow-status.mjs +114 -0
- package/scripts/runtime/record-event.mjs +44 -0
- package/scripts/runtime/recursive-plan.mjs +25 -0
- package/scripts/runtime/render-observability-report.mjs +50 -0
- package/scripts/runtime/report-effectiveness.mjs +35 -0
- package/scripts/runtime/summarize-observability.mjs +57 -0
- package/scripts/templates/README.md +40 -0
- package/scripts/templates/config/required-sections.json +37 -0
- package/scripts/templates/powershell/Check-TemplateFrontmatter.ps1 +54 -0
- package/scripts/templates/powershell/Check-TemplateLinks.ps1 +22 -0
- package/scripts/templates/powershell/Get-MissingTemplateSections.ps1 +21 -0
- package/scripts/templates/powershell/New-TemplateIndex.ps1 +19 -0
- package/scripts/templates/powershell/Test-WorkflowContracts.ps1 +26 -0
- package/scripts/templates/shell/check-template-frontmatter.sh +39 -0
- package/scripts/templates/shell/check-template-links.sh +25 -0
- package/scripts/templates/shell/generate-template-index.sh +17 -0
- package/scripts/templates/shell/list-missing-template-sections.sh +36 -0
- package/scripts/templates/shell/verify-workflow-contracts.sh +21 -0
- package/skills/README.md +94 -0
- package/skills/api-contract-review/SKILL.md +56 -0
- package/skills/api-contract-review/references/event-and-async-contracts.md +16 -0
- package/skills/api-contract-review/references/examples.md +15 -0
- package/skills/api-contract-review/references/http-contract-checklist.md +24 -0
- package/skills/api-contract-review/references/protobuf-and-buf.md +12 -0
- package/skills/api-contract-review/references/review-template.md +19 -0
- package/skills/api-contract-review/references/schema-compatibility.md +20 -0
- package/skills/api-contract-review/references/style-and-linting.md +15 -0
- package/skills/architecture-decision-records/SKILL.md +53 -0
- package/skills/architecture-decision-records/references/adr-anti-patterns.md +10 -0
- package/skills/architecture-decision-records/references/adr-template.md +31 -0
- package/skills/architecture-decision-records/references/decision-rubric.md +22 -0
- package/skills/architecture-decision-records/references/examples.md +15 -0
- package/skills/architecture-decision-records/references/madr-style-guide.md +17 -0
- package/skills/cloud-architect/SKILL.md +61 -0
- package/skills/cloud-architect/references/agent-patterns.md +23 -0
- package/skills/cloud-architect/references/debugging-playbook.md +24 -0
- package/skills/cloud-architect/references/distributed-systems.md +13 -0
- package/skills/cloud-architect/references/examples.md +19 -0
- package/skills/cloud-architect/references/output-templates.md +35 -0
- package/skills/cloud-architect/references/platform-and-deployment.md +13 -0
- package/skills/cloud-architect/references/reliability-security-cost.md +17 -0
- package/skills/cloud-architect/references/repo-exploration.md +42 -0
- package/skills/cpp-engineering/SKILL.md +43 -0
- package/skills/db-migration-review/SKILL.md +56 -0
- package/skills/db-migration-review/references/engine-specific-hotspots.md +21 -0
- package/skills/db-migration-review/references/examples.md +16 -0
- package/skills/db-migration-review/references/expand-contract.md +19 -0
- package/skills/db-migration-review/references/review-template.md +25 -0
- package/skills/db-migration-review/references/risk-taxonomy.md +30 -0
- package/skills/db-migration-review/references/rollout-and-backfill.md +23 -0
- package/skills/db-migration-review/references/tooling-signals.md +21 -0
- package/skills/dependency-upgrade-safety/SKILL.md +36 -0
- package/skills/documentation-lookup/SKILL.md +45 -0
- package/skills/documentation-lookup/references/source-priority.md +6 -0
- package/skills/dotnet-engineering/SKILL.md +76 -0
- package/skills/dotnet-engineering/references/agent-patterns.md +30 -0
- package/skills/dotnet-engineering/references/architecture-and-di.md +28 -0
- package/skills/dotnet-engineering/references/aspnet-and-efcore.md +22 -0
- package/skills/dotnet-engineering/references/cloud-native-and-aspire.md +21 -0
- package/skills/dotnet-engineering/references/debugging-playbook.md +21 -0
- package/skills/dotnet-engineering/references/examples.md +22 -0
- package/skills/dotnet-engineering/references/output-templates.md +33 -0
- package/skills/dotnet-engineering/references/repo-exploration.md +38 -0
- package/skills/dotnet-engineering/references/testing-and-performance.md +25 -0
- package/skills/engineering-assistant/SKILL.md +59 -0
- package/skills/engineering-assistant/references/architecture.md +47 -0
- package/skills/engineering-assistant/references/change-discipline.md +37 -0
- package/skills/engineering-assistant/references/project-notes.md +36 -0
- package/skills/engineering-assistant/references/skill-composition.md +33 -0
- package/skills/engineering-assistant/references/solid-and-patterns.md +34 -0
- package/skills/go-engineering/SKILL.md +43 -0
- package/skills/incident-triage/SKILL.md +36 -0
- package/skills/java-engineering/SKILL.md +48 -0
- package/skills/java-engineering/references/agent-patterns.md +23 -0
- package/skills/java-engineering/references/build-and-structure.md +14 -0
- package/skills/java-engineering/references/debugging-playbook.md +24 -0
- package/skills/java-engineering/references/examples.md +15 -0
- package/skills/java-engineering/references/output-templates.md +35 -0
- package/skills/java-engineering/references/repo-exploration.md +42 -0
- package/skills/java-engineering/references/spring-patterns.md +12 -0
- package/skills/java-engineering/references/testing-concurrency-performance.md +11 -0
- package/skills/javascript-engineering/SKILL.md +66 -0
- package/skills/javascript-engineering/references/agent-patterns.md +22 -0
- package/skills/javascript-engineering/references/browser-and-bundler-patterns.md +14 -0
- package/skills/javascript-engineering/references/debugging-playbook.md +17 -0
- package/skills/javascript-engineering/references/ecosystem-guide.md +19 -0
- package/skills/javascript-engineering/references/examples.md +15 -0
- package/skills/javascript-engineering/references/node-service-patterns.md +15 -0
- package/skills/javascript-engineering/references/output-templates.md +17 -0
- package/skills/javascript-engineering/references/package-contracts.md +12 -0
- package/skills/javascript-engineering/references/repo-exploration.md +24 -0
- package/skills/javascript-engineering/references/testing-and-debugging.md +13 -0
- package/skills/kotlin-engineering/SKILL.md +43 -0
- package/skills/lua-engineering/SKILL.md +78 -0
- package/skills/lua-engineering/references/agent-patterns.md +22 -0
- package/skills/lua-engineering/references/debugging-and-testing.md +13 -0
- package/skills/lua-engineering/references/debugging-playbook.md +17 -0
- package/skills/lua-engineering/references/examples.md +15 -0
- package/skills/lua-engineering/references/game-and-addon-patterns.md +15 -0
- package/skills/lua-engineering/references/language-idioms.md +16 -0
- package/skills/lua-engineering/references/neovim-and-editor-patterns.md +17 -0
- package/skills/lua-engineering/references/openresty-patterns.md +15 -0
- package/skills/lua-engineering/references/output-templates.md +17 -0
- package/skills/lua-engineering/references/repo-exploration.md +25 -0
- package/skills/lua-engineering/references/runtime-profiles.md +12 -0
- package/skills/lua-engineering/references/tooling-and-quality.md +16 -0
- package/skills/observability-and-eval/SKILL.md +6 -0
- package/skills/observability-setup/SKILL.md +35 -0
- package/skills/parallel-worktree-supervisor/SKILL.md +55 -0
- package/skills/parallel-worktree-supervisor/references/examples.md +14 -0
- package/skills/parallel-worktree-supervisor/references/merge-readiness.md +15 -0
- package/skills/parallel-worktree-supervisor/references/output-template.md +16 -0
- package/skills/parallel-worktree-supervisor/references/stacked-diffs-and-review.md +17 -0
- package/skills/parallel-worktree-supervisor/references/task-sharding-rules.md +22 -0
- package/skills/parallel-worktree-supervisor/references/worktree-operations.md +16 -0
- package/skills/performance-profiling/SKILL.md +36 -0
- package/skills/perl-engineering/SKILL.md +43 -0
- package/skills/php-engineering/SKILL.md +43 -0
- package/skills/powershell-engineering/SKILL.md +48 -0
- package/skills/powershell-engineering/references/agent-patterns.md +23 -0
- package/skills/powershell-engineering/references/debugging-playbook.md +24 -0
- package/skills/powershell-engineering/references/examples.md +17 -0
- package/skills/powershell-engineering/references/output-templates.md +35 -0
- package/skills/powershell-engineering/references/remoting-and-ops.md +12 -0
- package/skills/powershell-engineering/references/repo-exploration.md +42 -0
- package/skills/powershell-engineering/references/scripting-and-modules.md +14 -0
- package/skills/powershell-engineering/references/testing-and-ci.md +11 -0
- package/skills/pr-triage-and-summary/SKILL.md +35 -0
- package/skills/python-engineering/SKILL.md +56 -0
- package/skills/python-engineering/references/agent-patterns.md +23 -0
- package/skills/python-engineering/references/async-and-concurrency.md +19 -0
- package/skills/python-engineering/references/debugging-playbook.md +24 -0
- package/skills/python-engineering/references/ecosystem-guide.md +32 -0
- package/skills/python-engineering/references/examples.md +19 -0
- package/skills/python-engineering/references/output-templates.md +35 -0
- package/skills/python-engineering/references/repo-exploration.md +42 -0
- package/skills/python-engineering/references/testing-and-quality.md +16 -0
- package/skills/release-readiness/SKILL.md +45 -0
- package/skills/release-readiness/references/release-report-template.md +7 -0
- package/skills/repo-cartographer/SKILL.md +10 -0
- package/skills/repo-modernization/SKILL.md +56 -0
- package/skills/repo-modernization/references/automation-candidates.md +19 -0
- package/skills/repo-modernization/references/dependency-and-build-modernization.md +16 -0
- package/skills/repo-modernization/references/examples.md +15 -0
- package/skills/repo-modernization/references/modernization-layers.md +21 -0
- package/skills/repo-modernization/references/roadmap-template.md +25 -0
- package/skills/repo-modernization/references/safety-rails.md +15 -0
- package/skills/repo-modernization/references/strangler-and-seams.md +18 -0
- package/skills/repo-onboarding/SKILL.md +56 -0
- package/skills/repo-onboarding/references/command-discovery.md +13 -0
- package/skills/repo-onboarding/references/discovery-checklist.md +24 -0
- package/skills/repo-onboarding/references/examples.md +13 -0
- package/skills/repo-onboarding/references/monorepo-signals.md +17 -0
- package/skills/repo-onboarding/references/output-template.md +26 -0
- package/skills/repo-onboarding/references/ownership-and-health-signals.md +21 -0
- package/skills/repo-onboarding/references/repo-archetypes.md +13 -0
- package/skills/rust-engineering/SKILL.md +43 -0
- package/skills/security-scan/SKILL.md +45 -0
- package/skills/security-scan/references/review-checklist.md +7 -0
- package/skills/shell-engineering/SKILL.md +43 -0
- package/skills/speckit-analyze/SKILL.md +190 -0
- package/skills/speckit-checklist/SKILL.md +301 -0
- package/skills/speckit-clarify/SKILL.md +183 -0
- package/skills/speckit-constitution/SKILL.md +86 -0
- package/skills/speckit-implement/SKILL.md +204 -0
- package/skills/speckit-plan/SKILL.md +151 -0
- package/skills/speckit-specify/SKILL.md +304 -0
- package/skills/speckit-tasks/SKILL.md +197 -0
- package/skills/speckit-taskstoissues/SKILL.md +35 -0
- package/skills/swift-engineering/SKILL.md +43 -0
- package/skills/test-strategy-and-coverage/SKILL.md +35 -0
- package/skills/typescript-engineering/SKILL.md +77 -0
- package/skills/typescript-engineering/references/agent-patterns.md +23 -0
- package/skills/typescript-engineering/references/debugging-playbook.md +21 -0
- package/skills/typescript-engineering/references/examples.md +22 -0
- package/skills/typescript-engineering/references/frontend-and-backend-patterns.md +19 -0
- package/skills/typescript-engineering/references/output-templates.md +25 -0
- package/skills/typescript-engineering/references/repo-exploration.md +25 -0
- package/skills/typescript-engineering/references/runtime-validation-and-boundaries.md +20 -0
- package/skills/typescript-engineering/references/tsconfig-and-build.md +25 -0
- package/skills/typescript-engineering/references/type-system-patterns.md +20 -0
- package/skills/typescript-engineering/references/workspace-and-monorepo.md +23 -0
- package/targets/claude-code/adapter.json +56 -0
- package/targets/claude-code/runtime/.claude/CLAUDE.md +3 -0
- package/targets/claude-code/runtime/.claude/agents/documentation-lookup.md +3 -0
- package/targets/claude-code/runtime/.claude/agents/release-readiness.md +3 -0
- package/targets/claude-code/runtime/.claude/agents/repo-onboarding.md +3 -0
- package/targets/claude-code/runtime/.claude/agents/security-scan.md +3 -0
- package/targets/claude-code/runtime/.claude/hooks/post-tool-use.sh +4 -0
- package/targets/claude-code/runtime/.claude/hooks/pre-tool-use.sh +4 -0
- package/targets/claude-code/runtime/.claude/settings.json +26 -0
- package/targets/codex/adapter.json +56 -0
- package/targets/codex/runtime/.codex/README.md +3 -0
- package/targets/codex/runtime/.codex/config.toml +15 -0
- package/targets/cursor/adapter.json +56 -0
- package/targets/opencode/adapter.json +56 -0
- package/templates/instructions/cursor-rule-template.mdc +7 -0
- package/templates/instructions/root-agents-template.md +88 -0
- package/templates/instructions/scoped-agents-template.md +90 -0
- package/templates/tasks/fix-bug.md +93 -0
- package/templates/tasks/implement-feature.md +95 -0
- package/templates/workflows/implement-cpp-change.md +175 -0
- package/templates/workflows/implement-dotnet-change.md +175 -0
- package/templates/workflows/implement-go-change.md +175 -0
- package/templates/workflows/implement-java-change.md +175 -0
- package/templates/workflows/implement-kotlin-change.md +175 -0
- package/templates/workflows/implement-lua-change.md +175 -0
- package/templates/workflows/implement-perl-change.md +175 -0
- package/templates/workflows/implement-php-change.md +175 -0
- package/templates/workflows/implement-powershell-change.md +175 -0
- package/templates/workflows/implement-python-change.md +175 -0
- package/templates/workflows/implement-rust-change.md +175 -0
- package/templates/workflows/implement-shell-change.md +175 -0
- package/templates/workflows/implement-swift-change.md +175 -0
- package/templates/workflows/implement-typescript-change.md +176 -0
- package/templates/workflows/parallel-implement-and-merge.md +191 -0
- package/templates/workflows/research-plan-implement-validate.md +187 -0
- package/templates/workflows/triage-reproduce-fix-verify.md +167 -0
package/docs/commands.md
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
# Commands
|
|
2
|
+
|
|
3
|
+
Harness Forge exposes install, catalog, repo-intelligence, flow, and
|
|
4
|
+
maintenance commands through the `hforge` CLI.
|
|
5
|
+
|
|
6
|
+
## Interactive front door
|
|
7
|
+
|
|
8
|
+
- `hforge` with no arguments opens guided onboarding in an interactive
|
|
9
|
+
terminal when the repo does not yet contain `.hforge/`
|
|
10
|
+
- `hforge` with no arguments opens the project hub when the repo already has a
|
|
11
|
+
Harness Forge runtime
|
|
12
|
+
- `hforge init --interactive` forces the guided onboarding flow
|
|
13
|
+
- `hforge init --root <repo> --agent codex --setup-profile recommended --yes`
|
|
14
|
+
is the direct non-interactive equivalent
|
|
15
|
+
- `hforge init --root <repo> --agent codex --dry-run` previews the same setup
|
|
16
|
+
plan without writing files
|
|
17
|
+
|
|
18
|
+
## Core command groups
|
|
19
|
+
|
|
20
|
+
- `install` for initial target bootstrap
|
|
21
|
+
- `init` for deterministic first-run runtime initialization
|
|
22
|
+
- `bootstrap` for autodiscovery-driven installation into the current repo
|
|
23
|
+
- `shell setup` and `shell status` for optional PATH integration without forcing a global npm install
|
|
24
|
+
- `status` for current workspace state
|
|
25
|
+
- `refresh` for shared runtime regeneration after install or maintenance work
|
|
26
|
+
- `task` for task-runtime inspection
|
|
27
|
+
- `pack` for task-pack inspection
|
|
28
|
+
- `review` for runtime and decision-health summaries
|
|
29
|
+
- `export` for operator-facing runtime handoff bundles
|
|
30
|
+
- `commands` for the agent-visible CLI and npm command catalog
|
|
31
|
+
- `catalog` for bundles, targets, profiles, and recommendations
|
|
32
|
+
- `recommend` for repo-intelligence and evidence-backed setup guidance
|
|
33
|
+
- `scan`, `cartograph`, `classify-boundaries`, and `synthesize-instructions`
|
|
34
|
+
for self-service repo analysis and target-aware instruction planning
|
|
35
|
+
- `target inspect`, `target list`, and `capabilities` for Codex, Claude Code,
|
|
36
|
+
Cursor, and OpenCode support inspection
|
|
37
|
+
- `template validate` and `template suggest` for template and workflow flows
|
|
38
|
+
- `flow status` for recoverable Speckit state
|
|
39
|
+
- `recursive plan`, `recursive inspect`, `recursive adr`, `recursive resume`,
|
|
40
|
+
`recursive finalize`, `recursive compact`, and `recursive repl` for optional
|
|
41
|
+
recursive-runtime operation on difficult work
|
|
42
|
+
- `observability summarize` and `observability report` for local metrics and
|
|
43
|
+
effectiveness review
|
|
44
|
+
- `parallel plan`, `parallel status`, and `parallel merge-check` for shard
|
|
45
|
+
planning and merge safety
|
|
46
|
+
- `doctor`, `audit`, `sync`, `diff-install`, `upgrade-surface`, and `prune`
|
|
47
|
+
for lifecycle diagnostics
|
|
48
|
+
- `backup`, `repair`, `restore`, `upgrade`, `migrate`, and `uninstall` for the
|
|
49
|
+
broader maintenance surface
|
|
50
|
+
|
|
51
|
+
## Common examples
|
|
52
|
+
|
|
53
|
+
Use bare `hforge` after `shell setup`, after a global install, or by replacing
|
|
54
|
+
it with the workspace-local launcher under `.hforge/generated/bin/`.
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
npx @harness-forge/cli
|
|
58
|
+
npx @harness-forge/cli shell setup --yes
|
|
59
|
+
npx @harness-forge/cli init --root . --agent codex --setup-profile recommended --yes
|
|
60
|
+
npx @harness-forge/cli init --root . --agent codex --dry-run
|
|
61
|
+
npx @harness-forge/cli bootstrap --root . --yes
|
|
62
|
+
hforge shell status --json
|
|
63
|
+
hforge init --root . --json
|
|
64
|
+
hforge bootstrap --root . --yes
|
|
65
|
+
hforge refresh --root . --json
|
|
66
|
+
hforge task list --root . --json
|
|
67
|
+
hforge task inspect TASK-001 --root . --json
|
|
68
|
+
hforge pack inspect TASK-001 --root . --json
|
|
69
|
+
hforge review --root . --json
|
|
70
|
+
hforge export --root . --json
|
|
71
|
+
hforge commands --json
|
|
72
|
+
hforge catalog --json
|
|
73
|
+
hforge recommend tests/fixtures/benchmarks/typescript-web-app --json
|
|
74
|
+
hforge scan . --json
|
|
75
|
+
hforge cartograph . --json
|
|
76
|
+
hforge classify-boundaries . --json
|
|
77
|
+
hforge synthesize-instructions . --target codex --json
|
|
78
|
+
hforge target inspect codex --json
|
|
79
|
+
hforge capabilities --target claude-code --json
|
|
80
|
+
hforge template validate --json
|
|
81
|
+
hforge template suggest bugfix
|
|
82
|
+
hforge flow status --json
|
|
83
|
+
hforge recursive plan "investigate billing retry behavior" --task-id TASK-001 --json
|
|
84
|
+
hforge recursive inspect RS-123 --json
|
|
85
|
+
hforge observability summarize --json
|
|
86
|
+
hforge observability report . --json
|
|
87
|
+
hforge parallel plan specs/005-enhanced-skills-embedding/tasks.md --json
|
|
88
|
+
hforge parallel status --json
|
|
89
|
+
hforge parallel merge-check --json
|
|
90
|
+
hforge doctor --json
|
|
91
|
+
hforge audit --json
|
|
92
|
+
hforge diff-install --json
|
|
93
|
+
hforge sync --json
|
|
94
|
+
hforge upgrade-surface --json
|
|
95
|
+
hforge prune --json
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## Maintainer source-checkout examples
|
|
99
|
+
|
|
100
|
+
When developing Harness Forge itself from a source checkout, the equivalent
|
|
101
|
+
repo-local entrypoint remains:
|
|
102
|
+
|
|
103
|
+
```bash
|
|
104
|
+
node dist/cli/index.js --help
|
|
105
|
+
node dist/cli/index.js recommend . --json
|
|
106
|
+
node dist/cli/index.js cartograph . --json
|
|
107
|
+
node dist/cli/index.js target inspect codex --json
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
## Script-level validation and reporting
|
|
111
|
+
|
|
112
|
+
The published package supports direct `npx` execution without a manual local
|
|
113
|
+
build. Git-sourced installs use npm `prepare` to build automatically during
|
|
114
|
+
installation.
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
npm run commands:catalog
|
|
118
|
+
npm run smoke:cli
|
|
119
|
+
npm run bootstrap:current
|
|
120
|
+
npm run recommend:current
|
|
121
|
+
npm run cartograph:current
|
|
122
|
+
npm run instructions:codex
|
|
123
|
+
npm run target:codex
|
|
124
|
+
npm run target:claude-code
|
|
125
|
+
npm run target:opencode
|
|
126
|
+
npm run validate:release
|
|
127
|
+
npm run validate:local
|
|
128
|
+
npm run validate:compatibility
|
|
129
|
+
npm run validate:skill-depth
|
|
130
|
+
npm run validate:framework-coverage
|
|
131
|
+
npm run validate:doc-command-alignment
|
|
132
|
+
npm run validate:runtime-consistency
|
|
133
|
+
npm run observability:summary
|
|
134
|
+
npm run knowledge:coverage
|
|
135
|
+
npm run knowledge:drift
|
|
136
|
+
npm run flow:status
|
|
137
|
+
npm run observability:report
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
## Operational docs
|
|
141
|
+
|
|
142
|
+
- `commands/plan.md`
|
|
143
|
+
- `commands/test.md`
|
|
144
|
+
- `docs/maintenance-lifecycle.md`
|
|
145
|
+
- `docs/flow-orchestration.md`
|
|
146
|
+
|
|
147
|
+
## Useful self-service workflows
|
|
148
|
+
|
|
149
|
+
### Understand a repo before installing
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
hforge recommend . --json
|
|
153
|
+
hforge cartograph . --json
|
|
154
|
+
hforge classify-boundaries . --json
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
### Generate target-aware guidance for your runtime
|
|
158
|
+
|
|
159
|
+
```bash
|
|
160
|
+
hforge target inspect codex --json
|
|
161
|
+
hforge target inspect claude-code --json
|
|
162
|
+
hforge target inspect opencode --json
|
|
163
|
+
hforge synthesize-instructions . --target codex --write --json
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
### Review local effectiveness and parallel readiness
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
hforge observability summarize --json
|
|
170
|
+
hforge observability report . --json
|
|
171
|
+
hforge parallel plan specs/005-enhanced-skills-embedding/tasks.md --json
|
|
172
|
+
hforge parallel status --json
|
|
173
|
+
hforge parallel merge-check --json
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
### Escalate difficult work into a recursive runtime session
|
|
177
|
+
|
|
178
|
+
```bash
|
|
179
|
+
hforge recursive plan "investigate billing retry behavior across the route and service" --task-id TASK-001 --json
|
|
180
|
+
hforge recursive inspect RS-123 --json
|
|
181
|
+
hforge recursive compact RS-123 --json
|
|
182
|
+
hforge recursive finalize RS-123 --json
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
The `recursive plan` entrypoint writes a durable draft session under
|
|
186
|
+
`.hforge/runtime/recursive/sessions/`, reports the session id, the active
|
|
187
|
+
budget policy, the seeded handles, and the current promotion state, and leaves
|
|
188
|
+
ordinary non-recursive task/runtime flows untouched.
|
|
189
|
+
|
|
190
|
+
### Inspect the hidden runtime after initialization
|
|
191
|
+
|
|
192
|
+
```bash
|
|
193
|
+
hforge
|
|
194
|
+
hforge status --root . --json
|
|
195
|
+
hforge refresh --root . --json
|
|
196
|
+
hforge task list --root . --json
|
|
197
|
+
hforge review --root . --json
|
|
198
|
+
hforge export --root . --json
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
When the repo already contains `.hforge/`, the no-argument `hforge` entrypoint
|
|
202
|
+
acts like a lightweight project hub and routes to these common workflows.
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Flow Orchestration
|
|
2
|
+
|
|
3
|
+
Speckit flow state is the re-entry surface for spec-driven delivery. It turns a
|
|
4
|
+
folder of artifacts into a recoverable working state with an explicit stage,
|
|
5
|
+
last artifact, blockers, and next action.
|
|
6
|
+
|
|
7
|
+
## Runtime commands
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
node scripts/runtime/flow-status.mjs --json
|
|
11
|
+
hforge flow status --json
|
|
12
|
+
hforge parallel plan specs/<feature>/tasks.md --json
|
|
13
|
+
hforge parallel status --json
|
|
14
|
+
hforge parallel merge-check --json
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Canonical state file
|
|
18
|
+
|
|
19
|
+
- `.specify/state/flow-state.json`
|
|
20
|
+
|
|
21
|
+
## Required state fields
|
|
22
|
+
|
|
23
|
+
- `featureId`
|
|
24
|
+
- `currentStage`
|
|
25
|
+
- `status`
|
|
26
|
+
- `lastArtifact`
|
|
27
|
+
- `nextAction`
|
|
28
|
+
- `updatedAt`
|
|
29
|
+
|
|
30
|
+
## Supported stages
|
|
31
|
+
|
|
32
|
+
| Stage | Meaning | Primary artifacts |
|
|
33
|
+
| --- | --- | --- |
|
|
34
|
+
| `clarify` | The work is still being framed. | `spec.md`, checklist answers |
|
|
35
|
+
| `specify` | The feature has a spec but not yet a technical plan. | `spec.md` |
|
|
36
|
+
| `plan` | Design decisions and contracts are being established. | `plan.md`, `research.md`, `contracts/` |
|
|
37
|
+
| `tasks` | The execution backlog is being generated or reviewed. | `tasks.md` |
|
|
38
|
+
| `implement` | Tasks are actively being completed. | code changes, tests, docs |
|
|
39
|
+
| `validate` | Implementation is complete and end-to-end validation is underway. | release output, quickstart checks |
|
|
40
|
+
|
|
41
|
+
## Artifact lineage
|
|
42
|
+
|
|
43
|
+
The runtime should make it easy to trace:
|
|
44
|
+
|
|
45
|
+
`spec -> plan -> research/contracts -> tasks -> implementation -> validation`
|
|
46
|
+
|
|
47
|
+
Lineage should point back to real files in `specs/<feature-id>/` instead of
|
|
48
|
+
guessing from timestamps or chat history.
|
|
49
|
+
|
|
50
|
+
## Recovery rule
|
|
51
|
+
|
|
52
|
+
If a session is interrupted, inspect `.specify/state/` first. Agents should
|
|
53
|
+
resume from the last known stage and artifact instead of re-deriving state from
|
|
54
|
+
partial memory.
|
|
55
|
+
|
|
56
|
+
## Issue-export convention
|
|
57
|
+
|
|
58
|
+
When tasks are exported into issues or tracked externally:
|
|
59
|
+
|
|
60
|
+
- preserve the originating feature id
|
|
61
|
+
- preserve task ids and dependencies
|
|
62
|
+
- keep the current stage and next action visible
|
|
63
|
+
- reference the same artifact lineage recorded in flow state
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
# Generated Artifacts
|
|
2
|
+
|
|
3
|
+
Interactive onboarding does not create a separate visible artifact family of
|
|
4
|
+
its own. It plans and writes the same hidden `.hforge/` runtime, state, and
|
|
5
|
+
generated surfaces that the direct CLI path uses, but it now adds a guided
|
|
6
|
+
review-before-write step and a completion summary around those artifacts.
|
|
7
|
+
|
|
8
|
+
Harness Forge allows generated derivative files, but only when provenance is
|
|
9
|
+
explicit and recoverable.
|
|
10
|
+
|
|
11
|
+
## Required provenance
|
|
12
|
+
|
|
13
|
+
- mark generated markdown with `generated: true`
|
|
14
|
+
- include `canonical_source` in metadata
|
|
15
|
+
- keep the canonical authored or imported source in the repository
|
|
16
|
+
|
|
17
|
+
## Hidden AI layer families
|
|
18
|
+
|
|
19
|
+
- `.hforge/library/skills/` is the canonical hidden installed skill library
|
|
20
|
+
- `.hforge/library/rules/` is the canonical hidden installed rules surface
|
|
21
|
+
- `.hforge/library/knowledge/` is the canonical hidden installed knowledge-pack surface
|
|
22
|
+
- `.hforge/templates/` is the canonical hidden installed task and workflow template surface
|
|
23
|
+
- `.hforge/runtime/` remains the generated shared runtime and repo-intelligence layer
|
|
24
|
+
- `.hforge/state/` and `.hforge/generated/` remain install and helper state surfaces
|
|
25
|
+
- `.hforge/agent-manifest.json` is the generated machine-readable agent contract for custom runtimes
|
|
26
|
+
|
|
27
|
+
## Current generated or derived surfaces
|
|
28
|
+
|
|
29
|
+
- `manifests/catalog/compatibility-matrix.json` is generated from targets,
|
|
30
|
+
profiles, hooks, workflows, skills, languages, and framework metadata
|
|
31
|
+
- `manifests/catalog/seeded-knowledge-files.json` is generated from the seeded
|
|
32
|
+
archive mapping
|
|
33
|
+
- `manifests/catalog/engineering-assistant-import-inventory.json` is authored
|
|
34
|
+
governance data for the engineering-assistant port, not a generated artifact
|
|
35
|
+
- `docs/authoring/engineering-assistant-port.md` is curated provenance for the
|
|
36
|
+
engineering-assistant import, not a runtime skill entrypoint
|
|
37
|
+
- `manifests/catalog/enhanced-skill-import-inventory.json` is authored
|
|
38
|
+
governance data for imported skill packs, not a generated artifact
|
|
39
|
+
- `docs/authoring/enhanced-skill-import.md` is curated provenance for imported
|
|
40
|
+
skill packs, not a runtime skill entrypoint
|
|
41
|
+
- `.hforge/runtime/index.json` is generated workspace runtime state that
|
|
42
|
+
records the shared runtime surfaces, installed targets, target bridges, runtime schema version, and package version selected for an
|
|
43
|
+
installed workspace
|
|
44
|
+
- `.hforge/runtime/README.md` is generated workspace documentation that
|
|
45
|
+
explains how installed discovery bridges route into the shared runtime
|
|
46
|
+
- `.hforge/agent-manifest.json` is generated workspace metadata that tells
|
|
47
|
+
custom agents which files are bridges, which roots are canonical hidden AI
|
|
48
|
+
content, which launchers are available locally, and which command catalog to
|
|
49
|
+
trust
|
|
50
|
+
- `.hforge/runtime/repo/repo-map.json` is generated baseline repo cartography
|
|
51
|
+
for the installed workspace runtime
|
|
52
|
+
- `.hforge/runtime/repo/recommendations.json` is generated recommendation output
|
|
53
|
+
derived from repo intelligence
|
|
54
|
+
- `.hforge/runtime/repo/target-support.json` is generated target support
|
|
55
|
+
summary for the installed workspace runtime
|
|
56
|
+
- `.hforge/runtime/repo/instruction-plan.json` is generated target-aware
|
|
57
|
+
instruction planning output for installed runtimes
|
|
58
|
+
- `.hforge/runtime/repo/scan-summary.json` is generated stack and validation
|
|
59
|
+
signal output from the runtime scan
|
|
60
|
+
- `.hforge/runtime/findings/validation-gaps.json` is generated validation-gap
|
|
61
|
+
output for the installed workspace runtime
|
|
62
|
+
- `.hforge/runtime/findings/risk-signals.json` is generated risk-signal output
|
|
63
|
+
for the installed workspace runtime
|
|
64
|
+
- `.hforge/runtime/tasks/TASK-XXX/file-interest.json` is generated ranked
|
|
65
|
+
task-aware file context for an active task
|
|
66
|
+
- `.hforge/runtime/tasks/TASK-XXX/impact-analysis.json` is generated blast-radius
|
|
67
|
+
analysis derived from selected task context, including architecture-significance
|
|
68
|
+
assessment metadata
|
|
69
|
+
- `.hforge/runtime/tasks/TASK-XXX/task-pack.json` is the structured summary for
|
|
70
|
+
a canonical runtime task folder, including decision refs and ASR coverage when
|
|
71
|
+
the task is architecture-significant
|
|
72
|
+
- `.hforge/runtime/tasks/TASK-XXX/recursive-session.json` links an ordinary
|
|
73
|
+
task runtime folder to the latest recursive session created for hard work on
|
|
74
|
+
that task
|
|
75
|
+
- `.hforge/runtime/decisions/ASR-*.json` and companion markdown files are
|
|
76
|
+
generated architecture-significant requirement records captured from task-time
|
|
77
|
+
runtime analysis
|
|
78
|
+
- `.hforge/runtime/decisions/index.json` is the machine-readable runtime index
|
|
79
|
+
for decision records written into the hidden AI layer
|
|
80
|
+
- `.hforge/runtime/decisions/coverage-summary.json` is reserved for runtime
|
|
81
|
+
decision-coverage maintenance summaries
|
|
82
|
+
- `.hforge/runtime/cache/working-memory.json` is compact runtime cache state for
|
|
83
|
+
resumable active work
|
|
84
|
+
- `.hforge/templates/runtime/registry.json` is the canonical hidden runtime
|
|
85
|
+
template registry for task-time artifacts
|
|
86
|
+
- `.hforge/runtime/recursive/sessions/RS-XXX/session.json` is the durable draft
|
|
87
|
+
or active recursive session identity, budget, handles, and tool surface
|
|
88
|
+
- `.hforge/runtime/recursive/sessions/RS-XXX/memory.json` is compact
|
|
89
|
+
recursive-session working memory for the current investigation
|
|
90
|
+
- `.hforge/runtime/recursive/sessions/RS-XXX/trace.jsonl` is append-only
|
|
91
|
+
recursive trace output for operator auditability
|
|
92
|
+
- `.hforge/runtime/recursive/sessions/RS-XXX/summary.json` is the deterministic
|
|
93
|
+
recursive handoff summary, even while the session is still draft
|
|
94
|
+
- `.specify/state/flow-state.json` is runtime state, not an authored source
|
|
95
|
+
- `.hforge/state/install-state.json` is generated install-state and runtime-version metadata, not authored product content
|
|
96
|
+
- `.hforge/state/post-install-guidance.txt` is generated operator guidance for init, install, and recovery flows
|
|
97
|
+
|
|
98
|
+
## Artifact lineage rules
|
|
99
|
+
|
|
100
|
+
- every flow record should point back to `spec.md`, `plan.md`, `contracts/`,
|
|
101
|
+
and `tasks.md` when they exist
|
|
102
|
+
- generated compatibility and knowledge reports must remain traceable to the
|
|
103
|
+
authored manifests they summarize
|
|
104
|
+
- generated shared-runtime state must remain traceable to install planning,
|
|
105
|
+
target adapter metadata, and workspace-selected bundles
|
|
106
|
+
- generated shared-runtime baseline artifacts must remain traceable to
|
|
107
|
+
recommendation, scan, cartography, and instruction-synthesis inputs
|
|
108
|
+
- generated decision records must remain traceable to task packs, impact
|
|
109
|
+
analysis, and the architecture-significance assessment that caused them
|
|
110
|
+
- generated recursive-session artifacts must remain traceable to the linked task
|
|
111
|
+
runtime folder when a task id is present
|
|
112
|
+
- release validation should fail when a generated artifact points to a missing
|
|
113
|
+
source
|
|
114
|
+
|
|
115
|
+
## Issue-export convention
|
|
116
|
+
|
|
117
|
+
When implementation tasks are exported to issues:
|
|
118
|
+
|
|
119
|
+
- keep the originating feature id in the issue body or metadata
|
|
120
|
+
- preserve task ids from `tasks.md`
|
|
121
|
+
- include the current flow stage and the next recommended action
|
|
122
|
+
- keep the export reproducible from the canonical task list
|
|
123
|
+
|
|
124
|
+
## Drift policy
|
|
125
|
+
|
|
126
|
+
- generated derivatives must be reproducible from canonical sources
|
|
127
|
+
- authored summaries must not be silently overwritten by import or generation
|
|
128
|
+
- runtime state can be refreshed, but authored docs and manifests require
|
|
129
|
+
explicit review
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Hook Catalog
|
|
2
|
+
|
|
3
|
+
Harness Forge treats hooks as typed runtime policies with explicit support,
|
|
4
|
+
failure behavior, and observability fields. The machine-readable source of
|
|
5
|
+
truth lives in `manifests/hooks/index.json` and
|
|
6
|
+
`schemas/hooks/hook.schema.json`.
|
|
7
|
+
|
|
8
|
+
## Hook families
|
|
9
|
+
|
|
10
|
+
| Hook | Stage | Mode | Failure policy | Codex | Claude Code | Cursor | OpenCode |
|
|
11
|
+
| --- | --- | --- | --- | --- | --- | --- | --- |
|
|
12
|
+
| `quality-gate.release-smoke` | `validate` | `blocking` | `stop-and-report` | full | full | partial | partial |
|
|
13
|
+
| `checkpoint.flow-summary` | `implement` | `advisory` | `warn-and-continue` | full | full | emulated | emulated |
|
|
14
|
+
| `scan.repo-intelligence` | `specify` | `advisory` | `warn-and-continue` | full | full | partial | partial |
|
|
15
|
+
|
|
16
|
+
## Typed hook contract
|
|
17
|
+
|
|
18
|
+
Every shipped hook manifest must declare:
|
|
19
|
+
|
|
20
|
+
- `family`, `triggerStage`, and `mode`
|
|
21
|
+
- execution ordering and failure semantics
|
|
22
|
+
- required inputs and expected outputs
|
|
23
|
+
- workflow families plus fallback guidance for runtimes without native parity
|
|
24
|
+
- target compatibility per harness
|
|
25
|
+
- observability fields that explain what happened
|
|
26
|
+
|
|
27
|
+
## Support model
|
|
28
|
+
|
|
29
|
+
- Codex: hook manifests are first-class, but execution remains
|
|
30
|
+
documentation-driven because Codex does not expose the same native hook
|
|
31
|
+
runtime as Claude Code.
|
|
32
|
+
- Claude Code: full support for the shipped hook surfaces.
|
|
33
|
+
- Cursor and OpenCode: portability only. We document the policies and include
|
|
34
|
+
compatibility metadata, but we do not claim native parity.
|
|
35
|
+
- Ported workflows such as `engineering-assistant` must explicitly label hook
|
|
36
|
+
behavior as native, translated, manual, or documentation-only.
|
|
37
|
+
|
|
38
|
+
## Operator guidance
|
|
39
|
+
|
|
40
|
+
1. Treat `blocking` hooks as release or safety gates.
|
|
41
|
+
2. Treat `advisory` hooks as high-signal diagnostics, not hard stops.
|
|
42
|
+
3. Use `docs/target-support-matrix.md` and
|
|
43
|
+
`manifests/catalog/compatibility-matrix.json` when deciding whether a hook
|
|
44
|
+
promise is native, partial, or emulated for a given target.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Target install notes
|
|
2
|
+
|
|
3
|
+
The package now ships `targets/codex/runtime/.codex/` and
|
|
4
|
+
`targets/claude-code/runtime/.claude/` so runtime surfaces are real instead of
|
|
5
|
+
implied.
|
|
6
|
+
|
|
7
|
+
Installed workspaces also compile a shared runtime under `.hforge/runtime/`.
|
|
8
|
+
Installed workspaces keep the canonical AI content under `.hforge/library/`
|
|
9
|
+
and `.hforge/templates/`. Target-native entry points such as `AGENTS.md`,
|
|
10
|
+
`CLAUDE.md`, `.agents/skills/`, and `.codex/` should be treated as thin
|
|
11
|
+
bridges back to that hidden AI layer rather than as separate knowledge
|
|
12
|
+
systems.
|
|
13
|
+
|
|
14
|
+
The runtime now hydrates baseline repo-intelligence artifacts during bootstrap:
|
|
15
|
+
|
|
16
|
+
- `.hforge/runtime/repo/repo-map.json`
|
|
17
|
+
- `.hforge/runtime/repo/recommendations.json`
|
|
18
|
+
- `.hforge/runtime/repo/instruction-plan.json`
|
|
19
|
+
- `.hforge/runtime/findings/risk-signals.json`
|
|
20
|
+
|
|
21
|
+
Canonical target support truth lives in
|
|
22
|
+
`manifests/catalog/harness-capability-matrix.json`.
|
|
23
|
+
|
|
24
|
+
Use it when you need to answer:
|
|
25
|
+
|
|
26
|
+
- which capabilities are native, translated, emulated, or documentation-only
|
|
27
|
+
- what fallback behavior degraded support requires
|
|
28
|
+
- whether a support claim is still aligned with the generated
|
|
29
|
+
`docs/target-support-matrix.md` surface
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
# Installation
|
|
2
|
+
|
|
3
|
+
## Front-door setup styles
|
|
4
|
+
|
|
5
|
+
Harness Forge supports both a guided interactive front door and a direct
|
|
6
|
+
flag-driven install path:
|
|
7
|
+
|
|
8
|
+
- `npx @harness-forge/cli` opens first-run onboarding in an interactive
|
|
9
|
+
terminal or a project hub when `.hforge/` already exists
|
|
10
|
+
- `hforge init --root <repo> --agent codex --yes` performs the same setup
|
|
11
|
+
through explicit flags without prompts
|
|
12
|
+
- `hforge init --root <repo> --agent codex --dry-run` previews the planned
|
|
13
|
+
writes without changing the repo
|
|
14
|
+
|
|
15
|
+
Use the interactive flow when you want help choosing folder, targets,
|
|
16
|
+
quick/recommended/advanced setup depth, and optional modules. Use the direct
|
|
17
|
+
path for CI, automation, or expert usage.
|
|
18
|
+
|
|
19
|
+
## Local launcher paths
|
|
20
|
+
|
|
21
|
+
Setup writes reusable workspace-local launchers under `.hforge/generated/bin/`
|
|
22
|
+
so you can keep using Harness Forge after the initial `npx` run:
|
|
23
|
+
|
|
24
|
+
- `.hforge/generated/bin/hforge.cmd` for Windows Command Prompt
|
|
25
|
+
- `.hforge/generated/bin/hforge.ps1` for PowerShell
|
|
26
|
+
- `.hforge/generated/bin/hforge` for POSIX shells
|
|
27
|
+
|
|
28
|
+
Those launchers call the published package through `npx @harness-forge/cli`.
|
|
29
|
+
You only need a global install if you specifically want plain `hforge`
|
|
30
|
+
available everywhere on your machine.
|
|
31
|
+
|
|
32
|
+
Harness Forge supports two install paths:
|
|
33
|
+
|
|
34
|
+
- published package: run `npx @harness-forge/cli bootstrap --root . --yes` in the repository you want to equip, with no manual local build step
|
|
35
|
+
- source checkout: run `npm install && npm run build`, then use `node dist/cli/index.js install` or `node dist/cli/index.js bootstrap`
|
|
36
|
+
|
|
37
|
+
Git-sourced npm and `npx` installs are also supported through the package
|
|
38
|
+
`prepare` lifecycle, which builds the CLI automatically during installation.
|
|
39
|
+
|
|
40
|
+
For a deterministic first-run workspace setup before target installation, use:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
npx @harness-forge/cli init --root /path/to/your/workspace --json
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
After install changes, use:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
hforge refresh --root /path/to/your/workspace --json
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Every successful install also writes a shared runtime summary under
|
|
53
|
+
`.hforge/runtime/` and materializes the canonical hidden AI layer under
|
|
54
|
+
`.hforge/library/` and `.hforge/templates/`:
|
|
55
|
+
|
|
56
|
+
- `.hforge/agent-manifest.json` gives custom agents one machine-readable map of
|
|
57
|
+
bridge files, canonical roots, launchers, and safe command discovery
|
|
58
|
+
- `.hforge/library/skills/` holds the installed canonical skill library
|
|
59
|
+
- `.hforge/library/rules/` holds the installed canonical rules
|
|
60
|
+
- `.hforge/library/knowledge/` holds the installed knowledge packs
|
|
61
|
+
- `.hforge/templates/` holds the installed canonical task and workflow templates
|
|
62
|
+
|
|
63
|
+
- `.hforge/runtime/index.json` records the durable runtime surfaces and bridge
|
|
64
|
+
paths selected for the workspace, including every installed target
|
|
65
|
+
- `.hforge/agent-manifest.json` is the stable custom-agent contract that points
|
|
66
|
+
agents at `AGENTS.md`, `.hforge/runtime/index.json`, and
|
|
67
|
+
`.hforge/generated/agent-command-catalog.json`
|
|
68
|
+
- `.hforge/runtime/README.md` explains how root instructions, target runtime
|
|
69
|
+
files, and portable docs route back to that shared runtime
|
|
70
|
+
- `.hforge/runtime/repo/repo-map.json` records the baseline repo map hydrated
|
|
71
|
+
during bootstrap
|
|
72
|
+
- `.hforge/runtime/repo/instruction-plan.json` records target-aware bridge
|
|
73
|
+
planning for installed runtimes
|
|
74
|
+
- `.hforge/runtime/findings/risk-signals.json` records baseline runtime risk
|
|
75
|
+
signals discovered during bootstrap
|
|
76
|
+
- `.hforge/runtime/recursive/sessions/RS-XXX/session.json` appears only when an
|
|
77
|
+
operator explicitly escalates hard work into recursive mode and records the
|
|
78
|
+
durable draft session, budget, handles, and promotion state
|
|
79
|
+
|
|
80
|
+
## Shell integration vs global install
|
|
81
|
+
|
|
82
|
+
If you want bare `hforge` to work after project setup, prefer:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
npx @harness-forge/cli shell setup --yes
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
That writes a user-level shim and updates a supported shell profile so the
|
|
89
|
+
command is available without forcing a machine-wide npm mutation from inside a
|
|
90
|
+
project bootstrap.
|
|
91
|
+
|
|
92
|
+
Global install is still optional:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
npm install -g @harness-forge/cli
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
Use that only if you explicitly want npm-managed machine-wide availability.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Languages
|
|
2
|
+
|
|
3
|
+
Harness Forge has two language-pack tiers:
|
|
4
|
+
|
|
5
|
+
- seeded packs under `knowledge-bases/seeded/`
|
|
6
|
+
- structured packs under `knowledge-bases/structured/`
|
|
7
|
+
|
|
8
|
+
Each language pack is expected to expose docs, rules, skills, examples, and at
|
|
9
|
+
least one workflow surface that can be recommended or installed intentionally.
|
|
10
|
+
|
|
11
|
+
Agent runtimes should discover language packs through `.agents/skills/` and
|
|
12
|
+
then execute against the canonical `skills/` surface plus any attached
|
|
13
|
+
`references/` depth.
|
|
14
|
+
|
|
15
|
+
## How recommendations use them
|
|
16
|
+
|
|
17
|
+
- dominant repo language signals drive `lang:*` bundle recommendations
|
|
18
|
+
- framework signals extend a base language recommendation with `framework:*`
|
|
19
|
+
packs
|
|
20
|
+
- high-risk or weakly validated repos also receive skill, profile, and
|
|
21
|
+
validation guidance
|
|
22
|
+
|
|
23
|
+
## Current emphasis
|
|
24
|
+
|
|
25
|
+
- seeded packs preserve imported source knowledge with file-level traceability
|
|
26
|
+
- structured packs provide deeper operational guidance where the source archive
|
|
27
|
+
was missing
|
|
28
|
+
- framework packs overlay repo-shape context on top of language guidance
|
|
29
|
+
|
|
30
|
+
See `docs/catalog/language-packs.md` for pack coverage and
|
|
31
|
+
`docs/catalog/framework-packs.md` for framework overlays.
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Maintenance Lifecycle
|
|
2
|
+
|
|
3
|
+
Harness Forge maintenance should answer three questions quickly:
|
|
4
|
+
|
|
5
|
+
1. what is installed
|
|
6
|
+
2. what drifted or went stale
|
|
7
|
+
3. what is safe to repair, prune, or upgrade
|
|
8
|
+
|
|
9
|
+
## Primary commands
|
|
10
|
+
|
|
11
|
+
| Command | Purpose |
|
|
12
|
+
| --- | --- |
|
|
13
|
+
| `doctor` | quick health check for missing paths, bundles, and surface drift |
|
|
14
|
+
| `audit` | detailed install-state summary |
|
|
15
|
+
| `diff-install` | compare recorded managed files against what still exists |
|
|
16
|
+
| `refresh` | rewrite shared runtime summaries and baseline repo-intelligence artifacts |
|
|
17
|
+
| `sync` | normalize duplicated install-state entries |
|
|
18
|
+
| `upgrade-surface` | explain how to refresh an older install safely |
|
|
19
|
+
| `prune` | identify duplicate recorded writes before cleanup |
|
|
20
|
+
| `repair` / `restore` / `backup` | lifecycle commands from the earlier maintenance wave |
|
|
21
|
+
|
|
22
|
+
## Recommended order
|
|
23
|
+
|
|
24
|
+
1. run `doctor` to spot obvious drift
|
|
25
|
+
2. run `audit` for the full install-state summary
|
|
26
|
+
3. use `refresh` when installed targets are correct but shared runtime summaries drifted
|
|
27
|
+
4. use `diff-install` and `sync` to understand state mismatch
|
|
28
|
+
4. use `upgrade-surface` before refreshing an older install
|
|
29
|
+
5. use `prune` only after reviewing the candidates
|
|
30
|
+
|
|
31
|
+
## Example commands
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
hforge doctor --json
|
|
35
|
+
hforge audit --json
|
|
36
|
+
hforge refresh --root . --json
|
|
37
|
+
hforge diff-install --json
|
|
38
|
+
hforge sync --json
|
|
39
|
+
hforge upgrade-surface --json
|
|
40
|
+
hforge prune --json
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Operator expectations
|
|
44
|
+
|
|
45
|
+
- maintenance commands should be diagnostic first and destructive second
|
|
46
|
+
- drift should point to concrete files or bundle ids
|
|
47
|
+
- upgrade guidance should tell the operator what to rerun next
|
|
48
|
+
- prune should never remove state silently without explicit opt-in
|
|
49
|
+
- refresh should be safe to rerun and should not require reinstalling bundles just to regenerate runtime summaries
|
|
50
|
+
|
|
51
|
+
## Imported skill maintenance
|
|
52
|
+
|
|
53
|
+
- review `manifests/catalog/engineering-assistant-import-inventory.json` before
|
|
54
|
+
refreshing or extending the engineering-assistant port
|
|
55
|
+
- keep `docs/authoring/engineering-assistant-port.md` aligned with the actual
|
|
56
|
+
embedded scope, helper translation plan, and runtime-compatibility notes
|
|
57
|
+
- review `manifests/catalog/enhanced-skill-import-inventory.json` before
|
|
58
|
+
refreshing or pruning any embedded skill-pack content
|
|
59
|
+
- keep `docs/authoring/enhanced-skill-import.md` aligned with the actual
|
|
60
|
+
embedded scope and provenance
|
|
61
|
+
- run `npm run validate:skill-depth` after any skill-pack refresh so missing
|
|
62
|
+
sections or sentinel references fail fast
|