From c30cf0eedbc486e65b711b584fb3790e8dd6253f Mon Sep 17 00:00:00 2001 From: "0xpolygon-changesets-release-bot[bot]" <267031455+0xpolygon-changesets-release-bot[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 11:10:55 +0000 Subject: [PATCH] release: version packages --- .changeset/agentconnect-get-started.md | 7 ------- .changeset/agentconnect-root-skill-alias.md | 5 ----- .changeset/tx-mode-flatten-agent.md | 9 --------- packages/agentconnect-ui/CHANGELOG.md | 11 +++++++++++ packages/agentconnect-ui/package.json | 2 +- packages/polygon-agent-cli/CHANGELOG.md | 9 +++++++++ packages/polygon-agent-cli/package.json | 2 +- 7 files changed, 22 insertions(+), 23 deletions(-) delete mode 100644 .changeset/agentconnect-get-started.md delete mode 100644 .changeset/agentconnect-root-skill-alias.md delete mode 100644 .changeset/tx-mode-flatten-agent.md create mode 100644 packages/agentconnect-ui/CHANGELOG.md diff --git a/.changeset/agentconnect-get-started.md b/.changeset/agentconnect-get-started.md deleted file mode 100644 index 517a6c0..0000000 --- a/.changeset/agentconnect-get-started.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@polygonlabs/agentconnect-ui': patch ---- - -Show a get-started screen when the dashboard is opened without a wallet deep link. Instead of "Open this page from the polygon-agent CLI", it now displays the skill install command (`npx skills add https://github.com/0xPolygon/polygon-agent-cli`) and the starter prompt "set up a Polygon Agent for me", each with a copy button. - -Also serve the agent skills from this deployment: the build now copies the repo `skills/` tree into `dist/`, so the Cloudflare worker serves `SKILL.md`, `polygon-agent-cli/SKILL.md`, `polygon-defi/SKILL.md`, `polygon-discovery/SKILL.md`, and `polygon-polymarket/SKILL.md` at `agentconnect.polygon.technology` (previously served only by the retired connector-ui). The dashboard's main skill link now points at the canonical `polygon-agent-cli/SKILL.md`. diff --git a/.changeset/agentconnect-root-skill-alias.md b/.changeset/agentconnect-root-skill-alias.md deleted file mode 100644 index 8c46f92..0000000 --- a/.changeset/agentconnect-root-skill-alias.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@polygonlabs/agentconnect-ui': patch ---- - -Serve the canonical skill at the legacy root URL. The build now aliases `polygon-agent-cli/SKILL.md` to `/SKILL.md` in the deployed assets, so `https://agentconnect.polygon.technology/SKILL.md` returns the skill markdown (200) instead of falling back to the SPA `index.html`. Deploy-only copy; the repo `skills/` tree is unchanged, so `npx skills add` still lists one canonical skill. diff --git a/.changeset/tx-mode-flatten-agent.md b/.changeset/tx-mode-flatten-agent.md deleted file mode 100644 index 975eb70..0000000 --- a/.changeset/tx-mode-flatten-agent.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@polygonlabs/agent-cli': minor ---- - -Add a persisted transaction mode and flatten the ERC-8004 command group. - -- New `agent mode [auto|dry-run]`: `auto` makes write commands broadcast immediately; the default `dry-run` keeps the preview-first behavior. `--dry-run` on any write command forces a preview regardless of mode. `wallet login` asks once (interactive prompt on a TTY, `modePrompt` field in the JSON output otherwise). -- BREAKING: the `agent agent *` group is removed. Use top-level `register`, `identity` (replaces `agent agent wallet` + `agent agent metadata`), `reputation`, `reviews`, `feedback`. The hidden legacy aliases (`register`, `agent-wallet`, `agent-metadata`, `reputation`, `give-feedback`, `read-feedback`) and their interactive handlers are also removed. -- Fix: `reputation` and `reviews` no longer crash with "Cannot assign to read only property '0'" (frozen ethers Result passed back into a contract call), and `reputation` no longer fails to serialize a BigInt decimals field. diff --git a/packages/agentconnect-ui/CHANGELOG.md b/packages/agentconnect-ui/CHANGELOG.md new file mode 100644 index 0000000..3ae2d1d --- /dev/null +++ b/packages/agentconnect-ui/CHANGELOG.md @@ -0,0 +1,11 @@ +# @polygonlabs/agentconnect-ui + +## 0.0.1 + +### Patch Changes + +- 8be6b13: Show a get-started screen when the dashboard is opened without a wallet deep link. Instead of "Open this page from the polygon-agent CLI", it now displays the skill install command (`npx skills add https://github.com/0xPolygon/polygon-agent-cli`) and the starter prompt "set up a Polygon Agent for me", each with a copy button. + + Also serve the agent skills from this deployment: the build now copies the repo `skills/` tree into `dist/`, so the Cloudflare worker serves `SKILL.md`, `polygon-agent-cli/SKILL.md`, `polygon-defi/SKILL.md`, `polygon-discovery/SKILL.md`, and `polygon-polymarket/SKILL.md` at `agentconnect.polygon.technology` (previously served only by the retired connector-ui). The dashboard's main skill link now points at the canonical `polygon-agent-cli/SKILL.md`. + +- c43a308: Serve the canonical skill at the legacy root URL. The build now aliases `polygon-agent-cli/SKILL.md` to `/SKILL.md` in the deployed assets, so `https://agentconnect.polygon.technology/SKILL.md` returns the skill markdown (200) instead of falling back to the SPA `index.html`. Deploy-only copy; the repo `skills/` tree is unchanged, so `npx skills add` still lists one canonical skill. diff --git a/packages/agentconnect-ui/package.json b/packages/agentconnect-ui/package.json index 1e6d97a..b43eb48 100644 --- a/packages/agentconnect-ui/package.json +++ b/packages/agentconnect-ui/package.json @@ -1,7 +1,7 @@ { "name": "@polygonlabs/agentconnect-ui", "private": true, - "version": "0.0.0", + "version": "0.0.1", "type": "module", "description": "Wallet funding + dashboard UI for Polygon Agent CLI (login happens in the CLI)", "repository": { diff --git a/packages/polygon-agent-cli/CHANGELOG.md b/packages/polygon-agent-cli/CHANGELOG.md index 37f5736..dcedb58 100644 --- a/packages/polygon-agent-cli/CHANGELOG.md +++ b/packages/polygon-agent-cli/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## 0.13.0 + +### Minor Changes + +- 5377af6: Add a persisted transaction mode and flatten the ERC-8004 command group. + - New `agent mode [auto|dry-run]`: `auto` makes write commands broadcast immediately; the default `dry-run` keeps the preview-first behavior. `--dry-run` on any write command forces a preview regardless of mode. `wallet login` asks once (interactive prompt on a TTY, `modePrompt` field in the JSON output otherwise). + - BREAKING: the `agent agent *` group is removed. Use top-level `register`, `identity` (replaces `agent agent wallet` + `agent agent metadata`), `reputation`, `reviews`, `feedback`. The hidden legacy aliases (`register`, `agent-wallet`, `agent-metadata`, `reputation`, `give-feedback`, `read-feedback`) and their interactive handlers are also removed. + - Fix: `reputation` and `reviews` no longer crash with "Cannot assign to read only property '0'" (frozen ethers Result passed back into a contract call), and `reputation` no longer fails to serialize a BigInt decimals field. + ## 0.12.0 ### Minor Changes diff --git a/packages/polygon-agent-cli/package.json b/packages/polygon-agent-cli/package.json index 5372c45..cf0f93a 100644 --- a/packages/polygon-agent-cli/package.json +++ b/packages/polygon-agent-cli/package.json @@ -1,6 +1,6 @@ { "name": "@polygonlabs/agent-cli", - "version": "0.12.0", + "version": "0.13.0", "description": "CLI + Agent Skills for building on-chain agents on Polygon", "repository": { "type": "git",