CLI for Task-O-Matic
Your command bunker in the post-apocalyptic development wasteland
---
_Citizen, the world outside has changed. The software development landscape shifted from chaos into something... darker. But your projects don't have to die in the radioactive dust of bad management._
_The task-o-matic CLI is your bunker command system. Think of it as a wrist-mounted interface for code—organizing tasks, parsing documents, and deploying artificial intelligence to help your projects thrive when everything else has collapsed._
_[The preceding message was brought to you by the Department of Project Preservation. Remember: A prepared developer is a surviving developer.]_
---
The CLI is organized into command groups. Each group serves a specific survival function:
``bash`
task-o-matic
| Group | Purpose |
|-------|---------|
| init | Initialize projects, attach to existing codebases, bootstrap fresh starts |tasks
| | Task CRUD, enhancement, splitting, execution, planning, documentation |prd
| | Product Requirements Document management (create, parse, refine, combine) |workflow
| | Guided end-to-end project setup and automation |config
| | AI provider and project configuration |benchmark
| | AI model performance comparison and testing |detect
| | Technology stack detection and analysis |continue
| | Resume work on existing projects |prompt
| | Build AI prompts for external tools |install
| | Install documentation and agent guides |
---
`bashNavigate to your project's containment zone
cd /path/to/your/project
What happens:
1. Initialization of the command bunker (
.task-o-matic/ directory)
2. PRD creation or loading
3. PRD refinement with AI-generated questions
4. Task generation from refined PRD
5. Task splitting into manageable chunksEstimated time: 5-10 minutes
$3
`bash
Initialize containment directory
task-o-matic init init --ai-provider anthropic --ai-model claude-3-5-sonnetConfigure AI provider
task-o-matic config set-ai-provider anthropic claude-3-5-sonnetCreate task with AI enhancement
task-o-matic tasks create --title "Add survivor authentication" --ai-enhance --stream
`---
🏗️ INITIALIZATION COMMANDS
$3
Initialize a new project command bunker.
`bash
Basic initialization
task-o-matic init initWith project name and AI configuration
task-o-matic init init --project-name my-shelter-manager \
--ai-provider anthropic --ai-model claude-3-5-sonnetWithout bootstrapping
task-o-matic init init --no-bootstrap
`Options:
-
--ai-provider : AI provider (openai, anthropic, openrouter, custom)
- --ai-model : AI model to use
- --ai-key : API key for the AI provider
- --ai-provider-url : Custom AI provider URL
- --max-tokens : Max tokens for AI responses
- --temperature : AI temperature (0-1)
- --no-bootstrap: Skip project bootstrapping
- --project-name : Project name for bootstrap
- --frontend : Frontend framework(s) for bootstrap
- --backend : Backend framework for bootstrap
- --database : Database for bootstrap
- --auth : Authentication for bootstrap
- --context7-api-key : Context7 API key for documentation fetching
- --directory : Working directory for the project
- --package-manager : Package manager (npm, bun, pnpm, yarn)
- --runtime : Runtime (node, bun, deno)
- --payment : Payment provider
- --cli-deps : CLI dependency level$3
Bootstrap a new project with Better-T-Stack.
`bash
Full-stack web application
task-o-matic init bootstrap vault-app --frontend next --backend hono --database postgres --authCLI application
task-o-matic init bootstrap shelter-cli --backend hono --database sqlite --no-authNative mobile app
task-o-matic init bootstrap survival-mobile --frontend react-native --auth
`Options:
-
--frontend : Frontend framework(s) (next, react, vue, svelte, react-native, none)
- --backend : Backend framework (hono, express, fastify, none)
- --database : Database (sqlite, postgres, mysql, mongodb, none)
- --orm : ORM (prisma, drizzle, typeorm)
- --auth : Authentication (better-auth, clerk, nextauth, auth0, none)
- --no-auth: Exclude authentication
- --addons : Addons (pwa, biome, testing, etc.)
- --examples : Examples to include
- --template : Use a predefined template
- --no-git: Skip git initialization
- --package-manager : Package manager
- --no-install: Skip installing dependencies
- --db-setup : Database setup
- --runtime : Runtime
- --api : API type
- --payment : Payment provider
- --cli-deps : CLI dependency level$3
Attach the command bunker to an existing project.
`bash
Auto-detect stack
task-o-matic init attach --analyze --create-prdJust detect without creating files
task-o-matic init attach --dry-runForce re-detection
task-o-matic init attach --redetect
`Options:
-
--analyze: Run full project analysis including TODOs and features
- --create-prd: Auto-generate a PRD from codebase analysis
- --dry-run: Just detect, don't create files
- --redetect: Force re-detection of stack
- --ai-provider : AI provider
- --ai-model : AI model
- --ai-key : AI API key
- --ai-provider-url : AI provider URL
- --max-tokens : Max tokens for AI
- --temperature : AI temperature
- --context7-api-key : Context7 API key---
📝 TASK COMMANDS
$3
Create a new task with AI enhancement.
`bash
Basic task
task-o-matic tasks create --title "Fix water filtration system"With content and enhancement
task-o-matic tasks create --title "Add survivor tracking" \
--content "Implement tracking system for all bunker residents" \
--ai-enhance --streamWith parent task
task-o-matic tasks create --title "Install sensor hardware" \
--parent-id 1 --effort 2h
`Options:
-
--title : Task title (required)
- --content : Task description
- --effort : Estimated effort (e.g., 2h, 4h, 1d)
- --parent-id : Parent task ID for subtasks
- --ai-enhance: Enhance task with AI
- --stream: Show streaming AI output
- --ai-provider : AI provider override
- --ai-model : AI model override
- --ai-key : AI API key override
- --ai-provider-url : AI provider URL override
- --reasoning : Enable reasoning for OpenRouter models$3
List tasks with filtering.
`bash
List all tasks
task-o-matic tasks listFilter by status
task-o-matic tasks list --status todo
task-o-matic tasks list --status in-progress
task-o-matic tasks list --status completedFilter by tag
task-o-matic tasks list --tag security
`Options:
-
--status : Filter by status (todo, in-progress, completed)
- --tag : Filter by tag$3
Display detailed information about a task.
`bash
task-o-matic tasks show --id 7
`Options:
-
--id : Task ID to show (required)$3
Update an existing task.
`bash
Update status
task-o-matic tasks update --id 7 --status in-progressUpdate title and description
task-o-matic tasks update --id 7 --title "New title" --description "New description"Update effort and tags
task-o-matic tasks update --id 7 --effort 4h --tags critical,backend
`Options:
-
--id : Task ID to update (required)
- --title : New task title
- --description : New task description
- --status : New status (todo, in-progress, completed)
- --effort : New estimated effort
- --tags : New tags (comma-separated)$3
Delete a task.
`bash
Delete with confirmation
task-o-matic tasks delete --id 7Force delete without confirmation
task-o-matic tasks delete --id 7 --forceDelete task and all subtasks
task-o-matic tasks delete --id 7 --cascade
`Options:
-
--id : Task ID to delete (required)
- --force: Skip confirmation prompt
- --cascade: Delete all subtasks$3
Enhance an existing task with AI using Context7 documentation.
`bash
Enhance single task
task-o-matic tasks enhance --task-id 7 --streamEnhance all tasks
task-o-matic tasks enhance --all --force --streamEnhance specific status/tag
task-o-matic tasks enhance --status todo --tag critical --dry
`Options:
-
--task-id : Task ID to enhance
- --all: Enhance all existing tasks
- --status : Filter tasks by status
- --tag : Filter tasks by tag
- --dry: Preview what would be enhanced
- --force: Skip confirmation prompt
- --stream: Show streaming AI output
- --ai-provider : AI provider override
- --ai-model : AI model override
- --ai-key : AI API key override
- --ai-provider-url : AI provider URL override
- --reasoning : Enable reasoning$3
Split a task into smaller subtasks using AI.
`bash
Split single task (works even if it already has subtasks)
task-o-matic tasks split --task-id 7 --streamSplit all tasks
task-o-matic tasks split --all --force --streamMulti-AI splitting
task-o-matic tasks split --task-id 7 \
--ai "anthropic:claude-3.5-sonnet,openai:gpt-4o" \
--combine-ai anthropic:claude-3.5-sonnet \
--stream
`Options:
-
--task-id : Task ID to split
- --all: Split all existing tasks
- --status : Filter tasks by status
- --tag : Filter tasks by tag
- --dry: Preview what would be split
- --force: Skip confirmation prompt
- --stream: Show streaming AI output
- --ai-provider : AI provider override
- --ai-key : AI API key override
- --ai-provider-url : AI provider URL override
- --ai : AI model(s) to use (comma-separated)
- --combine-ai : AI model to combine results
- --reasoning : Enable reasoning
- --tools: Enable filesystem tools$3
Execute a task using an external coding assistant.
`bash
Execute with planning and review
task-o-matic tasks execute --id 7 \
--tool opencode \
--plan --review \
--verify "bun test" \
--max-retries 3Progressive model retry
task-o-matic tasks execute --id 7 \
--try-models "gpt-4o-mini,gpt-4o,claude:sonnet-4" \
--verify "bun run build" \
--auto-commit
`Options:
-
--id : Task ID to execute (required)
- --tool : External tool (opencode, claude, gemini, codex)
- --message : Custom message to send
- --model : Model to use
- --continue-session: Continue last session
- --dry: Show what would be executed
- --verify : Verification command (alias: --validate)
- --max-retries : Maximum number of retries
- --try-models : Progressive model/executor configs
- --plan: Generate implementation plan
- --plan-model : Model for planning
- --plan-tool : Tool for planning
- --review-plan: Pause for human review
- --review: Run AI review after execution
- --review-model : Model for review
- --auto-commit: Automatically commit changes
- --include-prd: Include PRD content$3
Execute multiple tasks in a loop with retry logic.
`bash
Execute all TODO tasks
task-o-matic tasks execute-loop --status todo \
--tool opencode \
--verify "bun test" \
--max-retries 3Execute specific tasks
task-o-matic tasks execute-loop --ids 7,8,9 \
--plan --review \
--auto-commit
`Options:
-
--status : Filter tasks by status
- --tag : Filter tasks by tag
- --ids : Comma-separated list of task IDs
- --tool : External tool to use
- --max-retries : Maximum retries per task
- --try-models : Progressive model/executor configs
- --model : Model to force
- --verify : Verification command (alias: --validate)
- --message : Custom message
- --continue-session: Continue last session
- --auto-commit: Automatically commit changes
- --plan: Generate implementation plan
- --plan-model : Model for planning
- --plan-tool : Tool for planning
- --review-plan: Pause for human review
- --review: Run AI review after execution
- --review-model : Model for review
- --include-completed: Include completed tasks
- --include-prd: Include PRD content
- --notify : Notify on completion
- --dry: Show what would be executed$3
Get the next task to work on.
`bash
Get next TODO task
task-o-matic tasks get-next --status todoGet next critical priority task
task-o-matic tasks get-next --tag criticalGet shortest task
task-o-matic tasks get-next --priority effort
`Options:
-
--status : Filter by status
- --tag : Filter by tag
- --effort : Filter by effort
- --priority : Sort priority (newest, oldest, effort)$3
Set task status.
`bash
task-o-matic tasks status --id 7 --status in-progress
`Options:
-
--id : Task ID (required)
- --status : New status (todo, in-progress, completed)$3
Display hierarchical task tree.
`bash
Show full tree
task-o-matic tasks treeShow subtree starting from task 7
task-o-matic tasks tree --id 7
`Options:
-
--id : Root task ID (optional - shows full tree if not specified)$3
List subtasks for a task.
`bash
task-o-matic tasks subtasks --id 7
`Options:
-
--id : Parent task ID (required)$3
Add or remove tags from a task.
`bash
Add tags
task-o-matic tasks add-tags --id 7 --tags critical,securityRemove tags
task-o-matic tasks remove-tags --id 7 --tags deprecated
`Options:
-
--id : Task ID (required)
- --tags : Tags to add/remove (comma-separated)---
📋 TASK PLAN COMMANDS
$3
Create detailed implementation plan for a task.
`bash
task-o-matic tasks plan --id 7 --stream
`Options:
-
--id : Task or subtask ID (required)
- --stream: Show streaming AI output
- --ai-provider : AI provider override
- --ai-model : AI model override
- --ai-key : AI API key override
- --ai-provider-url : AI provider URL override
- --reasoning : Enable reasoning$3
List all available implementation plans.
`bash
task-o-matic tasks list-plan
`$3
View existing implementation plan.
`bash
task-o-matic tasks get-plan --id 7
`Options:
-
--id : Task or subtask ID (required)$3
Set implementation plan for a task.
`bash
Set from text
task-o-matic tasks set-plan --id 7 --plan "Step 1: Setup\nStep 2: Implement\nStep 3: Test"Set from file
task-o-matic tasks set-plan --id 7 --plan-file ./plans/implementation.md
`Options:
-
--id : Task ID (required)
- --plan : Plan content
- --plan-file : Path to file containing plan$3
Delete implementation plan.
`bash
task-o-matic tasks delete-plan --id 7
`Options:
-
--id : Task ID (required)---
📄 TASK DOCUMENTATION COMMANDS
$3
Analyze and fetch documentation for a task using AI with Context7.
`bash
task-o-matic tasks document --task-id 7 --force --stream
`Options:
-
--task-id : Task ID (required)
- --force: Force refresh documentation even if recent
- --stream: Show streaming AI output
- --ai-provider : AI provider override
- --ai-model : AI model override
- --ai-key : AI API key override
- --ai-provider-url : AI provider URL override
- --reasoning : Enable reasoning$3
Add documentation to a task from a file.
`bash
task-o-matic tasks add-documentation --id 7 --doc-file ./docs/api.md
`Options:
-
--id : Task ID (required)
- --doc-file : Path to documentation file (required)
- --overwrite: Overwrite existing documentation$3
Get existing documentation for a task.
`bash
task-o-matic tasks get-documentation --id 7
`Options:
-
--id : Task ID (required)---
📋 PRD COMMANDS
$3
Generate PRD(s) from a product description.
`bash
Single PRD generation
task-o-matic prd create "Build a vault management system" --streamMulti-AI PRD generation
task-o-matic prd create "Build a vault manager" \
--ai "anthropic:claude-3.5-sonnet,openai:gpt-4o,openrouter:qwen-2.5" \
--combine-ai anthropic:claude-3.5-sonnet \
--streamCustom output directory
task-o-matic prd create "Survival tracking app" \
--output-dir ./prds \
--ai-reasoning 5000
`Options:
-
: Product description (required)
- --ai : AI model(s) to use
- --combine-ai : AI model to combine multiple PRDs
- --output-dir : Directory to save PRDs
- --ai-reasoning : Enable reasoning for OpenRouter models
- --stream: Enable streaming output$3
Combine multiple PRD files into a master PRD.
`bash
task-o-matic prd combine \
--files ./prds/prd1.md,./prds/prd2.md \
--description "Original vault manager description" \
--output ./prd-master.md \
--stream
`Options:
-
--files : PRD files to combine (required)
- --description : Original product description
- --ai : AI model to use
- --output : Output file path
- --ai-reasoning : Enable reasoning
- --stream: Enable streaming$3
Parse a PRD file into structured tasks.
`bash
Basic parsing
task-o-matic prd parse --file requirements.md --streamMulti-AI parsing
task-o-matic prd parse --file requirements.md \
--ai "anthropic:claude-3.5-sonnet,openai:gpt-4o" \
--combine-ai anthropic:claude-3.5-sonnet \
--streamWith custom prompt
task-o-matic prd parse --file requirements.md \
--prompt "Focus on security features" \
--tools
`Options:
-
--file : Path to PRD file (required)
- --ai : AI model(s) to use
- --combine-ai : AI model to combine results
- --prompt : Override prompt
- --message : User message
- --ai-provider : AI provider override
- --ai-model : AI model override
- --ai-key : AI API key override
- --ai-provider-url : AI provider URL override
- --ai-reasoning : Enable reasoning
- --stream: Show streaming AI output
- --tools: Enable filesystem tools$3
Rework a PRD based on user feedback.
`bash
task-o-matic prd rework \
--file requirements.md \
--feedback "Add more security protocols and emergency procedures" \
--output ./reworked-prd.md \
--stream
`Options:
-
--file : Path to PRD file (required)
- --feedback : User feedback (required)
- --output : Output file path
- --prompt : Override prompt
- --message : User message
- --ai-provider : AI provider override
- --ai-model : AI model override
- --ai-key : AI API key override
- --ai-provider-url : AI provider URL override
- --ai-reasoning : Enable reasoning
- --stream: Show streaming AI output
- --tools: Enable filesystem tools$3
Generate clarifying questions for a PRD.
`bash
task-o-matic prd question --file requirements.md --output ./questions.json --stream
`Options:
-
--file : Path to PRD file (required)
- --output : Output JSON file path
- --prompt : Override prompt
- --message : User message
- --ai-provider : AI provider override
- --ai-model : AI model override
- --ai-key : AI API key override
- --ai-provider-url : AI provider URL override
- --ai-reasoning : Enable reasoning
- --stream: Show streaming AI output
- --tools: Enable filesystem tools$3
Refine PRD by answering clarifying questions.
`bash
AI answers questions
task-o-matic prd refine --file requirements.md --question-mode ai --streamUser answers questions
task-o-matic prd refine --file requirements.md \
--questions ./questions.json \
--question-mode user \
--stream
`Options:
-
--file : Path to PRD file (required)
- --questions : Path to questions JSON file
- --output : Output file path
- --prompt : Override prompt
- --message : User message
- --ai-provider : AI provider override
- --ai-model : AI model override
- --ai-key : AI API key override
- --ai-provider-url : AI provider URL override
- --ai-reasoning : Enable reasoning
- --stream: Show streaming AI output
- --tools: Enable filesystem tools$3
Suggest optimal technology stack based on PRD analysis.
`bash
Analyze from file
task-o-matic prd get-stack --file requirements.md --save --jsonAnalyze from content
task-o-matic prd get-stack --content "Vault management system" --project-name vault-manager
`Options:
-
--file : Path to PRD file
- --content : PRD content as string
- --project-name : Project name
- --save: Save suggested stack to .task-o-matic/stack.json
- --output : Custom output path
- --json: Output result as JSON
- --prompt : Override prompt
- --message : User message
- --ai-provider : AI provider override
- --ai-model : AI model override
- --ai-key : AI API key override
- --ai-provider-url : AI provider URL override
- --ai-reasoning : Enable reasoning
- --stream: Show streaming AI output
- --tools: Enable filesystem tools$3
Generate a PRD from an existing codebase (reverse-engineering).
`bash
task-o-matic prd generate --output ./generated-prd.md --stream --tools
`Options:
-
--output : Output filename
- --ai : AI model to use
- --ai-reasoning : Enable reasoning
- --stream: Enable streaming output
- --tools: Enable filesystem tools for deeper analysis
- --json: Output result as JSON---
🔄 WORKFLOW COMMAND
$3
Interactive workflow for complete project setup and task management.
`bash
Interactive with streaming
task-o-matic workflow --streamFully automated
task-o-matic workflow \
--project-name my-saas-app \
--project-description "Team collaboration platform" \
--init-method ai \
--prd-method ai \
--prd-description "Real-time chat and file sharing" \
--refine-feedback "Add security details" \
--generate-instructions "Break into 2-4 hour tasks" \
--split-all \
--auto-accept \
--stream
`Major Options:
Initialization:
-
--stream: Show streaming AI output
- --auto-accept: Auto-accept all AI suggestions
- --skip-all: Skip all optional steps
- --skip-init: Skip initialization step
- --project-name : Project name
- --init-method : Initialization method (quick, custom, ai)
- --project-description : Project description
- --use-existing-config: Use existing configurationBootstrap:
-
--frontend : Frontend framework
- --backend : Backend framework
- --database : Database choice
- --auth/--no-auth: Include/exclude authentication
- --bootstrap/--no-bootstrap: Bootstrap projectPRD:
-
--skip-prd: Skip PRD definition
- --prd-method : PRD method (file, manual, ai)
- --prd-file : Path to existing PRD
- --prd-description : Product description
- --prd-content : Direct PRD content
- --prd-multi-generation: Generate multiple PRDs
- --skip-prd-multi-generation: Skip multi-generation
- --prd-multi-generation-models : Models for multi-generation
- --prd-combine/--skip-prd-combine: Combine generated PRDs
- --prd-combine-model : Model for combiningStack Suggestion:
-
--skip-stack-suggestion: Skip stack suggestion
- --suggest-stack-from-prd [path]: Get stack from PRDPRD Refinement:
-
--skip-prd-question-refine: Skip PRD question/refine
- --prd-question-refine: Use question-based refinement
- --prd-answer-mode : Who answers questions
- --prd-answer-ai-provider : AI provider for answering
- --prd-answer-ai-model : AI model for answering
- --prd-answer-ai-reasoning: Enable reasoning for AI answeringTask Generation:
-
--skip-generate: Skip task generation
- --generate-method : Generation method
- --generate-instructions : Custom task generation instructionsTask Splitting:
-
--skip-split: Skip task splitting
- --split-tasks : Task IDs to split
- --split-all: Split all tasks
- --split-method : Split method
- --split-instructions : Custom split instructionsExecution:
-
--execute: Execute generated tasks
- --execute-concurrency : Number of concurrent tasks
- --no-auto-commit: Disable auto-commit
- --execute-tool : Executor tool
- --execute-model : Model override for execution
- --execute-max-retries : Max retries per task
- --execute-plan: Enable planning phase
- --execute-plan-model : Model for planning
- --execute-review: Enable review phase
- --execute-review-model : Model for review
- --verify : Verification command
- --validate : Alias for --verify
- --try-models : Progressive model/executor configs---
⚙️ CONFIGURATION COMMANDS
$3
Get the current AI configuration.
`bash
task-o-matic config get-ai-config
`$3
Set the AI provider and model.
`bash
Set Anthropic
task-o-matic config set-ai-provider anthropic claude-3-5-sonnetSet OpenAI
task-o-matic config set-ai-provider openai gpt-4Set OpenRouter
task-o-matic config set-ai-provider openrouter anthropic/claude-3.5-sonnetSet custom
task-o-matic config set-ai-provider custom custom-model --api-url https://api.custom.com/v1
`$3
Get information about the current task-o-matic project.
`bash
task-o-matic config info
`---
🧪 BENCHMARK COMMANDS
$3
Run a benchmark on specific operations.
`bash
Benchmark PRD parsing
task-o-matic benchmark run prd-parse \
--file requirements.md \
--models "openai:gpt-4o,anthropic:claude-3-5-sonnet" \
--concurrency 3Benchmark task breakdown
task-o-matic benchmark run task-breakdown \
--task-id 7 \
--models "openai:gpt-4o,anthropic:claude-3-5-sonnet" \
--concurrency 2
`Options:
-
--models : Comma-separated list of models (required)
- --concurrency : Max concurrent requests (default: 3)
- --delay : Delay between requests in ms
- Additional options specific to each operation$3
Run execution benchmark with Git branch isolation.
`bash
task-o-matic benchmark execution \
--task-id 7 \
--models "openai:gpt-4o,anthropic:claude-3-5-sonnet" \
--verify "bun test" \
--max-retries 3
`Options:
-
--task-id : Task ID to benchmark (required)
- --models : Comma-separated list of models (required)
- --verify : Verification command
- --max-retries : Maximum retries per model
- --no-keep-branches: Delete benchmark branches$3
Benchmark task loop execution across models.
`bash
task-o-matic benchmark execute-loop \
--status todo \
--models "openai:gpt-4o,anthropic:claude-3-5-sonnet" \
--verify "bun test" \
--max-retries 3
`Options:
-
--status : Filter tasks by status
- --tag : Filter tasks by tag
- --ids : Comma-separated list of task IDs
- --models : Comma-separated list of models (required)
- --verify : Verification command
- --max-retries : Maximum retries per task
- --try-models : Progressive model/executor configs
- --no-keep-branches: Delete benchmark branches$3
Benchmark complete workflow execution across multiple models.
`bash
task-o-matic benchmark workflow \
--models "openai:gpt-4o,anthropic:claude-3-5-sonnet" \
--concurrency 2 \
--delay 2000 \
--execute \
--skip-all
`Options:
All workflow options plus:
-
--models : Comma-separated list of models (required)
- --concurrency : Max concurrent requests (default: 3)
- --delay : Delay between requests (default: 1000)$3
List all benchmark runs.
`bash
task-o-matic benchmark list
`$3
Show details of a benchmark run.
`bash
task-o-matic benchmark show
`$3
Compare benchmark results.
`bash
task-o-matic benchmark compare
`$3
List all available benchmark operations.
`bash
task-o-matic benchmark operations
`---
🔍 DETECT COMMAND
$3
Detect technology stack of the current project.
`bash
Auto-detect and save
task-o-matic detect --saveOutput as JSON
task-o-matic detect --json
`Options:
-
--save: Save detected stack to .task-o-matic/stack.json
- --json: Output result as JSON---
📈 CONTINUE COMMAND
$3
Continue working on an existing project.
`bash
Show project status
task-o-matic continue --statusAdd new feature to PRD
task-o-matic continue --add-feature "Emergency notification system"Update PRD with progress
task-o-matic continue --update-prdGenerate tasks for unimplemented features
task-o-matic continue --generate-tasksGenerate implementation plan for remaining work
task-o-matic continue --generate-plan
`Options:
-
--status: Show project status overview
- --add-feature : Add a new feature to the PRD
- --update-prd: Update PRD with implementation progress
- --generate-tasks: Generate tasks for unimplemented features
- --generate-plan: Generate implementation plan for remaining work---
💬 PROMPT COMMAND
$3
Build AI service prompts with variable replacement for external tools.
`bash
List available prompts
task-o-matic prompt --listGet PRD parsing prompt
task-o-matic prompt prd-parsing --prd-file ./requirements.mdGet task enhancement prompt with full context
task-o-matic prompt task-enhancement \
--task-file ./tasks/7.md \
--full-context \
--executor opencodeGet prompt metadata
task-o-matic prompt --metadata prd-parsing
`Options:
-
: Prompt name (e.g., prd-parsing, task-enhancement)
- --type : Prompt type (system or user, default: user)
- --list: List all available prompts
- --metadata : Show metadata for a specific prompt
- --prd-content : PRD content
- --prd-file : Load PRD content from file
- --task-title : Task title
- --task-description : Task description
- --task-file : Load task description from file
- --stack-info : Technology stack information
- --context-info : Additional context information
- --user-feedback : User feedback