@astrosheep/keiyaku 4.5.3 → 4.5.5
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.
|
@@ -47,6 +47,7 @@ export function renderInstallHelp() {
|
|
|
47
47
|
const INSTALL_TIMEOUT_MS = 5 * 60 * 1000;
|
|
48
48
|
const ASSET_ROOT = resolve(dirname(fileURLToPath(import.meta.url)), "../../../integrations/marketplace");
|
|
49
49
|
const PLUGIN_ROOT = resolve(ASSET_ROOT, "plugins/keiyaku");
|
|
50
|
+
const PI_PACKAGE_SOURCE = "npm:@astrosheep/keiyaku";
|
|
50
51
|
function recipes(harness) {
|
|
51
52
|
switch (harness) {
|
|
52
53
|
case "codex":
|
|
@@ -63,7 +64,7 @@ function recipes(harness) {
|
|
|
63
64
|
case "opencode":
|
|
64
65
|
return [["opencode", "plugin", PLUGIN_ROOT, "--global", "--force"]];
|
|
65
66
|
case "pi":
|
|
66
|
-
return [["pi", "install",
|
|
67
|
+
return [["pi", "install", PI_PACKAGE_SOURCE]];
|
|
67
68
|
}
|
|
68
69
|
}
|
|
69
70
|
function diagnostic(argv, outcome) {
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrosheep/keiyaku",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.5",
|
|
4
4
|
"files": [
|
|
5
5
|
"build"
|
|
6
6
|
],
|
|
@@ -76,7 +76,17 @@
|
|
|
76
76
|
"doc": "docs",
|
|
77
77
|
"test": "tests"
|
|
78
78
|
},
|
|
79
|
-
"keywords": [
|
|
79
|
+
"keywords": [
|
|
80
|
+
"pi-package"
|
|
81
|
+
],
|
|
82
|
+
"pi": {
|
|
83
|
+
"extensions": [
|
|
84
|
+
"./build/integrations/pi/keiyaku.ts"
|
|
85
|
+
],
|
|
86
|
+
"skills": [
|
|
87
|
+
"./build/integrations/marketplace/plugins/keiyaku/skills"
|
|
88
|
+
]
|
|
89
|
+
},
|
|
80
90
|
"author": "",
|
|
81
91
|
"license": "ISC",
|
|
82
92
|
"publishConfig": {
|