phonton-cli 0.20.1 → 0.21.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.
Files changed (2) hide show
  1. package/README.md +7 -5
  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="128" alt="Phonton CLI logo">
3
3
  </p>
4
4
 
5
- <h1 align="center">Phonton CLI - v0.20.1</h1>
5
+ <h1 align="center">Phonton CLI - v0.21.1</h1>
6
6
 
7
7
  <p align="center">
8
8
  <strong>A local-first ADE for verified, accountable code changes.</strong><br>
@@ -13,7 +13,7 @@
13
13
  <p align="center">
14
14
  <a href="https://github.com/phonton-dev/phonton-cli/actions/workflows/ci.yml"><img alt="CI Status" src="https://github.com/phonton-dev/phonton-cli/actions/workflows/ci.yml/badge.svg"></a>
15
15
  <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&color=ff69b4"></a>
16
- <img alt="release" src="https://img.shields.io/badge/release-v0.20.1-6c63ff">
16
+ <img alt="release" src="https://img.shields.io/badge/release-v0.21.1-6c63ff">
17
17
  <img alt="license" src="https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue">
18
18
  </p>
19
19
 
@@ -22,12 +22,14 @@
22
22
  ## Quick Start
23
23
 
24
24
  ```powershell
25
- npm install -g phonton-cli@0.20.1
26
- phonton doctor
27
- phonton config edit # add your provider API key
25
+ npm install -g phonton-cli
26
+ phonton doctor --provider
27
+ phonton config edit # add your provider API key if doctor asked for one
28
28
  phonton goal "fix the failing npm test in this repo"
29
29
  ```
30
30
 
31
+ Smallest verified loop (this repo): `fixtures/add-one`. See that folder's README.
32
+
31
33
  Headless benchmark-style runs:
32
34
 
33
35
  ```powershell
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phonton-cli",
3
- "version": "0.20.1",
3
+ "version": "0.21.1",
4
4
  "description": "Local-first ADE CLI for planned, verified, reviewable code changes.",
5
5
  "license": "MIT OR Apache-2.0",
6
6
  "homepage": "https://github.com/phonton-dev/phonton-cli#readme",