codeam-cli 2.61.92 → 2.61.93

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/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ All notable changes to `codeam-cli` are documented here.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [2.61.92] — 2026-08-08
8
+
9
+ ### Added
10
+
11
+ - **cli:** Agent Packs — sequential multi-role pipelines with git-validated handoffs (#601)
12
+
7
13
  ## [2.61.91] — 2026-08-08
8
14
 
9
15
  ### Fixed
package/dist/index.js CHANGED
@@ -8017,7 +8017,7 @@ function readAnonId() {
8017
8017
  }
8018
8018
  function superProperties() {
8019
8019
  return {
8020
- cliVersion: true ? "2.61.92" : "0.0.0-dev",
8020
+ cliVersion: true ? "2.61.93" : "0.0.0-dev",
8021
8021
  nodeVersion: process.version,
8022
8022
  platform: process.platform,
8023
8023
  arch: process.arch,
@@ -8198,7 +8198,7 @@ var os4 = __toESM(require("os"));
8198
8198
  // package.json
8199
8199
  var package_default = {
8200
8200
  name: "codeam-cli",
8201
- version: "2.61.92",
8201
+ version: "2.61.93",
8202
8202
  description: "Workflow-continuity bridge for AI coding agents. Wrap Claude Code or Codex in a PTY and supervise, approve, and redirect the session from any device \u2014 async. The terminal companion for CodeAgent Mobile.",
8203
8203
  type: "commonjs",
8204
8204
  main: "dist/index.js",
@@ -9503,7 +9503,7 @@ var CommandRelayService = class _CommandRelayService {
9503
9503
  // fresh + clear the "CLI update available" banner after a self-update
9504
9504
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
9505
9505
  // pair/reconnect). Older backends ignore the extra field.
9506
- ..."2.61.92" ? { ideVersion: "2.61.92" } : {}
9506
+ ..."2.61.93" ? { ideVersion: "2.61.93" } : {}
9507
9507
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
9508
9508
  }
9509
9509
  /**
@@ -20676,7 +20676,7 @@ async function autoUpgradeBeforeCriticalCommand() {
20676
20676
  if (process.env.NODE_ENV === "test") return;
20677
20677
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
20678
20678
  if (process.env.CI) return;
20679
- const current2 = true ? "2.61.92" : null;
20679
+ const current2 = true ? "2.61.93" : null;
20680
20680
  if (!current2) return;
20681
20681
  const cache = readCache();
20682
20682
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -20693,7 +20693,7 @@ function checkForUpdates() {
20693
20693
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
20694
20694
  if (process.env.CI) return;
20695
20695
  if (!process.stdout.isTTY) return;
20696
- const current2 = true ? "2.61.92" : null;
20696
+ const current2 = true ? "2.61.93" : null;
20697
20697
  if (!current2) return;
20698
20698
  const cache = readCache();
20699
20699
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -20713,7 +20713,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
20713
20713
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
20714
20714
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
20715
20715
  function currentCliVersion() {
20716
- return true ? "2.61.92" : null;
20716
+ return true ? "2.61.93" : null;
20717
20717
  }
20718
20718
  function runCmd(cmd, args2, timeoutMs) {
20719
20719
  return new Promise((resolve9) => {
@@ -35502,7 +35502,7 @@ function ensureLedgerIgnored(cwd) {
35502
35502
 
35503
35503
  // src/packs/events.ts
35504
35504
  async function postPackState(opts, state, fetchImpl = fetch) {
35505
- const url2 = `${resolveApiBaseUrl()}/api/packs/events`;
35505
+ const url2 = `${resolveApiBaseUrl()}/api/agent-packs/events`;
35506
35506
  const body = JSON.stringify({ sessionId: opts.sessionId, pluginId: opts.pluginId, state });
35507
35507
  try {
35508
35508
  const makeHeaders = (token) => ({
@@ -42470,7 +42470,7 @@ function checkChokidar() {
42470
42470
  }
42471
42471
  async function doctor(args2 = []) {
42472
42472
  const json = args2.includes("--json");
42473
- const cliVersion = true ? "2.61.92" : "0.0.0-dev";
42473
+ const cliVersion = true ? "2.61.93" : "0.0.0-dev";
42474
42474
  const apiBase2 = resolveApiBaseUrl();
42475
42475
  const diagnosticId = (0, import_node_crypto13.randomUUID)();
42476
42476
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -42861,7 +42861,7 @@ async function mcpRun(args2) {
42861
42861
  // src/commands/version.ts
42862
42862
  var import_picocolors15 = __toESM(require("picocolors"));
42863
42863
  function version2() {
42864
- const v = true ? "2.61.92" : "unknown";
42864
+ const v = true ? "2.61.93" : "unknown";
42865
42865
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
42866
42866
  }
42867
42867
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.61.92",
3
+ "version": "2.61.93",
4
4
  "description": "Workflow-continuity bridge for AI coding agents. Wrap Claude Code or Codex in a PTY and supervise, approve, and redirect the session from any device — async. The terminal companion for CodeAgent Mobile.",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",