@geoqiao/pi-ask 1.2.2 → 1.2.3
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 +6 -0
- package/README.md +11 -12
- package/package.json +6 -63
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
# @geoqiao/pi-ask
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@geoqiao/pi-ask)
|
|
6
|
-
[](https://github.com/geoqiao/pi-tools/actions/workflows/ci.yml)
|
|
7
|
+
[](https://github.com/geoqiao/pi-tools/commits/main)
|
|
8
|
+
[](https://github.com/geoqiao/pi-tools/stargazers)
|
|
9
9
|
|
|
10
10
|
> [!IMPORTANT]
|
|
11
11
|
> This is an independently maintained continuation of [`eko24ive/pi-ask`](https://github.com/eko24ive/pi-ask), with portable Pi RPC mode support while preserving the rich TUI experience.
|
|
@@ -20,7 +20,10 @@ High-quality video: [demo.mp4](https://github.com/user-attachments/assets/a8503c
|
|
|
20
20
|
|
|
21
21
|
## Upstream and contributions
|
|
22
22
|
|
|
23
|
-
This project preserves the upstream Git history, MIT license, and author attribution. New
|
|
23
|
+
This project preserves the upstream Git history, MIT license, and author attribution. New
|
|
24
|
+
development and releases are maintained independently in the
|
|
25
|
+
[`geoqiao/pi-tools`](https://github.com/geoqiao/pi-tools/tree/main/packages/pi-ask) monorepo. Issues
|
|
26
|
+
and contributions are welcome there.
|
|
24
27
|
|
|
25
28
|
## Install
|
|
26
29
|
|
|
@@ -28,12 +31,6 @@ This project preserves the upstream Git history, MIT license, and author attribu
|
|
|
28
31
|
pi install npm:@geoqiao/pi-ask
|
|
29
32
|
```
|
|
30
33
|
|
|
31
|
-
You can also install from git:
|
|
32
|
-
|
|
33
|
-
```bash
|
|
34
|
-
pi install git:github.com/geoqiao/pi-ask
|
|
35
|
-
```
|
|
36
|
-
|
|
37
34
|
Or try it without installing (load once for the current run):
|
|
38
35
|
|
|
39
36
|
```bash
|
|
@@ -275,7 +272,7 @@ pnpm test
|
|
|
275
272
|
|
|
276
273
|
### Commit workflow
|
|
277
274
|
|
|
278
|
-
This
|
|
275
|
+
This monorepo uses `lefthook`, Commitizen, conventional commitlint, and Changesets.
|
|
279
276
|
|
|
280
277
|
If you want local hooks, install them once after `pnpm install`:
|
|
281
278
|
|
|
@@ -283,12 +280,14 @@ If you want local hooks, install them once after `pnpm install`:
|
|
|
283
280
|
pnpm exec lefthook install
|
|
284
281
|
```
|
|
285
282
|
|
|
286
|
-
|
|
283
|
+
From the repository root, the recommended flow is:
|
|
287
284
|
|
|
288
285
|
```bash
|
|
289
286
|
pnpm commit
|
|
290
287
|
```
|
|
291
288
|
|
|
289
|
+
User-facing changes should also include a Changeset created with `pnpm changeset`.
|
|
290
|
+
|
|
292
291
|
## Project layout
|
|
293
292
|
|
|
294
293
|
- `src/` — TypeScript extension implementation
|
package/package.json
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geoqiao/pi-ask",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "Pi package that adds an interactive ask_user clarification tool.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/geoqiao/pi-
|
|
9
|
+
"url": "git+https://github.com/geoqiao/pi-tools.git",
|
|
10
|
+
"directory": "packages/pi-ask"
|
|
10
11
|
},
|
|
11
|
-
"homepage": "https://github.com/geoqiao/pi-ask#readme",
|
|
12
|
+
"homepage": "https://github.com/geoqiao/pi-tools/tree/main/packages/pi-ask#readme",
|
|
12
13
|
"bugs": {
|
|
13
|
-
"url": "https://github.com/geoqiao/pi-
|
|
14
|
+
"url": "https://github.com/geoqiao/pi-tools/issues"
|
|
14
15
|
},
|
|
15
16
|
"keywords": [
|
|
16
17
|
"pi-package",
|
|
@@ -40,9 +41,7 @@
|
|
|
40
41
|
"check": "ultracite check",
|
|
41
42
|
"check:ci": "biome ci .",
|
|
42
43
|
"fix": "ultracite fix",
|
|
43
|
-
"
|
|
44
|
-
"commitlint": "commitlint",
|
|
45
|
-
"release": "semantic-release"
|
|
44
|
+
"pack:check": "pnpm pack --dry-run"
|
|
46
45
|
},
|
|
47
46
|
"pi": {
|
|
48
47
|
"extensions": [
|
|
@@ -56,34 +55,6 @@
|
|
|
56
55
|
"access": "public",
|
|
57
56
|
"provenance": true
|
|
58
57
|
},
|
|
59
|
-
"release": {
|
|
60
|
-
"repositoryUrl": "https://github.com/geoqiao/pi-ask.git",
|
|
61
|
-
"branches": [
|
|
62
|
-
"main"
|
|
63
|
-
],
|
|
64
|
-
"plugins": [
|
|
65
|
-
"@semantic-release/commit-analyzer",
|
|
66
|
-
"@semantic-release/release-notes-generator",
|
|
67
|
-
[
|
|
68
|
-
"@semantic-release/changelog",
|
|
69
|
-
{
|
|
70
|
-
"changelogFile": "CHANGELOG.md"
|
|
71
|
-
}
|
|
72
|
-
],
|
|
73
|
-
"@semantic-release/npm",
|
|
74
|
-
"@semantic-release/github",
|
|
75
|
-
[
|
|
76
|
-
"@semantic-release/git",
|
|
77
|
-
{
|
|
78
|
-
"assets": [
|
|
79
|
-
"package.json",
|
|
80
|
-
"CHANGELOG.md"
|
|
81
|
-
],
|
|
82
|
-
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
83
|
-
}
|
|
84
|
-
]
|
|
85
|
-
]
|
|
86
|
-
},
|
|
87
58
|
"peerDependencies": {
|
|
88
59
|
"@earendil-works/pi-coding-agent": "*",
|
|
89
60
|
"@earendil-works/pi-tui": "*",
|
|
@@ -92,40 +63,12 @@
|
|
|
92
63
|
},
|
|
93
64
|
"devDependencies": {
|
|
94
65
|
"@biomejs/biome": "2.4.12",
|
|
95
|
-
"@commitlint/cli": "^19.8.1",
|
|
96
|
-
"@commitlint/config-conventional": "^19.8.1",
|
|
97
66
|
"@earendil-works/pi-ai": "0.79.9",
|
|
98
67
|
"@earendil-works/pi-coding-agent": "0.79.9",
|
|
99
68
|
"@earendil-works/pi-tui": "0.79.9",
|
|
100
|
-
"@semantic-release/changelog": "^6.0.3",
|
|
101
|
-
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
102
|
-
"@semantic-release/git": "^10.0.1",
|
|
103
|
-
"@semantic-release/github": "^12.0.6",
|
|
104
|
-
"@semantic-release/npm": "^13.1.5",
|
|
105
|
-
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
106
69
|
"typebox": "1.1.38",
|
|
107
70
|
"@types/node": "25.6.0",
|
|
108
|
-
"commitizen": "^4.3.1",
|
|
109
|
-
"cz-conventional-changelog": "^3.3.0",
|
|
110
|
-
"lefthook": "^2.1.6",
|
|
111
|
-
"semantic-release": "^25.0.3",
|
|
112
71
|
"typescript": "6.0.2",
|
|
113
72
|
"ultracite": "7.6.0"
|
|
114
|
-
},
|
|
115
|
-
"config": {
|
|
116
|
-
"commitizen": {
|
|
117
|
-
"path": "./node_modules/cz-conventional-changelog"
|
|
118
|
-
}
|
|
119
|
-
},
|
|
120
|
-
"pnpm": {
|
|
121
|
-
"overrides": {
|
|
122
|
-
"@earendil-works/pi-agent-core": "0.79.9",
|
|
123
|
-
"@earendil-works/pi-ai": "0.79.9",
|
|
124
|
-
"@earendil-works/pi-tui": "0.79.9",
|
|
125
|
-
"@earendil-works/pi-coding-agent": "0.79.9"
|
|
126
|
-
},
|
|
127
|
-
"ignoredBuiltDependencies": [
|
|
128
|
-
"lefthook"
|
|
129
|
-
]
|
|
130
73
|
}
|
|
131
74
|
}
|