hatch3r 2.0.0 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/cli/index.js +783 -422
- package/dist/content/agents/hatch3r-brownfield-spec.md +1 -1
- package/dist/content/agents/hatch3r-fixer.md +1 -1
- package/dist/content/agents/hatch3r-handoff-preparer.md +4 -16
- package/dist/content/agents/hatch3r-implementer.md +1 -1
- package/dist/content/agents/hatch3r-reviewer.md +1 -1
- package/dist/content/agents/shared/efficiency-patterns.md +1 -1
- package/dist/content/agents/shared/quality-charter.md +3 -3
- package/dist/content/agents/shared/severity-mapping.md +1 -1
- package/dist/content/agents/shared/triage-vocabulary.md +1 -1
- package/dist/content/agents/shared/user-content-templates.md +1 -1
- package/dist/content/agents/shared/user-question-protocol.md +3 -3
- package/dist/content/commands/hatch3r-api-spec.md +4 -16
- package/dist/content/commands/hatch3r-auth-scaffold.md +7 -20
- package/dist/content/commands/hatch3r-benchmark.md +4 -16
- package/dist/content/commands/hatch3r-board-fill.md +4 -16
- package/dist/content/commands/hatch3r-board-pickup.md +4 -16
- package/dist/content/commands/hatch3r-bug-pipeline.md +3 -15
- package/dist/content/commands/hatch3r-bug-plan.md +4 -16
- package/dist/content/commands/hatch3r-codebase-map.md +4 -16
- package/dist/content/commands/hatch3r-create.md +4 -16
- package/dist/content/commands/hatch3r-debug.md +4 -16
- package/dist/content/commands/hatch3r-diagnose.md +10 -18
- package/dist/content/commands/hatch3r-feature-plan.md +4 -16
- package/dist/content/commands/hatch3r-handoff.md +4 -16
- package/dist/content/commands/hatch3r-healthcheck.md +4 -16
- package/dist/content/commands/hatch3r-incident-response.md +3 -15
- package/dist/content/commands/hatch3r-migration-plan.md +4 -16
- package/dist/content/commands/hatch3r-onboard.md +5 -17
- package/dist/content/commands/hatch3r-pack-install.md +6 -29
- package/dist/content/commands/hatch3r-pr-resolve.md +11 -53
- package/dist/content/commands/hatch3r-project-spec.md +4 -16
- package/dist/content/commands/hatch3r-quick-change.md +4 -16
- package/dist/content/commands/hatch3r-refactor-plan.md +4 -16
- package/dist/content/commands/hatch3r-release.md +5 -15
- package/dist/content/commands/hatch3r-revision.md +4 -16
- package/dist/content/commands/hatch3r-roadmap.md +4 -16
- package/dist/content/commands/hatch3r-security-audit.md +4 -16
- package/dist/content/commands/hatch3r-slo-scaffold.md +8 -20
- package/dist/content/commands/hatch3r-spec.md +11 -16
- package/dist/content/commands/hatch3r-test-plan.md +4 -16
- package/dist/content/commands/hatch3r-workflow.md +4 -16
- package/dist/content/commands/shared/orchestration-frame.md +2 -2
- package/dist/content/rules/hatch3r-agent-orchestration.md +1 -1
- package/dist/content/rules/hatch3r-agent-orchestration.mdc +1 -1
- package/dist/content/rules/hatch3r-anti-duplication.md +6 -4
- package/dist/content/rules/hatch3r-anti-duplication.mdc +6 -4
- package/dist/content/rules/hatch3r-clarification-default.md +2 -2
- package/dist/content/rules/hatch3r-clarification-default.mdc +2 -2
- package/dist/content/rules/hatch3r-cost-visibility.md +11 -4
- package/dist/content/rules/hatch3r-cost-visibility.mdc +11 -4
- package/dist/content/rules/hatch3r-handoff-readiness.md +1 -1
- package/dist/content/rules/hatch3r-handoff-readiness.mdc +1 -1
- package/dist/content/rules/hatch3r-iteration-summary.md +45 -49
- package/dist/content/rules/hatch3r-iteration-summary.mdc +45 -49
- package/dist/content/rules/hatch3r-learning-system.md +6 -6
- package/dist/content/rules/hatch3r-learning-system.mdc +6 -6
- package/dist/content/rules/hatch3r-reviewer-calibration.md +2 -2
- package/dist/content/rules/hatch3r-reviewer-calibration.mdc +2 -2
- package/dist/content/rules/hatch3r-tool-currency.md +1 -1
- package/dist/content/rules/hatch3r-tool-currency.mdc +1 -1
- package/dist/content/skills/hatch3r-adhoc-orchestrate/SKILL.md +1 -1
- package/dist/content/skills/hatch3r-handoff-prepare/SKILL.md +4 -4
- package/dist/content/skills/hatch3r-report/SKILL.md +1 -1
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -84,6 +84,7 @@ hatch3r provides a full project lifecycle, from setup to release:
|
|
|
84
84
|
|
|
85
85
|
```bash
|
|
86
86
|
npx hatch3r init # Interactive setup (or --default for zero prompts)
|
|
87
|
+
npx hatch3r setup [dir] # Scaffold a new project (mkdir + git init) then run init
|
|
87
88
|
npx hatch3r config # Reconfigure tools, MCP servers, features, and platform
|
|
88
89
|
npx hatch3r sync # Re-generate from canonical state
|
|
89
90
|
npx hatch3r update # Pull latest templates (safe merge)
|