@ghl-ai/aw 0.1.39-beta.1 → 0.1.39-beta.10

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/cli.mjs CHANGED
@@ -18,6 +18,9 @@ const COMMANDS = {
18
18
  'push-rules': () => import('./commands/push-rules.mjs').then(m => m.pushRulesCommand),
19
19
  drop: () => import('./commands/drop.mjs').then(m => m.dropCommand),
20
20
  status: () => import('./commands/status.mjs').then(m => m.statusCommand),
21
+ doctor: () => import('./commands/doctor.mjs').then(m => m.doctorCommand),
22
+ routing: () => import('./commands/startup.mjs').then(m => m.routingCommand),
23
+ startup: () => import('./commands/startup.mjs').then(m => m.startupCommand),
21
24
  search: () => import('./commands/search.mjs').then(m => m.searchCommand),
22
25
  link: () => import('./commands/link-project.mjs').then(m => m.linkProjectCommand),
23
26
  nuke: () => import('./commands/nuke.mjs').then(m => m.nukeCommand),
@@ -97,7 +100,11 @@ function printHelp() {
97
100
 
98
101
  sec('Manage'),
99
102
  cmd('aw status', 'Show synced paths, modified files & conflicts'),
103
+ cmd('aw doctor', 'Run a health check for routing, MCP, plugin, and AW ECC surfaces'),
100
104
  cmd('aw link', 'Link current project as a git worktree (wires IDE symlinks)'),
105
+ cmd('aw routing status', 'Show global AW session-routing mode for Claude/Cursor/Codex'),
106
+ cmd('aw routing disable', 'Disable automatic AW session routing globally'),
107
+ cmd('aw routing enable', 'Re-enable automatic AW session routing globally'),
101
108
  cmd('aw drop <path>', 'Stop syncing or delete local content'),
102
109
  cmd('aw nuke', 'Remove entire .aw_registry/ & start fresh'),
103
110
  cmd('aw daemon install', 'Auto-pull on a schedule (macOS launchd / Linux cron)'),
@@ -127,7 +134,7 @@ function printHelp() {
127
134
  cmd('aw push .aw_registry/agents/<name>.md', 'Push a single agent'),
128
135
  cmd('aw push .aw_registry/skills/<name>/', 'Push a single skill folder'),
129
136
  cmd('aw push .aw_rules', 'Auto-redirects to aw push-rules'),
130
- cmd('aw push-rules', 'Pushes .aw_rules or .aw_registry/.aw_rules'),
137
+ cmd('aw push-rules', 'Pushes .aw_rules'),
131
138
  '',
132
139
  ` ${chalk.dim('# Remove content from workspace')}`,
133
140
  cmd('aw drop <team>', 'Stop syncing a namespace (removes all files)'),