Search

Full-text search across documentation, services, and methods.

Search across your organization's documentation, services, and API methods using full-text search powered by Meilisearch.

bash
riven search <query> [options]

Options

OptionDescription
--space <id>Limit search to a specific space
--type <type>Filter by result type: page, service, method
--page-type <type>Filter by page type: page, rfc, adr, runbook, api-reference, live-doc
--labels <labels>Filter by comma-separated labels
--limit <n>Maximum number of results
--format <fmt>Output format: table or json

Examples

bash
# Search all documentation
riven search "authentication flow"
 
# Search within a specific space
riven search "deploy" --space engineering
 
# Search only for API methods
riven search "CreateUser" --type method
 
# Search for RFCs with a specific label
riven search "migration" --page-type rfc --labels "approved"
 
# JSON output for scripting
riven search "billing" --format json --limit 5