ax-agents 0.0.1-alpha.10 → 0.0.1-alpha.11

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.
Files changed (2) hide show
  1. package/ax.js +4 -1
  2. package/package.json +1 -1
package/ax.js CHANGED
@@ -2703,8 +2703,11 @@ function startArchangel(config, parentSession = null) {
2703
2703
  env,
2704
2704
  });
2705
2705
  child.unref();
2706
+ const watchingLabel = parentSession
2707
+ ? parentSession.session || parentSession.uuid?.slice(0, 8)
2708
+ : null;
2706
2709
  console.log(
2707
- `Summoning: ${config.name} (pid ${child.pid})${parentSession ? ` [parent: ${parentSession.session}]` : ""}`,
2710
+ `Summoning: ${config.name} (pid ${child.pid})${watchingLabel ? ` [watching: ${watchingLabel}]` : ""}`,
2708
2711
  );
2709
2712
  }
2710
2713
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ax-agents",
3
- "version": "0.0.1-alpha.10",
3
+ "version": "0.0.1-alpha.11",
4
4
  "description": "A CLI for orchestrating AI coding agents via tmux",
5
5
  "bin": {
6
6
  "ax": "ax.js",