bullswarm 0.3.0 → 0.3.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bullswarm",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Route work across coding-agent CLI subscriptions — paced by live quota meters, verified by content, never trusting exit codes.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -99,7 +99,7 @@ async function cmdRun(opts) {
99
99
 
100
100
  const route = pickPool(lane, eligiblePools, {
101
101
  callerEligible: opts['no-caller'] !== true,
102
- callerName: state.config.callerName ?? 'claude',
102
+ callerName: state.config.callerName ?? 'claude-code',
103
103
  now,
104
104
  });
105
105
  if (gated.length && route.pick) {
package/src/lib/route.js CHANGED
@@ -84,7 +84,7 @@ export function isExhausted(pool) {
84
84
  export function pickPool(lane, pools, opts = {}) {
85
85
  const {
86
86
  callerEligible = true,
87
- callerName = 'claude',
87
+ callerName = 'claude-code',
88
88
  now = Date.now(),
89
89
  } = opts;
90
90
 
package/src/lib/state.js CHANGED
@@ -20,7 +20,7 @@ export const DEFAULT_STATE = {
20
20
  decisionLog: [], // {ts, lane, picked, keepOnClaude, ok, why, wallSec}
21
21
  config: {
22
22
  depthLimit: 2,
23
- callerName: 'claude',
23
+ callerName: 'claude-code',
24
24
  },
25
25
  };
26
26