@hk_net/pi-advisor 0.1.5 → 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 +7 -0
- package/README.md +10 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
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
|
+
|
|
3
10
|
## 0.1.5 - 2026-07-20
|
|
4
11
|
|
|
5
12
|
### 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 for pi `>=0.
|
|
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
|
|
@@ -171,3 +171,12 @@ tool's `promptGuidelines`. Two opt-in deterministic triggers, configurable per p
|
|
|
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
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": [
|