@hk_net/pi-advisor 0.1.4 → 0.1.6
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 +13 -0
- package/README.md +12 -4
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.6 - 2026-07-21
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Raise the Pi peer dependency minimum to 0.81.1 and verify compatibility with that release.
|
|
8
|
+
- Update the repository lockfile to Pi's packaged `brace-expansion` 5.0.7 dependency.
|
|
9
|
+
|
|
10
|
+
## 0.1.5 - 2026-07-20
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Correct and clarify the current Pi compatibility and autocomplete documentation.
|
|
15
|
+
|
|
3
16
|
## 0.1.4 - 2026-07-20
|
|
4
17
|
|
|
5
18
|
### Changed
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# pi-advisor
|
|
2
2
|
|
|
3
|
-
A [pi](https://www.npmjs.com/package/@earendil-works/pi-coding-agent) extension that offers a
|
|
3
|
+
A [pi](https://www.npmjs.com/package/@earendil-works/pi-coding-agent) extension for pi `>=0.81.1` that offers a
|
|
4
4
|
parameterless `advisor` tool — inspired by Claude Code's advisor, but expanded with additional
|
|
5
5
|
nudges and a manual review procedure. The regular model calls `advisor` to get a second opinion
|
|
6
6
|
from an explicitly configured **stronger reviewer model** that sees the *entire* conversation transcript. Beyond the
|
|
@@ -100,7 +100,7 @@ are selectable.
|
|
|
100
100
|
| `/advisor status` | Show the resolved configuration |
|
|
101
101
|
| `/advise [show\|pipe\|steer]` | Run a one-off review now; default is `pipe` when idle and `steer` while the agent is running |
|
|
102
102
|
|
|
103
|
-
Autocomplete completes `/adviso...` to `/advisor` without Pi's trailing-space insertion
|
|
103
|
+
Autocomplete completes `/adviso...` to `/advisor` without Pi's trailing-space insertion. A completed reviewer model opens that model's supported thinking-level picker on the next Tab. `/advisor on-done` and `/advisor when-stuck` open their value pickers directly. `/advise` keeps Pi's standard completion behavior.
|
|
104
104
|
|
|
105
105
|
### `/advise` modes
|
|
106
106
|
|
|
@@ -170,5 +170,13 @@ tool's `promptGuidelines`. Two opt-in deterministic triggers, configurable per p
|
|
|
170
170
|
also layers a `ctx.ui.addAutocompleteProvider()` on `session_start` so `/advisor ...` and
|
|
171
171
|
`/advise ...` completions replace the whole argument segment and suppress irrelevant path
|
|
172
172
|
completion while typing command arguments (pi ≥ 0.79.1).
|
|
173
|
-
-
|
|
174
|
-
|
|
173
|
+
- Use `complete()` from `@earendil-works/pi-ai/compat` for Pi's compatibility streaming helper.
|
|
174
|
+
|
|
175
|
+
## Issues and feedback
|
|
176
|
+
|
|
177
|
+
Found a bug or have a feature request? Please report it on
|
|
178
|
+
[GitHub Issues](https://github.com/hknet/pi-extensions/issues).
|
|
179
|
+
|
|
180
|
+
For security vulnerabilities, please use
|
|
181
|
+
[GitHub's private vulnerability reporting](https://github.com/hknet/pi-extensions/security/advisories/new)
|
|
182
|
+
instead of opening a public issue.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hk_net/pi-advisor",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Pi advisor extension: consult a configured reviewer model on the full conversation transcript",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"CHANGELOG.md"
|
|
28
28
|
],
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@earendil-works/pi-ai": ">=0.
|
|
31
|
-
"@earendil-works/pi-coding-agent": ">=0.
|
|
32
|
-
"@earendil-works/pi-tui": ">=0.
|
|
30
|
+
"@earendil-works/pi-ai": ">=0.81.1",
|
|
31
|
+
"@earendil-works/pi-coding-agent": ">=0.81.1",
|
|
32
|
+
"@earendil-works/pi-tui": ">=0.81.1"
|
|
33
33
|
},
|
|
34
34
|
"pi": {
|
|
35
35
|
"extensions": [
|