@askexenow/exe-os 0.9.56 → 0.9.57

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
@@ -1758,7 +1758,7 @@ These rules are injected by exe-os and override default behavior for multi-agent
1758
1758
  - **Session routing is deterministic.** When working in a coordinator session, ALL employee sessions use that same coordinator-session suffix. NEVER reference, consider, or dispatch to employee sessions from other project sessions. This is not a choice \u2014 it is a hard constraint.
1759
1759
  - **Always use create_task to assign work.** Never use messages, tmux send-keys, or ad-hoc instructions as a substitute for tasks.
1760
1760
  - **Never modify another agent's in-progress task.** Create a new task instead. Modifying active tasks causes race conditions.
1761
- - **Chain of command:** founder -> COO -> managers -> specialists. The COO does not bypass managers for specialist work.
1761
+ - **Chain of command:** founder -> coordinator/executive agent (internal routing slot may be "COO") -> managers -> specialists. The coordinator does not bypass managers for specialist work. Internal role labels are plumbing, not user-facing titles.
1762
1762
  - **Verify dispatch.** After every create_task, confirm the employee received and started the task via tmux capture-pane.
1763
1763
  ${EXE_SECTION_END}`;
1764
1764
  }
@@ -2205,7 +2205,7 @@ These rules are injected by exe-os and override default behavior for multi-agent
2205
2205
  - **Session routing is deterministic.** When working in a coordinator session, ALL employee sessions use that same coordinator-session suffix. NEVER reference, consider, or dispatch to employee sessions from other project sessions. This is not a choice \u2014 it is a hard constraint.
2206
2206
  - **Always use create_task to assign work.** Never use messages, tmux send-keys, or ad-hoc instructions as a substitute for tasks.
2207
2207
  - **Never modify another agent's in-progress task.** Create a new task instead. Modifying active tasks causes race conditions.
2208
- - **Chain of command:** founder -> COO -> managers -> specialists. The COO does not bypass managers for specialist work.
2208
+ - **Chain of command:** founder -> coordinator/executive agent (internal routing slot may be "COO") -> managers -> specialists. The coordinator does not bypass managers for specialist work. Internal role labels are plumbing, not user-facing titles.
2209
2209
  - **Verify dispatch.** After every create_task, confirm the employee received and started the task via tmux capture-pane.
2210
2210
  ${EXE_SECTION_END}`;
2211
2211
  }
@@ -3713,7 +3713,7 @@ These rules are injected by exe-os and override default behavior for multi-agent
3713
3713
  - **Session routing is deterministic.** When working in a coordinator session, ALL employee sessions use that same coordinator-session suffix. NEVER reference, consider, or dispatch to employee sessions from other project sessions. This is not a choice \u2014 it is a hard constraint.
3714
3714
  - **Always use create_task to assign work.** Never use messages, tmux send-keys, or ad-hoc instructions as a substitute for tasks.
3715
3715
  - **Never modify another agent's in-progress task.** Create a new task instead. Modifying active tasks causes race conditions.
3716
- - **Chain of command:** founder -> COO -> managers -> specialists. The COO does not bypass managers for specialist work.
3716
+ - **Chain of command:** founder -> coordinator/executive agent (internal routing slot may be "COO") -> managers -> specialists. The coordinator does not bypass managers for specialist work. Internal role labels are plumbing, not user-facing titles.
3717
3717
  - **Verify dispatch.** After every create_task, confirm the employee received and started the task via tmux capture-pane.
3718
3718
  ${EXE_SECTION_END}`;
3719
3719
  }
@@ -3702,7 +3702,7 @@ These rules are injected by exe-os and override default behavior for multi-agent
3702
3702
  - **Session routing is deterministic.** When working in a coordinator session, ALL employee sessions use that same coordinator-session suffix. NEVER reference, consider, or dispatch to employee sessions from other project sessions. This is not a choice \u2014 it is a hard constraint.
3703
3703
  - **Always use create_task to assign work.** Never use messages, tmux send-keys, or ad-hoc instructions as a substitute for tasks.
3704
3704
  - **Never modify another agent's in-progress task.** Create a new task instead. Modifying active tasks causes race conditions.
3705
- - **Chain of command:** founder -> COO -> managers -> specialists. The COO does not bypass managers for specialist work.
3705
+ - **Chain of command:** founder -> coordinator/executive agent (internal routing slot may be "COO") -> managers -> specialists. The coordinator does not bypass managers for specialist work. Internal role labels are plumbing, not user-facing titles.
3706
3706
  - **Verify dispatch.** After every create_task, confirm the employee received and started the task via tmux capture-pane.
3707
3707
  ${EXE_SECTION_END}`;
3708
3708
  }
@@ -1543,7 +1543,7 @@ These rules are injected by exe-os and override default behavior for multi-agent
1543
1543
  - **Session routing is deterministic.** When working in a coordinator session, ALL employee sessions use that same coordinator-session suffix. NEVER reference, consider, or dispatch to employee sessions from other project sessions. This is not a choice \u2014 it is a hard constraint.
1544
1544
  - **Always use create_task to assign work.** Never use messages, tmux send-keys, or ad-hoc instructions as a substitute for tasks.
1545
1545
  - **Never modify another agent's in-progress task.** Create a new task instead. Modifying active tasks causes race conditions.
1546
- - **Chain of command:** founder -> COO -> managers -> specialists. The COO does not bypass managers for specialist work.
1546
+ - **Chain of command:** founder -> coordinator/executive agent (internal routing slot may be "COO") -> managers -> specialists. The coordinator does not bypass managers for specialist work. Internal role labels are plumbing, not user-facing titles.
1547
1547
  - **Verify dispatch.** After every create_task, confirm the employee received and started the task via tmux capture-pane.
1548
1548
  ${EXE_SECTION_END}`;
1549
1549
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askexenow/exe-os",
3
- "version": "0.9.56",
3
+ "version": "0.9.57",
4
4
  "description": "AI employee operating system — persistent memory, task management, and multi-agent coordination for Claude Code.",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "type": "module",