@patze/code-cli 0.55.2 → 0.55.3

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,12 +4,18 @@ All notable changes to `@patze/code-cli` are documented here.
4
4
 
5
5
  Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
+ ## [0.55.3] - 2026-05-31
8
+
9
+ ### Changed
10
+
11
+ - **README** — removed UI mockup / “What you see” section (npm page stays install + commands only).
12
+
7
13
  ## [0.55.2] - 2026-05-31
8
14
 
9
15
  ### Docs
10
16
 
11
- - **README** — Codex-style rewrite: install/start/auth only, accurate 0.55.x UI sample (clean composer), compact command list; moved maintainer tables to `docs/`.
12
- - **`docs/install-beta.md`** + **`beta-tester-checklist.md`** — synced to 0.55.x; `--pair` install path; composer UX note.
17
+ - **README** — Codex-style rewrite: install/start/auth/commands only; moved maintainer tables to `docs/`.
18
+ - **`docs/install-beta.md`** + **`beta-tester-checklist.md`** — synced to 0.55.x; `--pair` install path.
13
19
 
14
20
  ## [0.55.1] - 2026-05-31
15
21
 
package/README.md CHANGED
@@ -11,7 +11,7 @@ npm install -g @patze/code-cli@beta
11
11
  patze --version
12
12
  ```
13
13
 
14
- Pinned release: `@patze/code-cli@0.55.2`
14
+ Pinned release: `@patze/code-cli@0.55.3`
15
15
 
16
16
  Requires **Node.js 20+**.
17
17
 
@@ -43,29 +43,6 @@ Env vars (optional): `PATZE_CODE_API`, `PATZE_CODE_TOKEN`, `PATZE_CODE_USER_ID`.
43
43
 
44
44
  Optional: `CURSOR_API_KEY` adds live models to `/model` (bundled catalog always available).
45
45
 
46
- ## What you see
47
-
48
- Compact header + empty composer (same idea as [Codex CLI](https://github.com/openai/codex)). Status lives in the header and transcript — not inside the input box.
49
-
50
- ```text
51
- >_ Patze Code (v0.55.2)
52
- ╭────────────────────────────────────────╮
53
- │ model Patze /model to change │
54
- │ directory ~/your-project │
55
- ╰────────────────────────────────────────╯
56
- ⚠ Sign in to run agent tasks — /login or patze login
57
-
58
- Describe a task, or type / for commands.
59
- /help · /model · /reset · Ctrl+C cancels an active run
60
-
61
- ╭────────────────────────────────────────╮
62
- │ > _ │
63
- ╰────────────────────────────────────────╯
64
- Esc exit · Ctrl+C quit · Ctrl+U clear · / commands · ctrl+t thought · ctrl+d diff · /status
65
- ```
66
-
67
- Type `/` for the command palette (filter as you type, ↑↓ or j/k, Enter to run).
68
-
69
46
  ## Commands
70
47
 
71
48
  **Shell (`patze`)** — `/help`, `/status`, `/login`, `/logout`, `/model`, `/local`, `/cloud`, `/reset`, `/clear`, `/runs`, `/inspect`, `/goal`, `/plan`, `/diff`, `/permissions`, `/tools`, `/approve`, `/apply`, `/verify`, `/reject`, `/exit`
package/VERSION CHANGED
@@ -1 +1 @@
1
- 0.55.2
1
+ 0.55.3
@@ -20,7 +20,7 @@ patze --version
20
20
  Pinned example:
21
21
 
22
22
  ```bash
23
- npm install -g @patze/code-cli@0.55.2
23
+ npm install -g @patze/code-cli@0.55.3
24
24
  ```
25
25
 
26
26
  Use `@beta`, not `latest` — `latest` is an older stable tag until 1.0.
@@ -37,7 +37,7 @@ Manual:
37
37
  ```bash
38
38
  cd packages/patze-code-cli
39
39
  npm run build && npm pack
40
- npm install -g ./patze-code-cli-0.55.2.tgz
40
+ npm install -g ./patze-code-cli-0.55.3.tgz
41
41
  ```
42
42
 
43
43
  Dev link:
@@ -83,8 +83,6 @@ patze status # exit 1 without auth is OK on first run
83
83
  patze # interactive shell
84
84
  ```
85
85
 
86
- First launch shows a **compact header** (model + directory) and an **empty composer** (`>` only). Auth hints appear in the header/transcript, not inside the input box.
87
-
88
86
  ## Uninstall
89
87
 
90
88
  [`uninstall-reset.md`](uninstall-reset.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patze/code-cli",
3
- "version": "0.55.2",
3
+ "version": "0.55.3",
4
4
  "description": "Patze Code — local terminal coding agent client for PatzeAgents",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",