my-pi 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/README.md +7 -2
- package/dist/{api-BtlxiHyw.js → api-CSQ80ee3.js} +3481 -3402
- package/dist/api-CSQ80ee3.js.map +1 -0
- package/dist/api.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +6 -6
- package/src/extensions/chain.ts +45 -6
- package/src/extensions/filter-output.test.ts +105 -207
- package/src/extensions/filter-output.ts +137 -13
- package/src/extensions/handoff.ts +7 -4
- package/src/extensions/lsp.ts +1 -1
- package/src/extensions/prompt-presets.ts +9 -8
- package/dist/api-BtlxiHyw.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# my-pi
|
|
2
2
|
|
|
3
|
+
[](https://viteplus.dev)
|
|
4
|
+
[](https://vitest.dev)
|
|
5
|
+
|
|
3
6
|
Composable [pi](https://pi.dev) coding agent for humans and agents.
|
|
4
7
|
|
|
5
8
|
Built on the
|
|
@@ -450,8 +453,10 @@ CLI layering is supported too:
|
|
|
450
453
|
- `--system-prompt "You are terse and technical."`
|
|
451
454
|
- `--append-system-prompt "Prefer one short paragraph."`
|
|
452
455
|
|
|
453
|
-
Interactive
|
|
454
|
-
|
|
456
|
+
Interactive sessions default to `terse` unless a project has a saved
|
|
457
|
+
selection. `/preset` selections are restored on later sessions for the
|
|
458
|
+
same project via `~/.pi/agent/prompt-preset-state.json`;
|
|
459
|
+
`/preset clear` persists no active preset for that project.
|
|
455
460
|
|
|
456
461
|
This repo also includes an example `.pi/presets.json` with sample base
|
|
457
462
|
presets and layers.
|