lb para
Synopsis
Section titled “Synopsis”lb para <subcommand> [arguments] [options]Subcommands
Section titled “Subcommands”| Subcommand | Description |
|---|---|
create | Create a new PARA item |
archive <id> | Archive a PARA item |
unarchive <id> | Restore an archived PARA item |
lb para create
Section titled “lb para create”Create a new project, area, or resource.
lb para create [options]Options
Section titled “Options”| Option | Type | Description |
|---|---|---|
--category <category> | string | Required. One of projects, areas, or resources. |
--label <label> | string | Required. Human-readable name. A URL-safe slug is generated automatically. |
--description <text> | string | Optional description of the PARA item. |
--json | flag | Output raw JSON. |
--api-url <url> | string | Override the API base URL. |
Slug generation
Section titled “Slug generation”The slug is derived automatically from --label. For example, --label "Auth Redesign" produces the slug auth-redesign. Slugs must be unique within each category.
Examples
Section titled “Examples”Create a project:
lb para create --category projects --label "Auth Redesign" --description "Overhaul the token flow"Create an area:
lb para create --category areas --label "Security"Create a resource and output the result as JSON:
lb para create --category resources --label "RFC Library" --json | jq '.id'lb para archive
Section titled “lb para archive”Archive a PARA item by ID. Archived items are hidden from lb tree by default and excluded from auto-classification.
lb para archive <id> [options]Arguments
Section titled “Arguments”| Argument | Description |
|---|---|
id | Required. The ID of the PARA item to archive. |
Options
Section titled “Options”| Option | Type | Description |
|---|---|---|
--json | flag | Output raw JSON. |
--api-url <url> | string | Override the API base URL. |
Example
Section titled “Example”lb para archive proj_abc123lb para unarchive
Section titled “lb para unarchive”Restore an archived PARA item to active status.
lb para unarchive <id> [options]Arguments
Section titled “Arguments”| Argument | Description |
|---|---|
id | Required. The ID of the PARA item to unarchive. |
Options
Section titled “Options”| Option | Type | Description |
|---|---|---|
--json | flag | Output raw JSON. |
--api-url <url> | string | Override the API base URL. |
Example
Section titled “Example”lb para unarchive proj_abc123