diff --git a/.changeset/agentaos-cli-mcp-parity.md b/.changeset/agentaos-cli-mcp-parity.md deleted file mode 100644 index e162fa9..0000000 --- a/.changeset/agentaos-cli-mcp-parity.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agentaos": minor ---- - -The CLI and the MCP server are one operations catalogue: every command is a tool (19), with merchant-readable output on both. New tools: status, audit, verify, products, invoices; `registerAgentaTools` (alias `registerPayTools`). diff --git a/.changeset/pay-golive-account-review.md b/.changeset/pay-golive-account-review.md deleted file mode 100644 index 93a78eb..0000000 --- a/.changeset/pay-golive-account-review.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@agentaos/pay": minor ---- - -Add `goLive.get()` and `accountReview.get/submit/resubmit/requestAudit()` so the CLI and the MCP tools share one client for onboarding. -Add the `orgId` client option: a session-token user who belongs to several organizations names the one to act for, and it goes on every request as `?orgId=`. -Export the plan-change types (`PlanChangePreview`, `ChangePlanParams`, `ChangePlanResult`, `PlanChangeDirection`, `PendingPlanChange`) that `subscriptions.previewPlanChange/changePlan` already return. diff --git a/packages/chains/CHANGELOG.md b/packages/chains/CHANGELOG.md index 3214ffc..0c299e8 100644 --- a/packages/chains/CHANGELOG.md +++ b/packages/chains/CHANGELOG.md @@ -1,5 +1,12 @@ # @agentaos/chains +## 3.1.0 + +### Patch Changes + +- Updated dependencies []: + - @agentaos/core@3.1.0 + ## 3.0.0 ### Patch Changes diff --git a/packages/chains/package.json b/packages/chains/package.json index 046128e..ff18e91 100644 --- a/packages/chains/package.json +++ b/packages/chains/package.json @@ -1,6 +1,6 @@ { "name": "@agentaos/chains", - "version": "3.0.0", + "version": "3.1.0", "description": "Ethereum chain adapter for AgentaOS threshold wallet", "license": "Apache-2.0", "author": "AgentaOS ", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 972d315..951ec04 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,7 @@ # @agentaos/core +## 3.1.0 + ## 3.0.0 ## 2.0.0 diff --git a/packages/core/package.json b/packages/core/package.json index 97b4e3a..a2a155d 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@agentaos/core", - "version": "3.0.0", + "version": "3.1.0", "description": "Type definitions and interfaces for AgentaOS threshold wallet", "license": "Apache-2.0", "author": "AgentaOS ", diff --git a/packages/mpc-wasm/CHANGELOG.md b/packages/mpc-wasm/CHANGELOG.md index 34ac95b..820e843 100644 --- a/packages/mpc-wasm/CHANGELOG.md +++ b/packages/mpc-wasm/CHANGELOG.md @@ -1,5 +1,7 @@ # @agentaos/crypto +## 3.1.0 + ## 3.0.0 ## 2.0.0 diff --git a/packages/mpc-wasm/package.json b/packages/mpc-wasm/package.json index 8b0d946..a579685 100644 --- a/packages/mpc-wasm/package.json +++ b/packages/mpc-wasm/package.json @@ -1,6 +1,6 @@ { "name": "@agentaos/crypto", - "version": "3.0.0", + "version": "3.1.0", "description": "CGGMP24 threshold ECDSA WASM module for AgentaOS", "license": "Apache-2.0", "author": "AgentaOS ", diff --git a/packages/pay/CHANGELOG.md b/packages/pay/CHANGELOG.md index d188126..dbaaf73 100644 --- a/packages/pay/CHANGELOG.md +++ b/packages/pay/CHANGELOG.md @@ -1,5 +1,13 @@ # @agentaos/pay +## 2.3.0 + +### Minor Changes + +- [#45](https://github.com/AgentaOS/agentaos/pull/45) [`967b34f`](https://github.com/AgentaOS/agentaos/commit/967b34f2a90e20e096ececf2379c980aa562eb8f) Thanks [@PancheI](https://github.com/PancheI)! - Add `goLive.get()` and `accountReview.get/submit/resubmit/requestAudit()` so the CLI and the MCP tools share one client for onboarding. + Add the `orgId` client option: a session-token user who belongs to several organizations names the one to act for, and it goes on every request as `?orgId=`. + Export the plan-change types (`PlanChangePreview`, `ChangePlanParams`, `ChangePlanResult`, `PlanChangeDirection`, `PendingPlanChange`) that `subscriptions.previewPlanChange/changePlan` already return. + ## 2.2.0 ### Minor Changes diff --git a/packages/pay/package.json b/packages/pay/package.json index 8d707f4..14dec96 100644 --- a/packages/pay/package.json +++ b/packages/pay/package.json @@ -1,6 +1,6 @@ { "name": "@agentaos/pay", - "version": "2.2.0", + "version": "2.3.0", "description": "AgentaOS Payment SDK — accept regulated stablecoin payments programmatically", "license": "Apache-2.0", "author": "AgentaOS ", diff --git a/packages/schemes/CHANGELOG.md b/packages/schemes/CHANGELOG.md index 8e630b7..9fc4a40 100644 --- a/packages/schemes/CHANGELOG.md +++ b/packages/schemes/CHANGELOG.md @@ -1,5 +1,13 @@ # @agentaos/engine +## 3.1.0 + +### Patch Changes + +- Updated dependencies []: + - @agentaos/core@3.1.0 + - @agentaos/crypto@3.1.0 + ## 3.0.0 ### Patch Changes diff --git a/packages/schemes/package.json b/packages/schemes/package.json index 476f9b1..beeb612 100644 --- a/packages/schemes/package.json +++ b/packages/schemes/package.json @@ -1,6 +1,6 @@ { "name": "@agentaos/engine", - "version": "3.0.0", + "version": "3.1.0", "description": "CGGMP24 threshold ECDSA signing scheme (WASM)", "license": "Apache-2.0", "author": "AgentaOS ", diff --git a/packages/signer/CHANGELOG.md b/packages/signer/CHANGELOG.md index da29282..c9673f7 100644 --- a/packages/signer/CHANGELOG.md +++ b/packages/signer/CHANGELOG.md @@ -1,5 +1,13 @@ # @agentaos/sdk +## 3.1.0 + +### Patch Changes + +- Updated dependencies []: + - @agentaos/core@3.1.0 + - @agentaos/engine@3.1.0 + ## 3.0.0 ### Patch Changes diff --git a/packages/signer/package.json b/packages/signer/package.json index f656424..e2d2b9b 100644 --- a/packages/signer/package.json +++ b/packages/signer/package.json @@ -1,6 +1,6 @@ { "name": "@agentaos/sdk", - "version": "3.0.0", + "version": "3.1.0", "description": "SDK for threshold signing — the key never exists", "license": "Apache-2.0", "author": "AgentaOS ", diff --git a/packages/wallet/CHANGELOG.md b/packages/wallet/CHANGELOG.md index 5fe4218..9218d4c 100644 --- a/packages/wallet/CHANGELOG.md +++ b/packages/wallet/CHANGELOG.md @@ -1,5 +1,16 @@ # agentaos +## 3.1.0 + +### Minor Changes + +- [#45](https://github.com/AgentaOS/agentaos/pull/45) [`967b34f`](https://github.com/AgentaOS/agentaos/commit/967b34f2a90e20e096ececf2379c980aa562eb8f) Thanks [@PancheI](https://github.com/PancheI)! - The CLI and the MCP server are one operations catalogue: every command is a tool (19), with merchant-readable output on both. New tools: status, audit, verify, products, invoices; `registerAgentaTools` (alias `registerPayTools`). + +### Patch Changes + +- Updated dependencies [[`967b34f`](https://github.com/AgentaOS/agentaos/commit/967b34f2a90e20e096ececf2379c980aa562eb8f)]: + - @agentaos/pay@2.3.0 + ## 3.0.0 ### Major Changes diff --git a/packages/wallet/package.json b/packages/wallet/package.json index 6820396..ac4980a 100644 --- a/packages/wallet/package.json +++ b/packages/wallet/package.json @@ -1,6 +1,6 @@ { "name": "agentaos", - "version": "3.0.0", + "version": "3.1.0", "description": "AgentaOS — CLI + MCP server for threshold signing. The key never exists.", "license": "Apache-2.0", "author": "AgentaOS ",