Skip to content

Commit 99842d8

Browse files
ndbroadbentclaude
andcommitted
Add examples to export command help text
Examples show common usage patterns: - Basic export to different formats - PDF with thumbnails - Custom output path - Filtering by country - Only mappable activities 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 4262565 commit 99842d8

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/cli/commands.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,16 @@ function addPipelineOptions(cmd: Command): Command {
119119
function addExportCommand(program: Command): void {
120120
const baseExportCmd = program
121121
.command('export')
122-
.description('Export activities to various formats (or run full pipeline without subcommand)')
122+
.description(
123+
`Export activities to various formats (or run full pipeline without subcommand)
124+
125+
Examples:
126+
$ chat-to-map export pdf chat.zip # Export to PDF
127+
$ chat-to-map export pdf chat.zip --thumbnails # PDF with images
128+
$ chat-to-map export json chat.zip -o results.json # Custom output path
129+
$ chat-to-map export csv chat.zip --countries "NZ" # Filter by country
130+
$ chat-to-map export map chat.zip --only-locations # Only mappable activities`
131+
)
123132
.argument('[input]', 'Chat export (.zip, directory, or .txt file)')
124133

125134
// Add pipeline + prefixed export + PDF options

0 commit comments

Comments
 (0)