pi-bro 0.9.2 → 0.9.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 +6 -0
- package/README.md +1 -1
- package/bro.ts +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to pi-bro are documented here.
|
|
4
4
|
|
|
5
|
+
## [0.9.3] - 2026-09-06
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Corrected the built-in help's brief-mode description, which still claimed a fixed word target removed in 0.9.1, and quoted the spaced-path example in the README. The 0.9.2 package on npm was packed before these doc fixes landed.
|
|
10
|
+
|
|
5
11
|
## [0.9.2] - 2026-09-06
|
|
6
12
|
|
|
7
13
|
### Changed
|
package/README.md
CHANGED
|
@@ -379,7 +379,7 @@ to simplify the same captured text again.
|
|
|
379
379
|
Use a path relative to Pi's current workspace, or an absolute path inside it:
|
|
380
380
|
|
|
381
381
|
```text
|
|
382
|
-
/bro file docs/incident review.pdf
|
|
382
|
+
/bro file "docs/incident review.pdf"
|
|
383
383
|
```
|
|
384
384
|
|
|
385
385
|
Paths may contain spaces; matching single or double quotes are also accepted.
|
package/bro.ts
CHANGED
|
@@ -902,9 +902,9 @@ Bro explains a dense assistant reply, pasted text, local document, or public web
|
|
|
902
902
|
- \`/bro url <url>\` — explain one public webpage
|
|
903
903
|
- \`/bro open\` — reopen the latest explanation
|
|
904
904
|
|
|
905
|
-
Any other input is the source itself: a lone URL explains that webpage, an existing workspace file with a supported extension explains that file, and anything else is explained as pasted text.
|
|
905
|
+
Any other input is the source itself: a lone URL explains that webpage, an existing workspace file with a supported extension explains that file, and anything else is explained as pasted text. Quoted paths with spaces are routed too when the file exists.
|
|
906
906
|
|
|
907
|
-
Press **R** to simplify the captured source again. Run a new \`/bro text\`, \`/bro file\`, or \`/bro url\` command to capture a new source.
|
|
907
|
+
Press **R** to simplify the captured source again. Run a new \`/bro text\`, \`/bro file\`, or \`/bro url\` command — or give \`/bro\` the input directly — to capture a new source.
|
|
908
908
|
|
|
909
909
|
## Check and configure
|
|
910
910
|
|
|
@@ -922,7 +922,7 @@ Saved in \`${SETTINGS_FILE}\`. Use the commands above or edit the file directly.
|
|
|
922
922
|
|
|
923
923
|
## Explanation modes
|
|
924
924
|
|
|
925
|
-
- brief — main point and next action,
|
|
925
|
+
- brief — the main point and next action, with no fixed word target
|
|
926
926
|
- balanced — default; material detail with clearer structure
|
|
927
927
|
- faithful — closest to the source, with no fixed word limit
|
|
928
928
|
|
package/package.json
CHANGED