Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/clear-plans-help.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/safe-calls-recover.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/slow-plans-wait.md

This file was deleted.

17 changes: 17 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @call-e/cli

## 0.4.0

### Minor Changes

- [`64227fe`](https://github.com/CALLE-AI/call-e-integrations/commit/64227fe79fec27d01afc8992ed422e0f75be34ec) - Add hierarchical command help and direct help-command recommendations for
invalid CLI arguments.

- [`d5bf6c1`](https://github.com/CALLE-AI/call-e-integrations/commit/d5bf6c1578f51d35f51d1e4b610a35df88275b8e) - Report staged call workflow failures, retain stable run IDs when status lookup fails, and add private recovery for uncertain call submissions.

### Patch Changes

- [`e966ea7`](https://github.com/CALLE-AI/call-e-integrations/commit/e966ea7c7b63e591e8952452a7bba8eda67e9871) - Give `plan_call` requests a 150-second CLI default timeout while preserving the
15-second default for other MCP requests and explicit `--timeout-seconds`
overrides.
- Updated dependencies [[`e966ea7`](https://github.com/CALLE-AI/call-e-integrations/commit/e966ea7c7b63e591e8952452a7bba8eda67e9871)]:
- @call-e/core@0.3.0

## 0.3.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const DEFAULT_POLL_TIMEOUT_SECONDS = 300;
export const DEFAULT_PLAN_CALL_TIMEOUT_SECONDS = 150;
export const DEFAULT_TELEMETRY_TIMEOUT_SECONDS = 1.5;
export const DEFAULT_CACHE_ROOT = path.join(os.homedir(), ".calle-mcp", "cli");
export const CLI_VERSION = "0.3.9";
export const CLI_VERSION = "0.4.0";

function firstOptionValue(value) {
return Array.isArray(value) ? value[0] : value;
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@call-e/cli",
"version": "0.3.9",
"version": "0.4.0",
"description": "CLI wrapper for brokered MCP login and CALL-E MCP client configuration.",
"type": "module",
"license": "MIT",
Expand Down
8 changes: 8 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @call-e/core

## 0.3.0

### Minor Changes

- [`e966ea7`](https://github.com/CALLE-AI/call-e-integrations/commit/e966ea7c7b63e591e8952452a7bba8eda67e9871) - Give `plan_call` requests a 150-second CLI default timeout while preserving the
15-second default for other MCP requests and explicit `--timeout-seconds`
overrides.

## 0.2.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@call-e/core",
"version": "0.2.5",
"version": "0.3.0",
"description": "Shared CALL-E runtime helpers for brokered auth, local token cache, and MCP HTTP calls.",
"type": "module",
"types": "./lib/index.d.ts",
Expand Down