hunter-harness 0.2.23 → 0.2.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/bin.js +4 -0
  2. package/package.json +1 -1
package/dist/bin.js CHANGED
@@ -5978,6 +5978,10 @@ async function runRefresh(options, dependencies) {
5978
5978
  }
5979
5979
  }
5980
5980
  }
5981
+ if (options.forceManaged === true && !dryRun && options.yes !== true && options.confirmed !== true) {
5982
+ dependencies.stderr("FORCE_MANAGED_REQUIRES_CONFIRM: --force-managed requires --yes or --confirmed\n");
5983
+ return 2;
5984
+ }
5981
5985
  try {
5982
5986
  const result = await refreshProject({
5983
5987
  projectRoot: dependencies.cwd,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hunter-harness",
3
- "version": "0.2.23",
3
+ "version": "0.2.25",
4
4
  "description": "Local-first, server-governed agent harness",
5
5
  "license": "MIT",
6
6
  "type": "module",