From 98e66d214aab3b531808bdf412bb61988d5bcc45 Mon Sep 17 00:00:00 2001 From: Jonathan Fishner Date: Sat, 2 May 2026 20:19:39 +0300 Subject: [PATCH 1/2] fix: use ONECLI_URL template var for OAuth connect URL in gateway skill (#40) --- cmd/onecli/skill_gateway.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cmd/onecli/skill_gateway.md b/cmd/onecli/skill_gateway.md index 61a19cf..4a2e4cd 100644 --- a/cmd/onecli/skill_gateway.md +++ b/cmd/onecli/skill_gateway.md @@ -54,11 +54,10 @@ You MUST show the user a clickable link BEFORE doing anything else. Do NOT skip this step. Do NOT jump to polling. The user cannot connect without seeing this link. -**For OAuth apps:** extract the `connect_url` from the error response and -append `&source=agent&agent_name={{AGENT_NAME_ENCODED}}`. Show it like: +**For OAuth apps:** use the `connect_url` from the error response directly: > To connect [service], open this link: -> http://localhost:10254/connections?connect=[provider]&source=agent&agent_name={{AGENT_NAME_ENCODED}} +> [connect_url from the error response] **For API key services:** construct a pre-filled dashboard link: From 7bdc0d9699c40d46c1a192251d29a09f9a7160cb Mon Sep 17 00:00:00 2001 From: Guy Ben-Aharon Date: Sat, 2 May 2026 20:21:54 +0300 Subject: [PATCH 2/2] chore(main): release 1.5.3 (#41) --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8ace17..cf86616 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.5.3](https://github.com/onecli/onecli-cli/compare/v1.5.2...v1.5.3) (2026-05-02) + + +### Bug Fixes + +* use ONECLI_URL template var for OAuth connect URL in gateway skill ([#40](https://github.com/onecli/onecli-cli/issues/40)) ([98e66d2](https://github.com/onecli/onecli-cli/commit/98e66d214aab3b531808bdf412bb61988d5bcc45)) + ## [1.5.2](https://github.com/onecli/onecli-cli/compare/v1.5.1...v1.5.2) (2026-05-02)