phonton-cli 0.16.0 → 0.16.1
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/README.md +12 -5
- 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.16.
|
|
5
|
+
<h1 align="center">Phonton CLI · v0.16.1</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.16.
|
|
15
|
+
<img alt="release" src="https://img.shields.io/badge/release-v0.16.1-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>
|
|
@@ -69,6 +69,8 @@ It walks through the evidence trail a real run should expose: GoalContract, plan
|
|
|
69
69
|
## What Works Today
|
|
70
70
|
|
|
71
71
|
- Interactive Ratatui TUI with goal, task, ask, settings, git, and flight-log surfaces.
|
|
72
|
+
- v0.16.1 adds `phonton extensions install <source>` for installing audited `.phonton` packs from GitHub or local paths, plus built-in open-source MCP catalog ids such as `context7`, `github`, `chrome-devtools`, `playwright`, `firecrawl`, `supabase`, `mongodb`, and `figma`.
|
|
73
|
+
- v0.16.1 adds `phonton extensions catalog`, `phonton extensions new <path> [skill|steering|mcp-server|profile]`, and `phonton extensions validate` so extension discovery, scaffolding, and validation feel closer to Gemini CLI while preserving Phonton's local trust and approval model.
|
|
72
74
|
- v0.16.0 adds typed `@...` context mentions for files, directories, symbols, MCP servers, and MCP tools, with resolved/missing/approval-gated rows visible in `/context` and the Context focus surface.
|
|
73
75
|
- v0.16.0 separates local prompt token estimates from provider-reported billing usage in `phonton why-tokens --by-source`; local-only runs now render as `no provider call`, and prompt manifests carry resolved `@...` mention rows plus attribution-only token totals instead of double-counting attachments or MCP/tool context.
|
|
74
76
|
- v0.16.0 tightens extension and MCP diagnostics so `phonton extensions doctor` warns on networked or mutating MCP trust even when a server has not listed explicit permissions.
|
|
@@ -168,7 +170,7 @@ Windows PowerShell:
|
|
|
168
170
|
Direct Cargo install:
|
|
169
171
|
|
|
170
172
|
```bash
|
|
171
|
-
cargo install --git https://github.com/phonton-dev/phonton-cli --tag v0.16.
|
|
173
|
+
cargo install --git https://github.com/phonton-dev/phonton-cli --tag v0.16.1 phonton-cli --locked --force
|
|
172
174
|
```
|
|
173
175
|
|
|
174
176
|
Check the install:
|
|
@@ -184,7 +186,7 @@ Phonton uses GitHub branches and releases as install channels:
|
|
|
184
186
|
|
|
185
187
|
| Channel | Install | Use when |
|
|
186
188
|
|---|---|---|
|
|
187
|
-
| Stable | `cargo install --git https://github.com/phonton-dev/phonton-cli --tag v0.16.
|
|
189
|
+
| Stable | `cargo install --git https://github.com/phonton-dev/phonton-cli --tag v0.16.1 phonton-cli --locked --force` | You want the best validated public alpha |
|
|
188
190
|
| Dev | `cargo install --git https://github.com/phonton-dev/phonton-cli --branch dev phonton-cli --locked --force` | You want next-release integration changes |
|
|
189
191
|
| 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 |
|
|
190
192
|
| Main | `cargo install --git https://github.com/phonton-dev/phonton-cli --branch main phonton-cli --locked --force` | You want the current release branch tip |
|
|
@@ -275,7 +277,7 @@ phonton review Show verified diff review payloads
|
|
|
275
277
|
phonton diff Print verified unified diffs from review-ready tasks
|
|
276
278
|
phonton run latest Run the latest receipt-suggested command
|
|
277
279
|
phonton memory list Inspect local decision memory
|
|
278
|
-
phonton extensions
|
|
280
|
+
phonton extensions Install and inspect skills, steering, MCP servers, and profiles
|
|
279
281
|
phonton mcp list Show configured MCP servers without starting them
|
|
280
282
|
phonton config path Print the resolved config file path
|
|
281
283
|
phonton config show Dump resolved config as TOML
|
|
@@ -343,8 +345,13 @@ phonton memory delete <id>
|
|
|
343
345
|
Extension visibility:
|
|
344
346
|
|
|
345
347
|
```bash
|
|
348
|
+
phonton extensions catalog
|
|
349
|
+
phonton extensions install context7
|
|
350
|
+
phonton extensions install https://github.com/phonton-dev/phonton-review-gate-extension
|
|
351
|
+
phonton extensions new ./my-extension skill
|
|
346
352
|
phonton extensions list --json
|
|
347
353
|
phonton extensions doctor --json
|
|
354
|
+
phonton extensions validate --json
|
|
348
355
|
phonton skills list --json
|
|
349
356
|
phonton steering list --json
|
|
350
357
|
phonton mcp list --json
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "phonton-cli",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.1",
|
|
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",
|