@fiale-plus/pi-rogue 0.2.4 → 0.3.0
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 +17 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,13 +34,29 @@ npm install
|
|
|
34
34
|
- Set `PI_CONTEXT_BROKER_ENABLED=false` before starting Pi to disable the `/context` command surface and prompt-load rewriting.
|
|
35
35
|
- Optional durable broker storage can be enabled with `PI_CONTEXT_BROKER_DURABLE=true` or `PI_CONTEXT_BROKER_STORE_DIR=/path/to/store`; it defaults to SQLite/FTS and supports `PI_CONTEXT_BROKER_BACKEND=jsonl` for the legacy JSONL/blob backend.
|
|
36
36
|
- `@fiale-plus/pi-rogue` is the only published surface for the logic.
|
|
37
|
-
- Internal helper packages (`@fiale-plus/pi-rogue-guardrails`, `@fiale-plus/pi-rogue-brain`, `@fiale-plus/pi-rogue-repo-arch`) are maintained separately in the lab section and not published.
|
|
37
|
+
- Internal helper packages (`@fiale-plus/pi-rogue-guardrails`, `@fiale-plus/pi-rogue-brain`, `@fiale-plus/pi-rogue-repo-arch`) are maintained separately in the lab section and are not published.
|
|
38
38
|
|
|
39
39
|
## Command surface
|
|
40
40
|
|
|
41
41
|
- Default: `/advisor`, `/goal`, `/loop`, `/autoresearch`, `/autoresearch-lab`, `/router` plus status/config/command paths (all provided via the bundle).
|
|
42
42
|
- Context broker: enabled by default; `PI_CONTEXT_BROKER_ENABLED=false` disables `/context status`, `/context brief`, `/context lookup <handle|text>`, `/context pin <handle>`, `/context export <handle>`, and `/context prune` with autocomplete.
|
|
43
43
|
|
|
44
|
+
### Router (offline)
|
|
45
|
+
|
|
46
|
+
The `/router` surface remains offline and repo-local unless you explicitly enable routing behavior:
|
|
47
|
+
|
|
48
|
+
- `/router status|help|on|off|mode|profile|models|configure|cycle`
|
|
49
|
+
- `/router mode observe` (default): recommendations only, no policy mutation
|
|
50
|
+
- `/router mode auto_model`: explicit future-model switching only
|
|
51
|
+
- `/router profile <name>` and `print mismatch_only|all|off`
|
|
52
|
+
|
|
53
|
+
For local artifact generation and sharpening:
|
|
54
|
+
|
|
55
|
+
- `npm run router:sharpen -- ...`
|
|
56
|
+
- `npm run router:sharpen:auto -- ...`
|
|
57
|
+
|
|
58
|
+
See `packages/router/README.md` for full usage, safety policy, schema, and autosharpen location.
|
|
59
|
+
|
|
44
60
|
## Status
|
|
45
61
|
|
|
46
62
|
- **Published:** yes (single artefact)
|