@askexenow/exe-os 0.8.64 → 0.8.65

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/dist/bin/cli.js CHANGED
@@ -24608,13 +24608,24 @@ if (args.includes("--global")) {
24608
24608
  }
24609
24609
  })();
24610
24610
  if (hasClaudeCode) {
24611
+ let cooName = "exe";
24612
+ try {
24613
+ const rosterPath = path35.join(os11.homedir(), ".exe-os", "exe-employees.json");
24614
+ if (existsSync23(rosterPath)) {
24615
+ const roster = JSON.parse(readFileSync19(rosterPath, "utf8"));
24616
+ const coo = roster.find((e) => e.role === "COO");
24617
+ if (coo) cooName = coo.name;
24618
+ }
24619
+ } catch {
24620
+ }
24611
24621
  console.log(`
24612
24622
  \x1B[1mexe-os\x1B[0m \u2014 AI Employee Operating System
24613
24623
 
24614
24624
  \x1B[33mMode 1 detected:\x1B[0m Claude Code integration is installed.
24615
- Open Claude Code and run \x1B[1m/exe\x1B[0m to boot your COO.
24625
+ cd into a project folder and run \x1B[1m${cooName}1\x1B[0m to boot your COO.
24616
24626
 
24617
24627
  \x1B[2mCommands:\x1B[0m
24628
+ ${cooName}1 Launch COO in project folder
24618
24629
  exe-os update Check for and install updates
24619
24630
  exe-os setup Re-run setup wizard
24620
24631
  exe-os claude check Verify Claude Code integration
@@ -125,9 +125,9 @@ if tmux has-session -t "$SESSION" 2>/dev/null; then
125
125
  exit 1
126
126
  fi
127
127
 
128
- # Create session and launch COO
128
+ # Create session and launch COO with full identity + behaviors + bypass permissions
129
129
  tmux new-session -d -s "$SESSION" -c "$PWD"
130
- tmux send-keys -t "$SESSION" "$COO_NAME" Enter
130
+ tmux send-keys -t "$SESSION" "exe-launch-agent --agent $COO_NAME" Enter
131
131
 
132
132
  # Attach user to session
133
133
  exec tmux attach -t "$SESSION"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askexenow/exe-os",
3
- "version": "0.8.64",
3
+ "version": "0.8.65",
4
4
  "description": "AI employee operating system — persistent memory, task management, and multi-agent coordination for Claude Code.",
5
5
  "license": "CC-BY-NC-4.0",
6
6
  "type": "module",