@dreki-gg/pi-questionnaire 0.2.0 → 0.2.2
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
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @dreki-gg/pi-questionnaire
|
|
2
2
|
|
|
3
|
+
## 0.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`0be7b68`](https://github.com/dreki-gg/pi-extensions/commit/0be7b6877e9874b46c756b58c99d599db623ef11) Thanks [@jalbarrang](https://github.com/jalbarrang)! - Migrate TypeBox usage and session replacement flows for Pi 0.69 compatibility.
|
|
8
|
+
|
|
9
|
+
- switch extension imports from `@sinclair/typebox` to `typebox`
|
|
10
|
+
- update package peer dependencies to require `typebox`
|
|
11
|
+
- move subagent `/run-agent` fork-at follow-up work into `withSession` so post-fork operations use the replacement session safely
|
|
12
|
+
- add command argument completions for `/run-agent`, `/delegate-agents`, `/preset`, `/mode`, and `/plan`
|
|
13
|
+
- align local development dependencies with Pi 0.69 for typechecking and compatibility checks
|
|
14
|
+
|
|
15
|
+
## 0.2.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [`8121a65`](https://github.com/dreki-gg/pi-extensions/commit/8121a65d312e9e9688762c713976c83dd3ac9d99) Thanks [@jalbarrang](https://github.com/jalbarrang)! - Add prompt guideline to prefer questionnaire tool over plain text when questions have clear, enumerable options.
|
|
20
|
+
|
|
3
21
|
## 0.2.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { StringEnum } from '@mariozechner/pi-ai';
|
|
2
|
-
import { Type, type Static } from '
|
|
2
|
+
import { Type, type Static } from 'typebox';
|
|
3
3
|
|
|
4
4
|
export const SelectionModeSchema = StringEnum(['single', 'multiple'] as const, {
|
|
5
5
|
description: 'Selection mode: single choice or multiple choices.',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dreki-gg/pi-questionnaire",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Tool-first questionnaire flow for pi with shared tabbed TUI and custom rendering",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package"
|
|
@@ -34,6 +34,6 @@
|
|
|
34
34
|
"@mariozechner/pi-ai": "*",
|
|
35
35
|
"@mariozechner/pi-coding-agent": "*",
|
|
36
36
|
"@mariozechner/pi-tui": "*",
|
|
37
|
-
"
|
|
37
|
+
"typebox": "*"
|
|
38
38
|
}
|
|
39
39
|
}
|