You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(hooks): nudge CLI upgrade when a newer stable release is cached
SessionStart now compares `composio version` against the CLI's own
24h-throttled release cache (~/.composio/update-check.json) and appends
"A newer Composio CLI (X.Y.Z) is available — run `composio upgrade`."
to the cli_status line. Local file read only — never the network
(PRDE-1144; `composio version --check` from ComposioHQ/composio#3944
was ruled out for the hook because it can do a synchronous fetch on a
stale cache, which could blow the 8s hook budget).
Only a plain X.Y.Z install strictly older than a plain X.Y.Z
latestVersion nudges; prereleases on either side, a missing or
malformed cache, or an unparseable version all degrade to silence.
Tests pin HOME so the cache read stays hermetic.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: plugins/composio/.codex-plugin/plugin.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "composio",
3
-
"version": "0.2.0",
3
+
"version": "0.2.1",
4
4
"description": "Your agent decides what to do — Composio handles the rest. Use just-in-time tool calls across 1,000+ apps with managed auth through the hosted app or local CLI.",
0 commit comments