Access and manage documentation directly from your terminal with our powerful command-line interface.
Overview
The Zudoku CLI is a Go-based tool that brings documentation to your terminal. Search, browse, and download documentation without leaving your development environment. Perfect for terminal enthusiasts and automation workflows.
# Search documentationzudoku search "authentication"# Get a specific pagezudoku get /docs/quickstart# List all pageszudoku list# Download for offline accesszudoku sync ./docs
# View in terminalzudoku get /docs/api-reference# Save to filezudoku get /docs/quickstart --output=quickstart.md# Get as HTMLzudoku get /docs/guides --format=html# Get as JSONzudoku get /docs/api --format=json
Options:
-f, --format - Output format (markdown, html, json)
-o, --output - Save to file instead of stdout
list
List all available documentation pages.
Code
# List all pageszudoku list# Filter by categoryzudoku list --category=guides# JSON output for scriptingzudoku list --format=json | jq '.[] | .title'# YAML outputzudoku list --format=yaml
Options:
-c, --category - Filter by category
sync
Download documentation for offline access.
Code
# Sync to directoryzudoku sync ./docs# Force re-downloadzudoku sync ./docs --force# Sync with progresszudoku sync ./docs --verbose
Options:
-f, --force - Force re-download all files
--verbose - Show detailed progress
config
Manage CLI configuration.
Code
# Show current configzudoku config show# Set domainzudoku config set domain figmatofullstack.ai# Set output formatzudoku config set format json# Reset to defaultszudoku config reset