Skip to content

lb_create_para_item

Creates a new item in your PARA structure. PARA items are the primary organizational units in LoomBrain. Nodes are tagged with PARA items to scope them to a project, area of responsibility, or resource collection.

ParameterTypeRequiredDescription
categorystringYesPARA category: projects, areas, or resources
labelstringYesHuman-readable name for the item
descriptionstringNoOptional description of the item’s purpose or scope
{
"id": "...",
"slug": "...",
"label": "...",
"category": "...",
"status": "active",
"description": "...",
"created_at": "..."
}
  • The slug is generated automatically from label — lowercased, with spaces replaced by hyphens. You cannot set it manually.
  • archive is not a valid category — archived items are ordinary items moved to the archive state via lb_archive_para_item.
  • The created item has status: "active" and is immediately available for tagging nodes.
  • To tag an existing node with the new item, use lb_update_node_tags.