codeam-cli 2.15.1 → 2.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.
- package/CHANGELOG.md +7 -0
- package/README.md +7 -5
- package/dist/index.js +736 -126
- package/package.json +14 -13
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@ 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.1] — 2026-05-17
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **jetbrains-plugin:** Import terminalopsservice in controllertoolwindowfactory
|
|
12
|
+
- **cli:** Lazy-load node-pty + vendor darwin prebuilds (cli was crashing on mac)
|
|
13
|
+
|
|
7
14
|
## [2.14.0] — 2026-05-17
|
|
8
15
|
|
|
9
16
|
### Added
|
package/README.md
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
[](https://github.com/edgar-durand/codeagent-mobile-clients/blob/main/LICENSE)
|
|
6
6
|
[](https://nodejs.org/)
|
|
7
7
|
|
|
8
|
-
> **
|
|
9
|
-
>
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|