project
Overview
Section titled “Overview”snippbot project list # List all projectssnippbot project list --status running # Filter by statussnippbot project show <id> # Show project detailssnippbot project approve <id> # Approve a pending projectsnippbot project cancel <id> # Cancel a projectsnippbot project list
Section titled “snippbot project list”List all projects.
snippbot project listsnippbot project list --status running # Filter by statussnippbot project list --status pending # Show unapproved plans| Option | Values | Description |
|---|---|---|
--status | all, pending, approved, running, completed, failed | Filter by status |
Example output:
┌────────────┬─────────────────────────────┬──────────┬─────────────────────┐│ ID │ Name │ Status │ Created │├────────────┼─────────────────────────────┼──────────┼─────────────────────┤│ proj_abc12 │ Research AI frameworks │ running │ 2026-03-01 09:00 ││ proj_def34 │ Weekly digest │ pending │ 2026-03-01 08:30 │└────────────┴─────────────────────────────┴──────────┴─────────────────────┘snippbot project show
Section titled “snippbot project show”Show project details including all tasks.
snippbot project show proj_abc12Displays project name, description, status, timestamps, and a task list with status icons (✓ completed, ⟳ running, ○ pending, ✗ failed).
snippbot project approve
Section titled “snippbot project approve”Approve a pending project to begin execution.
snippbot project approve proj_def34Only works on projects in pending status. Once approved, execution begins immediately.
snippbot project cancel
Section titled “snippbot project cancel”Cancel a running or pending project.
snippbot project cancel proj_abc12snippbot project cancel proj_abc12 --force # Force cancel a running project| Option | Description |
|---|---|
--force | Force cancel even if tasks are actively running |
Related
Section titled “Related”- Core Concepts: Projects — project hierarchy and status model
- API Reference: Projects — REST API documentation