patchcord 0.3.2 → 0.3.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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "patchcord",
|
|
3
3
|
"description": "Cross-machine agent messaging with auto-inbox checking. Agents automatically respond to messages from other agents without human intervention.",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.3",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "ppravdin"
|
|
7
7
|
},
|
package/package.json
CHANGED
package/scripts/check-inbox.sh
CHANGED
|
@@ -32,11 +32,7 @@ if [ ! -f "$UPDATE_FLAG" ]; then
|
|
|
32
32
|
if [ -n "$installed_ver" ]; then
|
|
33
33
|
latest=$(npm view patchcord version --json 2>/dev/null | tr -d '"' || true)
|
|
34
34
|
if [ -n "$latest" ] && [ "$latest" != "$installed_ver" ]; then
|
|
35
|
-
|
|
36
|
-
"decision": "block",
|
|
37
|
-
"reason": ("Patchcord plugin update available: v" + $ver + ". Run: npx patchcord@latest install")
|
|
38
|
-
}'
|
|
39
|
-
exit 0
|
|
35
|
+
echo "⬆ Patchcord plugin update: v${installed_ver} → v${latest}. Run: npx patchcord@latest install" >&2
|
|
40
36
|
fi
|
|
41
37
|
fi
|
|
42
38
|
fi
|