atris 3.15.46 → 3.15.48

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/AGENTS.md CHANGED
@@ -130,7 +130,7 @@ member -> mission start --verify -> status --status active -> one bounded step -
130
130
  This workspace has a compiled agent brain.
131
131
 
132
132
  On session start, activate it first:
133
- `atris brain activate --root /Users/keshavrao/arena/empire/atris-cli --verify`
133
+ `atris brain activate --root /Users/keshavrao/arena/atris-cli --verify`
134
134
 
135
135
  Load these first:
136
136
  - `atris/now.md`
@@ -149,5 +149,5 @@ Shape: `<operator>, today is about <move>` -> `I picked this because <why now>`
149
149
  Definitions: operator = current person or agent; move = one concrete high-leverage workflow; why now = business reason; ready = prepared action or proof; paths = 2-4 optional deeper views.
150
150
 
151
151
  Re-run after meaningful work:
152
- `atris brain compile --root /Users/keshavrao/arena/empire/atris-cli`
152
+ `atris brain compile --root /Users/keshavrao/arena/atris-cli`
153
153
  <!-- ATRIS_BRAIN_COMPILE:END -->
@@ -26,4 +26,4 @@ Key behaviors:
26
26
  - Read PERSONA.md (3-4 sentences, ASCII visuals)
27
27
  - Check MAP.md for file:line refs
28
28
  - Use `atris task` for claims, proof, ready, and accept
29
- - Treat TODO.md as a rendered view; regenerate it instead of hand-editing tasks
29
+ - Treat TODO.md as a rendered view; regenerate it instead of hand-editing tasks
package/bin/atris.js CHANGED
@@ -103,7 +103,7 @@ if (!skipUpdateCheck && (!updateCommand || (updateCommand && !['version', 'updat
103
103
  });
104
104
  }
105
105
 
106
- const command = process.argv[2];
106
+ let command = process.argv[2];
107
107
  const commandArgs = process.argv.slice(3);
108
108
  const firstCommandArg = process.argv[3];
109
109
  const isBusinessSyncSafetyCommand = command === 'sync'
@@ -333,6 +333,7 @@ function showHelp() {
333
333
  console.log(' log - Add ideas to inbox');
334
334
  console.log(' now - Show atris/now.md, the current operating truth');
335
335
  console.log(' activate - Load Atris context');
336
+ console.log(' radar - Show live agents joined with tasks, missions, and worktrees');
336
337
  console.log(' status - See local work and completions (`atris status <business>` for remote)');
337
338
  console.log(' xp - Show Career XP and contribution graph');
338
339
  console.log(' analytics - Show recent productivity from journals');
@@ -764,7 +765,7 @@ if (command === '2' && ['fast', 'pro'].includes(String(firstCommandArg || '').to
764
765
  }
765
766
 
766
767
  // Check if this is a known command or natural language input
767
- const knownCommands = ['init', 'log', 'now', 'status', 'analytics', 'visualize', 'brain', 'brainstorm', 'autopilot', 'run', 'plan', 'do', 'review', 'release',
768
+ const knownCommands = ['init', 'log', 'now', 'radar', 'status', 'analytics', 'visualize', 'brain', 'brainstorm', 'autopilot', 'run', 'plan', 'do', 'review', 'release',
768
769
  'activate', '_activate', 'agent', 'chat', 'console', 'serve', 'login', 'logout', 'whoami', 'switch', 'use', 'accounts', '_resolve', '_profile-email', '_switch-session', 'shell-init', 'update', 'upgrade', 'version', 'help', 'next', 'atris',
769
770
  'clean', 'verify', 'search', 'skill', 'member', 'codex-goal', 'app', 'apps', 'learn', 'lesson', 'plugin', 'experiments', 'receipt', 'proof', 'openclaw', 'pull', 'push', 'live', 'align', 'terminal', 'computer', 'diff', 'business', 'sync',
770
771
  'ingest', 'query', 'lint', 'loop', 'task', 'mission', 'worktree', 'aeo', 'xp', 'play', 'gm', 'x',
@@ -800,8 +801,9 @@ const voiceTriggers = {
800
801
  'start a business': 'business',
801
802
  'new business': 'business',
802
803
  'show status': 'status',
803
- 'what happened': 'status',
804
- 'whats going on': 'status',
804
+ 'what happened': 'radar',
805
+ 'whats going on': 'radar',
806
+ 'what is going on': 'radar',
805
807
  'run tests': 'verify',
806
808
  'check health': 'status',
807
809
  'deploy': 'business',
@@ -1180,6 +1182,10 @@ if (command === 'init') {
1180
1182
  Promise.resolve(require('../commands/worktree').worktreeCommand(process.argv.slice(3)))
1181
1183
  .then((code) => process.exit(code || 0))
1182
1184
  .catch((err) => { console.error(`\n✗ Error: ${err.message || err}`); process.exit(1); });
1185
+ } else if (command === 'radar') {
1186
+ Promise.resolve(require('../commands/radar').radarCommand(process.argv.slice(3)))
1187
+ .then((code) => process.exit(code || 0))
1188
+ .catch((err) => { console.error(`\n✗ Error: ${err.message || err}`); process.exit(1); });
1183
1189
  } else if (command === 'codex-goal') {
1184
1190
  Promise.resolve(require('../commands/codex-goal').codexGoalCommand(process.argv.slice(3)))
1185
1191
  .then(() => process.exit(process.exitCode || 0))