@agimon-ai/doompi-user-feedback 0.0.1-alpha.45 → 0.0.1-alpha.47
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 +9 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Ask structured questions in interactive Pi sessions, including sessions using au
|
|
|
4
4
|
|
|
5
5
|
Part of the [DoomPi distribution](https://www.npmjs.com/package/@agimon-ai/doompi).
|
|
6
6
|
|
|
7
|
-
The `ask_user_question` tool presents concrete options and waits for
|
|
7
|
+
The `ask_user_question` tool presents concrete options and waits for a choice or custom-text answer.
|
|
8
8
|
|
|
9
9
|
> **Alpha:** tool and Voice-handoff contracts may change between releases.
|
|
10
10
|
|
|
@@ -15,13 +15,17 @@ The `ask_user_question` tool presents concrete options and waits for the user to
|
|
|
15
15
|
|
|
16
16
|
## Install
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
while activating this package once per canonical resolved path:
|
|
18
|
+
Define a layer in `.doom/modes.yaml`, then include it in a major mode:
|
|
20
19
|
|
|
21
20
|
```yaml
|
|
22
21
|
layers:
|
|
23
22
|
feedback:
|
|
24
23
|
packages: ['@agimon-ai/doompi-user-feedback']
|
|
24
|
+
|
|
25
|
+
majorMode:
|
|
26
|
+
minimal:
|
|
27
|
+
description: Interactive questions without the full default composition.
|
|
28
|
+
layers: [feedback]
|
|
25
29
|
```
|
|
26
30
|
|
|
27
31
|
For standalone Pi:
|
|
@@ -101,6 +105,8 @@ does not require a manual registration call.
|
|
|
101
105
|
|
|
102
106
|
## Development
|
|
103
107
|
|
|
108
|
+
Run from this package directory in the workspace:
|
|
109
|
+
|
|
104
110
|
```bash
|
|
105
111
|
pnpm build
|
|
106
112
|
pnpm typecheck
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agimon-ai/doompi-user-feedback",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.47",
|
|
4
4
|
"description": "Structured user questions with interactive and autonomous Voice handoff for Pi agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -58,10 +58,10 @@
|
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"@deepseek-ai/cordis": "4.0.1",
|
|
60
60
|
"typebox": "1.3.19",
|
|
61
|
-
"@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.
|
|
62
|
-
"@agimon-ai/doompi-ui": "0.0.1-alpha.
|
|
63
|
-
"@agimon-ai/doompi-web-
|
|
64
|
-
"@agimon-ai/doompi-web-
|
|
61
|
+
"@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.57",
|
|
62
|
+
"@agimon-ai/doompi-ui": "0.0.1-alpha.58",
|
|
63
|
+
"@agimon-ai/doompi-web-contracts": "0.0.1-alpha.20",
|
|
64
|
+
"@agimon-ai/doompi-web-components": "0.0.1-alpha.17"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@earendil-works/pi-coding-agent": "0.85.0",
|