Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.receiptor.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authenticate

receiptor auth sk_...
receiptor auth --status

Workspace context commands

receiptor workspace --status
receiptor workspace list
receiptor workspace use org_...
receiptor workspace clear
workspace list calls GET /v1/workspaces. Capability execution uses selected workspace by setting X-Receiptor-Org-Id. Workspace context also controls org-level defaults such as preferred currency. CLI capability execution resolves currency from the active workspace first, then falls back to the user profile.

List capabilities

receiptor list
Calls GET /v1/capabilities and prints capability metadata.

Execute capability with flags

receiptor documents search --query "uber" --limit 5 --outputMode compact

Execute using JSON input

receiptor documents search '{"query":"uber","limit":5}'

Execute using stdin

echo '{"merchant":"Uber","changes":{"category":"Transport"},"dryRun":true}' | receiptor documents bulk-edit

Approval commands

receiptor approval get 01J...
receiptor approval approve 01J...
receiptor approval reject 01J... --message "Not yet"
When a gated capability is called in execute mode, the CLI prints the approval_required payload instead of failing. You can then resolve that request with the approval commands above.

Show input schema help

receiptor documents search --help
This fetches discovery output and prints selected capability inputSchema.