From eec1d2ae88b2ad3effcfd146d96e00f0c1b8131f Mon Sep 17 00:00:00 2001 From: yorkeccak Date: Wed, 8 Jul 2026 15:58:59 +0100 Subject: [PATCH] Make VALYU_API_KEY skill input optional required: true forced skill-aware installers and agent harnesses to demand an API key up front, before the user ever saw the device flow - directly contradicting the skill body, which tells agents to use `valyu login` (device flow) so nobody has to paste a secret. Key entry is now optional, for headless/CI environments only. --- skills/valyu-cli/SKILL.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/skills/valyu-cli/SKILL.md b/skills/valyu-cli/SKILL.md index b4fdb82..517e656 100644 --- a/skills/valyu-cli/SKILL.md +++ b/skills/valyu-cli/SKILL.md @@ -17,8 +17,11 @@ metadata: source: https://github.com/valyuAI/valyu-cli inputs: - name: VALYU_API_KEY - description: Valyu API key for authenticating CLI commands. Get yours at https://platform.valyu.ai - required: true + description: > + Optional Valyu API key. Not needed if the user has authenticated with + `valyu login` (browser device flow, the default) - only set this for + headless/CI environments where the device flow is unavailable. + required: false references: - references/search.md - references/answer.md