From b97cbfd200f7732865e2d2a07adb88589d059dd6 Mon Sep 17 00:00:00 2001 From: yorkeccak Date: Tue, 31 Mar 2026 13:04:14 +0100 Subject: [PATCH] Fix deepresearch share URL to use correct platform path URL was /research/{id} but the actual platform route is /playground/deepresearch/{id}. Bump to 1.0.3. --- package.json | 2 +- skills/valyu-cli/SKILL.md | 2 +- src/commands/research/index.ts | 2 +- src/lib/version.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 92b20d4..2b08f61 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@valyu/cli", - "version": "1.0.2", + "version": "1.0.3", "description": "The search CLI for knowledge workers", "license": "MIT", "repository": { diff --git a/skills/valyu-cli/SKILL.md b/skills/valyu-cli/SKILL.md index 3a9b488..e2ec46b 100644 --- a/skills/valyu-cli/SKILL.md +++ b/skills/valyu-cli/SKILL.md @@ -9,7 +9,7 @@ description: > license: MIT metadata: author: valyu - version: "1.0.2" + version: "1.0.3" homepage: https://valyu.ai source: https://github.com/valyu-network/valyu-cli inputs: diff --git a/src/commands/research/index.ts b/src/commands/research/index.ts index 4f9aad9..68dad10 100644 --- a/src/commands/research/index.ts +++ b/src/commands/research/index.ts @@ -400,7 +400,7 @@ const shareCmd = new Command('share') } if (newPublic) { - const publicUrl = `${PLATFORM_URL}/research/${id}`; + const publicUrl = `${PLATFORM_URL}/playground/deepresearch/${id}`; spinner.stop(`Task ${pc.cyan(id.slice(0, 8))} is now ${pc.green('public')}`); console.log(''); console.log(` ${pc.bold('Public URL:')} ${pc.cyan(publicUrl)}`); diff --git a/src/lib/version.ts b/src/lib/version.ts index 64c3509..82b4b15 100644 --- a/src/lib/version.ts +++ b/src/lib/version.ts @@ -1,2 +1,2 @@ -export const VERSION = '1.0.2'; +export const VERSION = '1.0.3'; export const PACKAGE_NAME = '@valyu/cli';