@askexenow/exe-os 0.8.99 → 0.8.101

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
@@ -13112,7 +13112,7 @@ async function runUpdate(cliArgs) {
13112
13112
  if (!proceed) {
13113
13113
  const rl = createInterface4({ input: process.stdin, output: process.stdout });
13114
13114
  const answer = await new Promise((resolve) => {
13115
- rl.question("Install update? (Y/n) ", resolve);
13115
+ rl.question("Install update? (y/n) ", resolve);
13116
13116
  });
13117
13117
  rl.close();
13118
13118
  proceed = answer.toLowerCase() !== "n";
@@ -59,7 +59,7 @@ if [ "${1:-}" = "go" ]; then
59
59
  # Only check if we're actually inside tmux (TMUX or TMUX_PANE set).
60
60
  # tmux display-message works even outside tmux and returns the last
61
61
  # active session, which gives false positives on single-session machines.
62
- if [ -n "$TMUX" ] || [ -n "$TMUX_PANE" ]; then
62
+ if [ -n "${TMUX:-}" ] || [ -n "${TMUX_PANE:-}" ]; then
63
63
  CURRENT_SESSION="$(tmux display-message -p '#{session_name}' 2>/dev/null || true)"
64
64
  if [ "$CURRENT_SESSION" = "$SESSION" ]; then
65
65
  echo " Already inside ${SESSION}."
@@ -579,7 +579,7 @@ async function runUpdate(cliArgs) {
579
579
  if (!proceed) {
580
580
  const rl = createInterface({ input: process.stdin, output: process.stdout });
581
581
  const answer = await new Promise((resolve) => {
582
- rl.question("Install update? (Y/n) ", resolve);
582
+ rl.question("Install update? (y/n) ", resolve);
583
583
  });
584
584
  rl.close();
585
585
  proceed = answer.toLowerCase() !== "n";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askexenow/exe-os",
3
- "version": "0.8.99",
3
+ "version": "0.8.101",
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",