pi-pwsh-native 0.1.0 → 0.1.1
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 +4 -1
- package/package.json +4 -2
- package/public/img.png +0 -0
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# pi-pwsh-native
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/pi-pwsh-native)
|
|
4
|
+
[](https://github.com/takomine/pi-pwsh-native/actions/workflows/ci.yml)
|
|
5
|
+
|
|
3
6
|
Native PowerShell 7 tooling for the [Pi coding agent](https://pi.dev/) on Windows.
|
|
4
7
|
|
|
5
8
|
`pi-pwsh-native` replaces Pi's model-callable `bash` tool with a tool named `pwsh` and routes interactive `!`/`!!` commands through the same verified PowerShell executable. It does not translate Bash syntax and does not silently fall back to another shell.
|
|
@@ -33,7 +36,7 @@ The initial implementation is developed and tested against:
|
|
|
33
36
|
Install the pinned npm release:
|
|
34
37
|
|
|
35
38
|
```powershell
|
|
36
|
-
pi install npm:pi-pwsh-native@0.1.
|
|
39
|
+
pi install npm:pi-pwsh-native@0.1.1
|
|
37
40
|
```
|
|
38
41
|
|
|
39
42
|
Alternatively, install the public GitHub package directly:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-pwsh-native",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Native PowerShell 7 tooling for the Pi coding agent on Windows",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Tako (https://github.com/takomine)",
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
],
|
|
32
32
|
"files": [
|
|
33
33
|
"src",
|
|
34
|
+
"public",
|
|
34
35
|
"README.md",
|
|
35
36
|
"LICENSE",
|
|
36
37
|
"THIRD_PARTY_NOTICES.md",
|
|
@@ -39,7 +40,8 @@
|
|
|
39
40
|
"pi": {
|
|
40
41
|
"extensions": [
|
|
41
42
|
"./src/index.ts"
|
|
42
|
-
]
|
|
43
|
+
],
|
|
44
|
+
"image": "https://raw.githubusercontent.com/takomine/pi-pwsh-native/main/public/img.png"
|
|
43
45
|
},
|
|
44
46
|
"scripts": {
|
|
45
47
|
"typecheck": "node ./node_modules/typescript/bin/tsc --noEmit",
|
package/public/img.png
ADDED
|
Binary file
|