ClawVault
Commands

backlog

Capture ideas in backlog and promote them into tasks

The backlog command manages idea-level work in backlog/, then promotes ready items into tasks/.

Usage

clawvault backlog add <title> [options]
clawvault backlog list [options]
clawvault backlog promote <slug> [options]

backlog add options

FlagDescriptionDefault
-v, --vault <path>Vault pathNearest vault
--source <source>Source of the ideanone
--project <project>Project namenone

backlog list options

FlagDescriptionDefault
-v, --vault <path>Vault pathNearest vault
--project <project>Filter by projectall
--jsonOutput as JSONfalse

backlog promote options

FlagDescriptionDefault
-v, --vault <path>Vault pathNearest vault
--owner <owner>Owner for the promoted tasknone
--priority <priority>Priority for the promoted tasklow
--due <date>Due date (YYYY-MM-DD) for the promoted tasknone

Examples

# Capture a backlog item
clawvault backlog add "Explore SOC2 automation" --project platform --source customer-call

# Review backlog for one project
clawvault backlog list --project platform

# Promote an item into tasks/
clawvault backlog promote explore-soc2-automation --priority high --owner dana

Details

Backlog items are stored as markdown files in backlog/ with frontmatter like source, project, created, and tags. Promoting an item creates a task in tasks/ and removes the original backlog file.

On this page