-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerate-command-docs.js
More file actions
584 lines (475 loc) · 15.8 KB
/
Copy pathgenerate-command-docs.js
File metadata and controls
584 lines (475 loc) · 15.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
#!/usr/bin/env node
import { fileURLToPath } from "url";
import { dirname, join } from "path";
import { readFileSync, writeFileSync, existsSync } from "fs";
import { createProgram } from "../dist/utils/commands.js";
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const rootDir = join(__dirname, "..");
const readmePath = join(rootDir, "README.md");
// Default docs path - can be overridden via DOCS_PATH env var or --docs-path argument
const defaultDocsPath = join(rootDir, "..", "docs", "docs", "tools", "cli.mdx");
/**
* Generates markdown documentation for the command structure from Commander
* in the format: code blocks with grouped examples
*/
function generateCommandStructure(program) {
const lines = [];
lines.push("## Command Structure");
lines.push("");
lines.push(
"The CLI is organized into command buckets:",
);
lines.push("");
// Get all top-level commands (excluding hidden ones)
const commands = program.commands.filter((cmd) => !cmd._hidden);
// Group names for better organization
const groupNames = {
create: "Create",
list: "List",
get: "Get",
delete: "Delete",
exec: "Execute commands",
upload: "Upload files",
download: "Download files",
read: "Read files",
write: "Write files",
suspend: "Suspend",
resume: "Resume",
shutdown: "Shutdown",
ssh: "SSH",
scp: "Copy files (scp)",
rsync: "Sync files (rsync)",
tunnel: "Create tunnel",
logs: "View logs",
status: "Get status",
install: "Install",
start: "Start",
};
for (const command of commands) {
const commandName = command.name();
const commandAlias = command.aliases()[0] || null;
const sectionTitleBase = commandName.charAt(0).toUpperCase() + commandName.slice(1) + " Commands";
const sectionTitle = commandAlias
? `${sectionTitleBase} (alias: \`${commandAlias}\`)`
: sectionTitleBase;
lines.push(`### ${sectionTitle}`);
lines.push("");
lines.push("```bash");
// Get subcommands
const subcommands = command.commands.filter((cmd) => !cmd._hidden);
// Group subcommands by their base action
const grouped = {};
for (const subcmd of subcommands) {
const baseName = subcmd.name().split("-")[0]; // e.g., "exec-async" -> "exec"
if (!grouped[baseName]) {
grouped[baseName] = [];
}
grouped[baseName].push(subcmd);
}
// Generate examples for each group
for (const [groupName, cmds] of Object.entries(grouped)) {
for (const subcmd of cmds) {
// Build command signature
const args = subcmd._args
.map((arg) => {
const isVariadic = arg.variadic || false;
if (arg.required) {
return `<${arg.name()}${isVariadic ? "..." : ""}>`;
}
return `[${arg.name()}${isVariadic ? "..." : ""}]`;
})
.join(" ");
const cmdName = args ? `${subcmd.name()} ${args}` : subcmd.name();
const fullCmd = `rli ${commandName} ${cmdName}`;
// Get description, make it shorter for inline comments
let desc = subcmd.description();
if (desc.length > 40) {
desc = desc.substring(0, 37) + "...";
}
lines.push(`${fullCmd.padEnd(40)} # ${desc}`);
// Show subcommand alias if exists (but not if command itself has alias)
if (subcmd.aliases().length > 0 && !commandAlias) {
const aliasName = subcmd.aliases()[0];
const aliasFullCmd = `rli ${commandName} ${aliasName} ${args}`.trim();
lines.push(`${aliasFullCmd.padEnd(40)} # Alias`);
}
}
}
lines.push("```");
lines.push("");
}
return lines.join("\n");
}
/**
* Generates a detailed command reference for external docs (cli.mdx)
* Uses Mintlify components for better presentation
*/
function generateDetailedCommandDocs(program) {
const sections = [];
// Get all top-level commands (excluding hidden ones)
const commands = program.commands.filter((cmd) => !cmd._hidden);
for (const command of commands) {
const commandName = command.name();
const commandAlias = command.aliases()[0] || null;
const sectionTitleBase = commandName.charAt(0).toUpperCase() + commandName.slice(1);
const lines = [];
// Use simple header text for predictable anchor slugs (e.g., "devbox-commands")
lines.push(`### ${sectionTitleBase} Commands`);
lines.push("");
lines.push("<AccordionGroup>");
// Get subcommands
const subcommands = command.commands.filter((cmd) => !cmd._hidden);
for (const subcmd of subcommands) {
// Build command signature
const args = subcmd._args
.map((arg) => {
const isVariadic = arg.variadic || false;
if (arg.required) {
return `<${arg.name()}${isVariadic ? "..." : ""}>`;
}
return `[${arg.name()}${isVariadic ? "..." : ""}]`;
})
.join(" ");
const cmdName = args ? `${subcmd.name()} ${args}` : subcmd.name();
const fullCmd = `rli ${commandName} ${cmdName}`;
// Get icon based on command type
const icon = getCommandIcon(subcmd.name());
lines.push(` <Accordion title="${subcmd.name()}" icon="${icon}">`);
lines.push(` ${subcmd.description()}`);
lines.push("");
lines.push(` \`\`\`bash`);
lines.push(` ${fullCmd}`);
lines.push(` \`\`\``);
// Add options/parameters if any (excluding common output option)
const options = subcmd.options.filter(opt => !opt.flags.includes("--output"));
if (options.length > 0) {
lines.push("");
for (const opt of options) {
const { name, type, isRequired } = parseOption(opt);
const defaultAttr = opt.defaultValue !== undefined ? ` default="${opt.defaultValue}"` : "";
const requiredAttr = isRequired || opt.mandatory ? " required" : "";
lines.push(` <ParamField query="${name}" type="${type}"${defaultAttr}${requiredAttr}>`);
lines.push(` ${opt.description}`);
lines.push(` </ParamField>`);
}
}
lines.push(" </Accordion>");
}
lines.push("</AccordionGroup>");
lines.push("");
sections.push(lines.join("\n"));
}
return sections.join("\n");
}
/**
* Parse option flags to extract name and type
*/
function parseOption(opt) {
const flags = opt.flags;
// Extract the long flag name (e.g., "--name <value>" -> "name")
const longMatch = flags.match(/--([a-z-]+)/i);
const name = longMatch ? longMatch[1] : flags;
// Determine type from the flag pattern
let type = "boolean";
if (flags.includes("<") && flags.includes(">")) {
// Has a value placeholder
if (flags.includes("...>")) {
type = "string[]";
} else {
type = "string";
}
}
const isRequired = opt.mandatory || false;
return { name, type, isRequired };
}
/**
* Get an appropriate icon for a command based on its name
*/
function getCommandIcon(cmdName) {
const iconMap = {
create: "plus",
list: "list",
get: "eye",
delete: "trash",
exec: "terminal",
"exec-async": "terminal",
"get-async": "clock",
"send-stdin": "keyboard",
upload: "upload",
download: "download",
read: "file",
write: "pencil",
suspend: "pause",
resume: "play",
shutdown: "power-off",
ssh: "terminal",
scp: "copy",
rsync: "rotate",
tunnel: "network-wired",
logs: "scroll",
status: "info",
start: "play",
install: "download",
};
return iconMap[cmdName] || "code";
}
/**
* Updates the README.md file with the generated command structure
*/
function updateReadme(newCommandStructure) {
const readmeContent = readFileSync(readmePath, "utf-8");
// Find the start and end of the Command Structure section
const startMarker = "## Command Structure";
const endMarker = "## MCP Server";
const startIndex = readmeContent.indexOf(startMarker);
if (startIndex === -1) {
throw new Error("Could not find '## Command Structure' section in README.md");
}
// Find the end of the section (before the next ## heading)
const afterStart = readmeContent.substring(startIndex);
const endIndex = afterStart.indexOf(endMarker);
if (endIndex === -1) {
throw new Error("Could not find end marker '## MCP Server' in README.md");
}
// Extract the content before and after the section
const before = readmeContent.substring(0, startIndex);
const after = readmeContent.substring(startIndex + endIndex);
// Combine with the new command structure
const updatedContent = before + newCommandStructure + "\n\n" + after;
writeFileSync(readmePath, updatedContent, "utf-8");
console.log("✅ Updated README.md with generated command structure");
}
/**
* Generates the full cli.mdx content
*/
function generateCliMdx(program) {
const commandDocs = generateDetailedCommandDocs(program);
return `---
title: 'Runloop CLI'
description: 'Explore, experiment with, and test the Runloop API using the Runloop CLI.'
icon: 'terminal'
---
The Runloop CLI (\`rli\`) provides both an interactive terminal UI and traditional CLI commands for managing your Runloop resources.
<CardGroup cols={2}>
<Card title="npm Package" icon="npm" href="https://www.npmjs.com/package/@runloop/rl-cli">
@runloop/rl-cli
</Card>
<Card title="GitHub Repository" icon="github" href="https://github.com/runloopai/rl-cli">
runloopai/rl-cli
</Card>
</CardGroup>
## Installation
<CodeGroup>
\`\`\`bash npm
npm install -g @runloop/rl-cli
\`\`\`
\`\`\`bash yarn
yarn global add @runloop/rl-cli
\`\`\`
\`\`\`bash pnpm
pnpm add -g @runloop/rl-cli
\`\`\`
</CodeGroup>
## Setup
Configure your API key:
\`\`\`bash
export RUNLOOP_API_KEY=your_api_key_here
\`\`\`
<Tip>
Get your API key from [runloop.ai/settings](https://runloop.ai/settings)
</Tip>
## Quick Start
<Tabs>
<Tab title="Interactive Mode">
Launch the interactive UI with a beautiful terminal interface:
\`\`\`bash
rli
\`\`\`
Navigate with arrow keys, select with Enter, and manage all your resources visually.
<Frame>
<img src="https://raw.githubusercontent.com/runloopai/rl-cli/main/misc/demo.gif" alt="Runloop CLI Interactive Mode" />
</Frame>
### Search Devboxes
Press \`/\` to search and filter through your devboxes by name or ID.
<Frame>
<img src="https://raw.githubusercontent.com/runloopai/rl-cli/main/misc/rli-demo-search.gif" alt="Search devboxes in interactive mode" />
</Frame>
### SSH to Devbox
From the interactive menu, select a devbox and choose **SSH** to open a secure shell session directly into your devbox. The CLI handles all the SSH key setup and connection details automatically.
<Frame>
<img src="https://raw.githubusercontent.com/runloopai/rl-cli/main/misc/rli-ssh-demo.gif" alt="SSH into a Devbox" />
</Frame>
</Tab>
<Tab title="CLI Mode">
Use traditional commands for scripting and automation:
\`\`\`bash
# List all devboxes
rli devbox list --output json
\`\`\`
\`\`\`json Example Output
[
{
"id": "dbx_1234567890",
"name": "my-devbox",
"status": "running",
"blueprint_id": "bpt_abcdef"
}
]
\`\`\`
\`\`\`bash
# Create a new devbox
rli devbox create --name my-devbox --blueprint my-blueprint
\`\`\`
\`\`\`text Example Output
dbx_1234567890
\`\`\`
\`\`\`bash
# Execute a command in a devbox
rli devbox exec dbx_1234567890 echo "Hello World"
\`\`\`
\`\`\`text Example Output
Hello World
\`\`\`
\`\`\`bash
# SSH into a devbox
rli devbox ssh dbx_1234567890
\`\`\`
</Tab>
</Tabs>
## Command Groups
<CardGroup cols={2}>
<Card title="Devbox" icon="server" href="#devbox-commands">
Create, manage, and interact with devboxes
</Card>
<Card title="Snapshot" icon="camera" href="#snapshot-commands">
Create and manage devbox snapshots
</Card>
<Card title="Blueprint" icon="diagram-project" href="#blueprint-commands">
Manage reusable devbox templates
</Card>
<Card title="Object" icon="box-archive" href="#object-commands">
Upload and manage file objects
</Card>
</CardGroup>
## Command Reference
${commandDocs}
## MCP Server (AI Integration)
<Note>
The CLI includes a Model Context Protocol (MCP) server that allows AI assistants like Claude to interact with your devboxes.
</Note>
### Quick Setup for Claude Desktop
\`\`\`bash
# Install MCP configuration
rli mcp install
\`\`\`
After installation, restart Claude Desktop and ask Claude to "List my devboxes" or "Create a new devbox".
### Server Modes
<Tabs>
<Tab title="Stdio (Claude Desktop)">
\`\`\`bash
rli mcp start
\`\`\`
Standard input/output mode for Claude Desktop integration.
</Tab>
<Tab title="HTTP (Web/Remote)">
\`\`\`bash
rli mcp start --http
rli mcp start --http --port 8080
\`\`\`
HTTP/SSE mode for web applications and remote access.
</Tab>
</Tabs>
## Output Formats
All commands support multiple output formats via the \`--output\` flag:
<ResponseField name="--output json" type="flag">
JSON output for programmatic parsing
</ResponseField>
<ResponseField name="--output yaml" type="flag">
YAML output for configuration files
</ResponseField>
<ResponseField name="--output text" type="flag">
Plain text output for human readability
</ResponseField>
\`\`\`bash
rli devbox list --output json
rli devbox list --output yaml
rli devbox list --output text
\`\`\`
## Contributing
The Runloop CLI is open-source. We welcome contributions!
<CardGroup cols={2}>
<Card title="GitHub Repository" icon="github" href="https://github.com/runloopai/rl-cli">
View source code and submit PRs
</Card>
<Card title="Report Issues" icon="bug" href="https://github.com/runloopai/rl-cli/issues">
Report bugs or request features
</Card>
</CardGroup>
`;
}
/**
* Updates the external docs cli.mdx file
*/
function updateDocsMdx(program, docsPath) {
if (!existsSync(docsPath)) {
console.log(`⚠️ Docs file not found at ${docsPath}, skipping docs update`);
console.log(" Set DOCS_PATH env var or use --docs-path to specify location");
return false;
}
const newContent = generateCliMdx(program);
writeFileSync(docsPath, newContent, "utf-8");
console.log(`✅ Updated ${docsPath} with generated CLI documentation`);
return true;
}
/**
* Parse command line arguments
*/
function parseArgs() {
const args = process.argv.slice(2);
const options = {
docsPath: process.env.DOCS_PATH || defaultDocsPath,
skipReadme: false,
skipDocs: false,
};
for (let i = 0; i < args.length; i++) {
if (args[i] === "--docs-path" && args[i + 1]) {
options.docsPath = args[i + 1];
i++;
} else if (args[i] === "--skip-readme") {
options.skipReadme = true;
} else if (args[i] === "--skip-docs") {
options.skipDocs = true;
} else if (args[i] === "--help" || args[i] === "-h") {
console.log(`
Usage: generate-command-docs.js [options]
Options:
--docs-path <path> Path to cli.mdx file (default: ../docs/docs/tools/cli.mdx)
--skip-readme Skip updating README.md
--skip-docs Skip updating cli.mdx
--help, -h Show this help message
Environment Variables:
DOCS_PATH Alternative way to specify docs path
`);
process.exit(0);
}
}
return options;
}
async function main() {
try {
const options = parseArgs();
const program = createProgram();
if (!options.skipReadme) {
const markdown = generateCommandStructure(program);
updateReadme(markdown);
}
if (!options.skipDocs) {
updateDocsMdx(program, options.docsPath);
}
} catch (error) {
console.error("Error generating command docs:", error);
process.exit(1);
}
}
main();