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
7 changes: 0 additions & 7 deletions .changeset/agentconnect-get-started.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/agentconnect-root-skill-alias.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/tx-mode-flatten-agent.md

This file was deleted.

11 changes: 11 additions & 0 deletions packages/agentconnect-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion packages/agentconnect-ui/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
9 changes: 9 additions & 0 deletions packages/polygon-agent-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/polygon-agent-cli/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading