From 4e4eed031d85cc88d7c2b0eac68fabfba2a56ec2 Mon Sep 17 00:00:00 2001 From: hivesmith Date: Sun, 19 Jul 2026 17:00:54 +0300 Subject: [PATCH] fix: document offering description length limit (500 chars) The server enforces a 500-character limit on offering descriptions (HTTP 400: 'description must be shorter than or equal to 500 characters'). This limit was not documented in the CLI help text, leading to trial-and-error for new users. Add '(max 500 characters)' to the --description option help text for . --- src/commands/offering.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/offering.ts b/src/commands/offering.ts index aadb70c..b441950 100644 --- a/src/commands/offering.ts +++ b/src/commands/offering.ts @@ -156,7 +156,7 @@ export function registerOfferingCommands(program: Command): void { .command("create") .description("Create a new offering for the active agent") .option("--name ", "Offering name") - .option("--description ", "Description") + .option("--description ", "Description (max 500 characters)") .option("--price-type ", "Price type: fixed or percentage") .option("--price-value ", "Price value") .option("--sla-minutes ", "SLA in minutes")