@agentproto/adapter-pi 0.3.13 → 0.3.15
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/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -20336,7 +20336,10 @@ var pi = defineAgentCli({
|
|
|
20336
20336
|
{ method: "curl", url: "https://pi.dev/install.sh" }
|
|
20337
20337
|
],
|
|
20338
20338
|
version_check: {
|
|
20339
|
-
|
|
20339
|
+
// PRESENCE probe — local binary check, not a registry query. Covers BOTH
|
|
20340
|
+
// install methods: the npm -g package and the curl installer both put a
|
|
20341
|
+
// `pi` executable on PATH, and it runs `--version` fully offline.
|
|
20342
|
+
cmd: "pi --version",
|
|
20340
20343
|
parse: "(\\d+\\.\\d+\\.\\d+)",
|
|
20341
20344
|
range: ">=0.80.0",
|
|
20342
20345
|
timeout_ms: 15e3
|