fullcourtdefense-cli 1.15.4 → 1.15.5

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.
@@ -437,6 +437,7 @@ async function runDaemon(args, config) {
437
437
  shieldKey: creds.shieldKey,
438
438
  developerName: identity.developerName,
439
439
  machineName: identity.hostname,
440
+ machineId: identity.machineId,
440
441
  force: true,
441
442
  });
442
443
  if (bundle.suspended && !suspended) {
@@ -39,6 +39,8 @@ export interface FetchBundleInput {
39
39
  shieldKey?: string;
40
40
  developerName?: string;
41
41
  machineName?: string;
42
+ /** Exact fleet machine ID — makes the server's pending-action lookup deterministic. */
43
+ machineId?: string;
42
44
  /** Override cache TTL (ms). */
43
45
  ttlMs?: number;
44
46
  /** Force a network refresh regardless of cache freshness. */
@@ -83,6 +83,8 @@ async function getRuntimeBundle(input) {
83
83
  params.set('developerName', input.developerName);
84
84
  if (input.machineName)
85
85
  params.set('machineName', input.machineName);
86
+ if (input.machineId)
87
+ params.set('machineId', input.machineId);
86
88
  const resp = await fetch(`${input.apiUrl}/api/cli/bundle?${params.toString()}`, { method: 'GET', headers, signal: AbortSignal.timeout(REFRESH_TIMEOUT_MS) });
87
89
  // 304 Not Modified — cache is still valid; refresh its timestamp.
88
90
  if (resp.status === 304 && cached) {
package/dist/version.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "1.15.4"
2
+ "version": "1.15.5"
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fullcourtdefense-cli",
3
- "version": "1.15.4",
3
+ "version": "1.15.5",
4
4
  "description": "Full Court Defense CLI — security scanning for AI agents from your terminal",
5
5
  "main": "dist/index.js",
6
6
  "bin": {