Skip to content

Commit 29d9ad9

Browse files
committed
fix: shorten CLI main help text while preserving detailed subcommand help
1 parent d2ac5a2 commit 29d9ad9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/cli.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,10 @@ function handleSyncErrors<T extends CommonOptions>(fn: (options: T) => Promise<v
9797
addCommonOptions(
9898
program
9999
.command("pull")
100-
.description(
101-
"Pull Prompt and Agent files from Humanloop to your local filesystem.\n\n" +
102-
"This command will:\n" +
100+
.description("Pull Prompt and Agent files from Humanloop to your local filesystem")
101+
.addHelpText(
102+
"after",
103+
"\nThis command will:\n" +
103104
"1. Fetch Prompt and Agent files from your Humanloop workspace\n" +
104105
"2. Save them to your local filesystem (directory specified by --local-files-directory, default: humanloop/)\n" +
105106
"3. Maintain the same directory structure as in Humanloop\n" +

0 commit comments

Comments
 (0)