lb context
Synopsis
Section titled “Synopsis”lb context <topic> [options]Description
Section titled “Description”lb context retrieves the most relevant nodes for a given topic, scoped to a specific PARA item. The topic argument is required. Results are ranked by relevance to the topic. This is useful for priming yourself before working on a project, or for generating context to pass to an AI tool.
The --para flag is required. Results are always scoped to a single PARA item to keep context focused.
Options
Section titled “Options”| Option | Type | Default | Description |
|---|---|---|---|
--para <id> | string | — | Required. PARA item ID to scope the context query. |
--limit <n> | number | 10 | Maximum number of nodes to return. |
--json | flag | — | Output raw JSON. |
--api-url <url> | string | — | Override the API base URL. |
Examples
Section titled “Examples”Get context for a topic within a project:
lb context "rate limiting strategy" --para proj_abc123Increase result count:
lb context "database schema decisions" --para proj_abc123 --limit 20Pipe context as JSON into another tool:
lb context "auth design" --para proj_abc123 --json | jq '.[].summary'