pi-interview 0.4.0 → 0.4.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/README.md +4 -0
- package/bin/install.js +1 -0
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
<p>
|
|
2
|
+
<img src="https://raw.githubusercontent.com/nicobailon/pi-interview-tool/main/banner.png" alt="pi-interview" width="1100">
|
|
3
|
+
</p>
|
|
4
|
+
|
|
1
5
|
# Interview Tool
|
|
2
6
|
|
|
3
7
|
A custom tool for pi-agent that opens a web-based form to gather user responses to clarification questions.
|
package/bin/install.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-interview",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "Interactive interview form extension for pi coding agent",
|
|
5
5
|
"author": "Nico Bailon",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"keywords": [
|
|
12
12
|
"pi",
|
|
13
13
|
"pi-coding-agent",
|
|
14
|
+
"pi-package",
|
|
14
15
|
"interview",
|
|
15
16
|
"form",
|
|
16
17
|
"extension",
|
|
@@ -27,5 +28,10 @@
|
|
|
27
28
|
"server.ts",
|
|
28
29
|
"settings.ts",
|
|
29
30
|
"README.md"
|
|
30
|
-
]
|
|
31
|
+
],
|
|
32
|
+
"pi": {
|
|
33
|
+
"extensions": [
|
|
34
|
+
"./index.ts"
|
|
35
|
+
]
|
|
36
|
+
}
|
|
31
37
|
}
|