Loading...
Loading...
Meticulous CLI schema command for outputting the full CLI command structure as JSON. Use when you need to programmatically inspect available commands and their options, or when building tooling that drives the Meticulous CLI.
npx skill4agent add alwaysmeticulous/skills meticulous-cli-schemameticulous schema [command..]| Option | Type | Description |
|---|---|---|
| positional (variadic) | Zero or more command path segments to drill into a specific command |
[
{ "command": "auth", "describe": "Authentication commands", "subcommands": [...] },
{ "command": "ci", "describe": "CI/CD commands", "subcommands": [...] },
...
]{
"command": "simulate",
"describe": "Replay a recorded session",
"options": {
"sessionId": { "type": "string", "required": true },
"appUrl": { "type": "string" },
"headless": { "type": "boolean", "default": false },
...
}
}# List all top-level commands (structure only, no options)
meticulous schema
# Show the full option schema for a specific command
meticulous schema simulate
meticulous schema download replay
meticulous schema ci run-with-tunnel
# Show subcommands for a command group
meticulous schema ci
meticulous schema authschemameticulousmeticulous schemameticulous schema <command>--dryRun