From 38bd1e55f763787c6c686a9acdc8119883a613d5 Mon Sep 17 00:00:00 2001 From: codexwizardd Date: Sat, 16 May 2026 18:36:44 +0000 Subject: [PATCH] fix(cli): mount agents command at root --- packages/cli/src/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/cli/src/index.ts b/packages/cli/src/index.ts index 329e2dc9..b0fc0bfe 100644 --- a/packages/cli/src/index.ts +++ b/packages/cli/src/index.ts @@ -12,6 +12,7 @@ import { updateCmd, removeCmd } from './commands/self.js'; import { makeCategoryCmd } from './commands/adapter-cmd.js'; import { CATEGORIES } from './adapter-registry.js'; import { skillsCmd } from './commands/skills.js'; +import { agentsCmd } from './commands/agents.js'; const program = new Command(); @@ -40,6 +41,7 @@ program.addCommand(logoutCmd); program.addCommand(secretsCmd); program.addCommand(configCmd); program.addCommand(skillsCmd); // skills · package/promote SKILL.md agent skills across marketplaces +program.addCommand(agentsCmd); // agents · generate/run/talk with AI coding CLIs // Self-management — sh1pt update / upgrade / remove / uninstall. program.addCommand(updateCmd); @@ -48,6 +50,7 @@ program.addCommand(removeCmd); // Filesystem-mirrored adapter commands. One top-level command per // packages// directory → `sh1pt setup`. for (const cat of CATEGORIES) { + if (cat.id === 'agents') continue; program.addCommand(makeCategoryCmd(cat)); }