@ghl-ai/aw 0.1.39-beta.7 → 0.1.39-beta.9
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 +8 -1
- package/codex.mjs +839 -0
- package/commands/doctor.mjs +1086 -0
- package/commands/init.mjs +71 -81
- package/commands/link-project.mjs +12 -1
- package/commands/nuke.mjs +14 -4
- package/commands/pull.mjs +111 -11
- package/commands/push-rules.mjs +4 -15
- package/commands/push.mjs +4 -4
- package/commands/search.mjs +1 -1
- package/commands/startup.mjs +87 -0
- package/constants.mjs +3 -1
- package/ecc.mjs +130 -42
- package/git.mjs +4 -23
- package/hook-manifest.mjs +195 -0
- package/hooks/codex-home.mjs +184 -0
- package/hooks/shared-phase-scripts.mjs +69 -0
- package/integrate.mjs +171 -20
- package/link.mjs +36 -1
- package/mcp.mjs +2 -10
- package/package.json +8 -2
- package/paths.mjs +1 -1
- package/registry.mjs +1 -1
- package/render-rules.mjs +127 -16
- package/startup.mjs +562 -0
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
|
|
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)'),
|