@ghl-ai/aw 0.1.35-beta.25 → 0.1.35-beta.28

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/commands/nuke.mjs CHANGED
@@ -291,7 +291,11 @@ export function nukeCommand(args) {
291
291
  }
292
292
 
293
293
  // 10. Remove ~/.aw_registry/ itself (source of truth — last!)
294
- rmSync(GLOBAL_AW_DIR, { recursive: true, force: true });
294
+ try {
295
+ rmSync(GLOBAL_AW_DIR, { recursive: true, force: true, maxRetries: 3, retryDelay: 100 });
296
+ } catch {
297
+ try { execSync(`rm -rf "${GLOBAL_AW_DIR}"`, { stdio: 'pipe' }); } catch { /* best effort */ }
298
+ }
295
299
  fmt.logStep('Removed ~/.aw_registry/');
296
300
 
297
301
  fmt.outro([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ghl-ai/aw",
3
- "version": "0.1.35-beta.25",
3
+ "version": "0.1.35-beta.28",
4
4
  "description": "Agentic Workspace CLI — pull, push & manage agents, skills and commands from the registry",
5
5
  "type": "module",
6
6
  "bin": {