Common commands
Last updated: 2025-01-15
•1 min readCommon Commands
Essential commands for the TaskForceAI CLI.
Chat Commands
# Interactive chat
taskforceai chat
# Single message
taskforceai "Your question here"
# Continue previous conversation
taskforceai chat --continue
# Select model
taskforceai chat --model claude-3
Conversation Management
# List conversations
taskforceai conversations list
# Open specific conversation
taskforceai conversations open <id>
# Delete conversation
taskforceai conversations delete <id>
Utility Commands
# Check status
taskforceai status
# View usage
taskforceai usage
# Get help
taskforceai --help
taskforceai chat --help
Piping and Files
# Pipe input
cat file.txt | taskforceai "Summarize this"
# Save output
taskforceai "Write a poem" > poem.txt
# Process files
taskforceai "Review this code" < script.py