Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
71d11e8
docs: add v2 relay session implementation plan
JamesLawton Mar 27, 2026
a5c23b3
feat(shared): add v2 crypto protocol package (X25519+HKDF+XChaCha20)
JamesLawton Mar 27, 2026
84d5673
fix(shared): correct import path in plan, suppress vitest warning, ad…
JamesLawton Mar 27, 2026
77a093c
feat(connector-ui): add Durable Object relay API + upgrade worker rou…
JamesLawton Mar 27, 2026
509b34f
fix(connector-ui): relay init error check, rid validation, re-init gu…
JamesLawton Mar 27, 2026
b4ac674
feat(connector-ui): v2 session flow — relay encryption + 6-digit code…
JamesLawton Mar 27, 2026
5e9a070
fix(connector-ui): add @cloudflare/workers-types for relay DO type re…
JamesLawton Mar 27, 2026
ca4c4aa
fix(connector-ui): preserve implicit session metadata, remove tweetna…
JamesLawton Mar 27, 2026
8dba6fb
feat(cli): replace cloudflared tunnel with relay + 6-digit code handoff
JamesLawton Mar 27, 2026
3c08268
fix(cli): wire --timeout to waitForReady, document ephemeral key storage
JamesLawton Mar 27, 2026
f38d2f2
fix: address code review issues — persist cliSk, raise payload limit,…
JamesLawton Mar 27, 2026
a3a1074
chore: add tsx for running CLI from source with workspace packages
JamesLawton Mar 27, 2026
0b713b8
fix(relay): include code_hash_hex in retrieve response for CLI decryp…
JamesLawton Mar 27, 2026
a53e933
chore(connector-ui): update footer to 'Powered by Polygon'
JamesLawton Mar 27, 2026
dd8c417
chore(connector-ui): update code display instruction to mention agent
JamesLawton Mar 27, 2026
63b2fcd
feat(connector-ui): redesign — light theme, code display, funding flow
JamesLawton Mar 30, 2026
1712944
docs(skills): update SKILL.md for v2 relay session flow
JamesLawton Mar 30, 2026
8ad6596
feat(cli): ink UI redesign and DX improvements
JamesLawton Mar 30, 2026
faffeea
docs(skills): fix --no-wait→--print-url, document auto-loaded credent…
JamesLawton Mar 31, 2026
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ dist/
/.idea/workspace.xml
.nx/
*/**/.nx
.gstack/
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ published with the CLI package but are not source code.
## Development

- Dev environment requires Node 24+ (`.nvmrc`). The published CLI supports Node 20+.
- `node packages/polygon-agent-cli/src/index.ts` runs the CLI directly from source.
- `tsx packages/polygon-agent-cli/src/index.ts` runs the CLI directly from source (tsx handles `.js`→`.ts` remapping for workspace packages).
- `pnpm run build` compiles TypeScript to `dist/` (targeting es2023 for Node 20 compat).
- The CLI uses yargs with the `CommandModule` builder/handler pattern.

Expand Down
Loading