phonton-cli 0.4.7 → 0.5.0

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.
Files changed (2) hide show
  1. package/README.md +18 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  <img src="assets/readme/phonton-cli-logo.png" width="112" alt="Phonton CLI logo">
3
3
  </p>
4
4
 
5
- <h1 align="center">Phonton CLI · v0.4.7</h1>
5
+ <h1 align="center">Phonton CLI · v0.5.0</h1>
6
6
 
7
7
  <p align="center">
8
8
  <strong>Verified code changes with repo memory.</strong><br>
@@ -12,7 +12,7 @@
12
12
  <p align="center">
13
13
  <a href="https://github.com/phonton-dev/phonton-cli/actions/workflows/ci.yml"><img alt="CI" src="https://github.com/phonton-dev/phonton-cli/actions/workflows/ci.yml/badge.svg"></a>
14
14
  <a href="https://github.com/phonton-dev/phonton-cli/stargazers"><img alt="GitHub stars" src="https://img.shields.io/github/stars/phonton-dev/phonton-cli?style=flat&label=stars"></a>
15
- <img alt="release" src="https://img.shields.io/badge/release-v0.4.7-6c63ff">
15
+ <img alt="release" src="https://img.shields.io/badge/release-v0.5.0-6c63ff">
16
16
  <img alt="license" src="https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue">
17
17
  <img alt="status" src="https://img.shields.io/badge/status-public_alpha-f97316">
18
18
  </p>
@@ -53,6 +53,9 @@ That gives Phonton a different shape from an IDE assistant or a chat-first termi
53
53
 
54
54
  - Interactive Ratatui TUI with goal, task, ask, settings, git, and flight-log surfaces.
55
55
  - Saved workspace sessions: use `phonton -r` or `phonton --resume` to reopen the last saved TUI conversation for the current repo.
56
+ - Prompt bar paste artifacts: long or multiline pasted text collapses into a compact chip while the full content stays attached to the submitted goal.
57
+ - Windows clipboard import in the TUI with `Ctrl+V`, including content selected from Windows clipboard history (`Win+V`) when the terminal does not emit bracketed paste directly.
58
+ - Sandboxed command runs from the prompt bar with `/run <cmd>` or `!<cmd>`, plus command status and output previews in the TUI and Flight Log.
56
59
  - `phonton doctor` setup diagnostics for config, provider key, store, trust, git, cargo, and Nexus config.
57
60
  - `phonton plan` preview for task DAGs before edits happen.
58
61
  - `phonton review` surfaces for verified diff review payloads, approvals, rejections, and rollback.
@@ -63,6 +66,7 @@ That gives Phonton a different shape from an IDE assistant or a chat-first termi
63
66
  - `phonton mcp` commands for listing configured servers and lazily approving tool discovery or tool calls.
64
67
  - BYOK provider adapters for Anthropic, OpenAI, OpenRouter, Gemini, Cloudflare Workers AI, AgentRouter, DeepSeek, xAI/Grok, Groq, Together, Ollama, and custom OpenAI-compatible endpoints. `phonton doctor --provider` verifies your configured provider by checking model discovery and a tiny completion call through the same adapter used for runs.
65
68
  - Local store, memory, planner, worker, diff, sandbox, verification, and orchestration crates.
69
+ - Prompt-section token manifests in the Flight Log so system, goal, memory, attachment, MCP, and retry-context costs are inspectable.
66
70
  - Semantic indexing behind the CLI stack for repo-aware workflows.
67
71
 
68
72
  ## What Is Still Early
@@ -103,7 +107,7 @@ Windows PowerShell:
103
107
  Direct Cargo install:
104
108
 
105
109
  ```bash
106
- cargo install --git https://github.com/phonton-dev/phonton-cli --tag v0.4.7 phonton-cli --locked --force
110
+ cargo install --git https://github.com/phonton-dev/phonton-cli --tag v0.5.0 phonton-cli --locked --force
107
111
  ```
108
112
 
109
113
  Check the install:
@@ -119,7 +123,7 @@ Phonton uses GitHub branches and releases as install channels:
119
123
 
120
124
  | Channel | Install | Use when |
121
125
  |---|---|---|
122
- | Stable | `cargo install --git https://github.com/phonton-dev/phonton-cli --tag v0.4.7 phonton-cli --locked --force` | You want the best validated public alpha |
126
+ | Stable | `cargo install --git https://github.com/phonton-dev/phonton-cli --tag v0.5.0 phonton-cli --locked --force` | You want the best validated public alpha |
123
127
  | Dev | `cargo install --git https://github.com/phonton-dev/phonton-cli --branch dev phonton-cli --locked --force` | You want next-release integration changes |
124
128
  | Nightly | `cargo install --git https://github.com/phonton-dev/phonton-cli --branch nightly phonton-cli --locked --force` | You want daily snapshots and can tolerate breakage |
125
129
  | Main | `cargo install --git https://github.com/phonton-dev/phonton-cli --branch main phonton-cli --locked --force` | You want the current release branch tip |
@@ -213,6 +217,16 @@ phonton config show Dump resolved config as TOML
213
217
  phonton version Print version
214
218
  ```
215
219
 
220
+ Inside the TUI prompt bar:
221
+
222
+ ```text
223
+ /run <cmd> Run a sandboxed command
224
+ !<cmd> Shorthand for a sandboxed command
225
+ Ctrl+V Paste from the Windows clipboard
226
+ Ctrl+U / Ctrl+K Clear before / after cursor
227
+ Tab Complete slash commands
228
+ ```
229
+
216
230
  Plan preview:
217
231
 
218
232
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phonton-cli",
3
- "version": "0.4.7",
3
+ "version": "0.5.0",
4
4
  "description": "Local-first agentic development terminal with context packs, source handles, and verification gates.",
5
5
  "license": "MIT OR Apache-2.0",
6
6
  "homepage": "https://github.com/phonton-dev/phonton-cli#readme",