Output
Mantener Las Respuestas CLI Limitadas Y Legibles
Use límites claros en comandos de lista. Esto mantiene legible la salida de terminal en cuentas grandes y da a las herramientas de agente resultados suficientemente pequeños para revisarlos con cuidado.
Controls
Usar Los Mismos Controles En Comandos De Lectura
--limit <n>Maximum number of rows or nodes returned.
--page <n>Page number for commands that support paging.
--fields <list>Comma-separated fields such as
id,title,url,parent_id,modified.--max-chars <n>Tamaño máximo de respuesta.
--max-metadata-chars <n>Longitud máxima del texto para campos largos de detalles de marcadores.
--format json|jsonlPretty JSON is the default. JSONL prints one item per line when a response contains an item list.
Examples
Empezar Con Cargas Pequenas
webcull bookmarks tree --path / --max-depth 1 --limit 25 --max-chars 8000 --fields id,type,title,modified
webcull graph around --stack-id 2301 --depth 1 --limit 50 --max-chars 12000
webcull bookmarks get --ids 2302 --fields id,title,url,notes --max-metadata-chars 1200
Cuando una respuesta es demasiado amplia, reduzca primero los campos, luego los campos de texto largo y después los límites de filas. Aumente un límite a la vez.