@askexenow/exe-os 0.8.63 → 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 +17 -2
- package/dist/bin/exe-start.sh +2 -2
- package/dist/bin/setup.js +5 -1
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -7524,7 +7524,11 @@ async function runSetupWizard(opts = {}) {
|
|
|
7524
7524
|
log("Team: " + createdEmployees.map((e) => `${e.name} (${e.role})`).join(", "));
|
|
7525
7525
|
}
|
|
7526
7526
|
log("");
|
|
7527
|
-
log(
|
|
7527
|
+
log("=== Next Steps ===");
|
|
7528
|
+
log("");
|
|
7529
|
+
log(" 1. Restart your terminal (or run: source ~/.zshrc)");
|
|
7530
|
+
log(` 2. cd into a project folder: cd ~/my-project`);
|
|
7531
|
+
log(` 3. Launch your COO: ${cooName}1`);
|
|
7528
7532
|
log("");
|
|
7529
7533
|
} finally {
|
|
7530
7534
|
rl.close();
|
|
@@ -24604,13 +24608,24 @@ if (args.includes("--global")) {
|
|
|
24604
24608
|
}
|
|
24605
24609
|
})();
|
|
24606
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
|
+
}
|
|
24607
24621
|
console.log(`
|
|
24608
24622
|
\x1B[1mexe-os\x1B[0m \u2014 AI Employee Operating System
|
|
24609
24623
|
|
|
24610
24624
|
\x1B[33mMode 1 detected:\x1B[0m Claude Code integration is installed.
|
|
24611
|
-
|
|
24625
|
+
cd into a project folder and run \x1B[1m${cooName}1\x1B[0m to boot your COO.
|
|
24612
24626
|
|
|
24613
24627
|
\x1B[2mCommands:\x1B[0m
|
|
24628
|
+
${cooName}1 Launch COO in project folder
|
|
24614
24629
|
exe-os update Check for and install updates
|
|
24615
24630
|
exe-os setup Re-run setup wizard
|
|
24616
24631
|
exe-os claude check Verify Claude Code integration
|
package/dist/bin/exe-start.sh
CHANGED
|
@@ -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/dist/bin/setup.js
CHANGED
|
@@ -4551,7 +4551,11 @@ async function runSetupWizard(opts = {}) {
|
|
|
4551
4551
|
log("Team: " + createdEmployees.map((e) => `${e.name} (${e.role})`).join(", "));
|
|
4552
4552
|
}
|
|
4553
4553
|
log("");
|
|
4554
|
-
log(
|
|
4554
|
+
log("=== Next Steps ===");
|
|
4555
|
+
log("");
|
|
4556
|
+
log(" 1. Restart your terminal (or run: source ~/.zshrc)");
|
|
4557
|
+
log(` 2. cd into a project folder: cd ~/my-project`);
|
|
4558
|
+
log(` 3. Launch your COO: ${cooName}1`);
|
|
4555
4559
|
log("");
|
|
4556
4560
|
} finally {
|
|
4557
4561
|
rl.close();
|
package/package.json
CHANGED