codeam-cli 2.15.2 → 2.15.6

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,17 @@ 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.15.5] — 2026-05-20
8
+
9
+ ### Added
10
+
11
+ - **shared:** Add FileChangedEvent + PendingReviewHunkEvent wire types
12
+ - **cli:** Emit file-change + review-hunk events during paired sessions
13
+
14
+ ### CI
15
+
16
+ - **release:** Make CLI npm publish idempotent
17
+
7
18
  ## [2.15.1] — 2026-05-17
8
19
 
9
20
  ### Fixed
package/README.md CHANGED
@@ -5,10 +5,10 @@
5
5
  [![license](https://img.shields.io/npm/l/codeam-cli.svg?color=34d399&style=flat-square)](https://github.com/edgar-durand/codeagent-mobile-clients/blob/main/LICENSE)
6
6
  [![node](https://img.shields.io/node/v/codeam-cli.svg?color=34d399&style=flat-square)](https://nodejs.org/)
7
7
 
8
- > **Remote control AI coding agents from your phone.**
9
- > Send prompts, stream responses, and approve commands in real-time — from the subway, the couch, or anywhere away from your desk.
8
+ > **The workflow-continuity bridge for AI coding agents.**
9
+ > Wrap Claude Code or Codex once, then supervise, approve, and redirect from any device async.
10
10
 
11
- `codeam-cli` is the companion CLI for [**CodeAgent Mobile**](https://codeagent-mobile.com). It wraps AI coding agents inside a pseudo-terminal, relays your mobile prompts to the agent, and streams the output back to your phone in real-time.
11
+ `codeam-cli` is the terminal bridge for [**CodeAgent Mobile**](https://codeagent-mobile.com). It wraps AI coding agents inside a pseudo-terminal and streams the entire session output, diffs, interactive selectors to your phone or web dashboard so you can stay in the loop while the agent runs for hours instead of seconds.
12
12
 
13
13
  Currently supports **[Claude Code](https://claude.ai/code)** (Anthropic) and **[OpenAI Codex](https://github.com/openai/codex)** — start either via `codeam` (Claude Code) or `codeam codex` (OpenAI Codex).
14
14
 
@@ -16,9 +16,11 @@ Currently supports **[Claude Code](https://claude.ai/code)** (Anthropic) and **[
16
16
 
17
17
  ## Why does this exist?
18
18
 
19
- Because sometimes your best ideas happen away from the keyboard. Maybe you're on a walk, on the train, in a meeting, or just want to keep a long-running task going while you step away. `codeam-cli` lets your AI agent keep working — and lets **you** keep shipping without needing to be at your machine.
19
+ AI agents went async. They write, refactor, test, and ship code on their own for hours, not seconds. Most CLI workflows still pin you to one screen while that happens.
20
20
 
21
- It works exactly like Claude Code (same terminal, same project, same files), but every prompt and every response is mirrored on your phone. You can even approve interactive selectors and confirmations from mobile.
21
+ `codeam-cli` is the supervision layer on top: run the agent locally exactly like you would today, and a paired phone / browser becomes a remote checkpoint. Approve diffs while you're away from the desk. Redirect a long-running refactor over coffee. Step into a meeting without losing the session.
22
+
23
+ Same terminal, same project, same files — just no longer chained to the desk.
22
24
 
23
25
  ---
24
26