@fiale-plus/pi-rogue-advisor 0.1.7 → 0.1.9
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 +3 -4
- package/assets/binary-gate-model.json +23262 -23262
- package/package.json +1 -1
- package/skills/advisor/SKILL.md +3 -4
- package/src/completions.test.ts +2 -5
- package/src/completions.ts +2 -8
- package/src/extension.test.ts +85 -2
- package/src/extension.ts +254 -117
- package/src/index.ts +1 -0
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## What this package is
|
|
4
4
|
|
|
5
|
-
Strategic advisor for Pi sessions with low-overhead preflight/post-review routing, model auto-detection, session memory, and
|
|
5
|
+
Strategic advisor for Pi sessions with low-overhead preflight/post-review routing, model auto-detection, session memory, and orchestration-managed mid-session check-ins.
|
|
6
6
|
|
|
7
7
|
- SOTA-first model fallback: `gpt-5.5`/`claude-opus-4-6`/`claude-sonnet-4-6` where available.
|
|
8
8
|
- Keeps command-level behavior simple and explicit.
|
|
@@ -28,7 +28,6 @@ npm install --workspace packages/advisor
|
|
|
28
28
|
| `/advisor off` | Disable advisor |
|
|
29
29
|
| `/advisor mode auto\|manual\|off` | Change routing behavior |
|
|
30
30
|
| `/advisor review light\|strict\|off` | Change review strictness |
|
|
31
|
-
| `/advisor checkins on\|off\|<minutes>` | Enable/disable low-cost mid-hour check-ins |
|
|
32
31
|
| `/advisor config` | Show current config |
|
|
33
32
|
| `/advisor model <provider>/<model>` | Set explicit model override |
|
|
34
33
|
| `/advisor <question>` | Get one-shot advisory response |
|
|
@@ -37,11 +36,11 @@ npm install --workspace packages/advisor
|
|
|
37
36
|
|
|
38
37
|
- `mode`: `auto`
|
|
39
38
|
- `review`: `light`
|
|
40
|
-
- `checkins`: `off` (orchestration turns them on
|
|
39
|
+
- `checkins`: `off` (orchestration turns them on when a loop is active)
|
|
41
40
|
- `checkinIntervalMinutes`: `30`
|
|
42
41
|
- `model`: not set (auto-detected)
|
|
43
42
|
|
|
44
|
-
Check-ins gate on session activity, are bounded,
|
|
43
|
+
Check-ins gate on session activity, are bounded, avoid overlapping calls, and use higher/advanced advisor models first with regular model fallback enabled by default. They are lifecycle-managed by orchestration: enabling `/loop` enables them, and stopping that loop disables them.
|
|
45
44
|
|
|
46
45
|
## Stability guarantees
|
|
47
46
|
|