ax-agents 0.0.1-alpha.1 → 0.0.1-alpha.2

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 +1 -1
  2. package/package.json +1 -1
package/ax.js CHANGED
@@ -1540,7 +1540,7 @@ class Agent {
1540
1540
  }
1541
1541
 
1542
1542
  const cwd = process.cwd();
1543
- const childPattern = new RegExp(`^${this.name}-[0-9a-f-]{36}$`, "i");
1543
+ const childPattern = new RegExp(`^${this.name}-(partner-)?[0-9a-f-]{36}$`, "i");
1544
1544
 
1545
1545
  // If inside tmux, look for existing agent session in same cwd
1546
1546
  const current = tmuxCurrentSession();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ax-agents",
3
- "version": "0.0.1-alpha.1",
3
+ "version": "0.0.1-alpha.2",
4
4
  "description": "A CLI for orchestrating AI coding agents via tmux",
5
5
  "bin": {
6
6
  "ax": "ax.js",