@fastino-ai/pioneer-cli 0.2.10 → 0.2.11

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 CHANGED
@@ -124,6 +124,8 @@ pioneer agent resume 4f2a...
124
124
 
125
125
  When you start any of these commands, the CLI opens a conversational prompt and keeps accepting follow-up messages in the same session.
126
126
 
127
+ Interactive **standard** mode uses the same WebSocket agent as the Pioneer app’s sidebar: Felix tools plus **local** CLI tools (**bash**, **read_file**, **write_file**, **edit_file**, **list_directory**, **search_files**, and **`browse_url`** — HTTP GET for public pages with HTML stripped; no JavaScript). Full **Browser Use** (driving your open Pioneer UI with click/type/navigate against the live DOM) remains **web-only**; the CLI surfaces a clear hint if those tools appear.
128
+
127
129
  ## End-to-End Example
128
130
 
129
131
  This example shows the complete workflow from running jobs to using agent support.
@@ -236,6 +238,32 @@ bun run dev # Hot reload
236
238
  bun run typecheck # Type checking
237
239
  ```
238
240
 
241
+ ### Release
242
+
243
+ Before publishing, bump `package.json` to a version that is not already on npm:
244
+
245
+ ```bash
246
+ npm version patch --no-git-tag-version
247
+ ```
248
+
249
+ Then verify the npm package tarball locally:
250
+
251
+ ```bash
252
+ bun run release:check-version
253
+ bun run release:pack
254
+ ```
255
+
256
+ `release:pack` writes the verified package to `release-artifacts/*.tgz` and checks that the tarball contains only:
257
+
258
+ ```text
259
+ README.md
260
+ dist/index.js
261
+ dist/yoga.wasm
262
+ package.json
263
+ ```
264
+
265
+ To publish, run the **Publish Pioneer CLI npm Package** GitHub Actions workflow from `main`. Leave `dry_run=true` to build and upload the tarball as a GitHub Actions artifact without publishing. Set `dry_run=false` to publish the verified tarball to npm and attach the same `.tgz` to a `vX.Y.Z` GitHub Release.
266
+
239
267
  ## Tech Stack
240
268
 
241
269
  - **Runtime**: [Bun](https://bun.sh)