AnyTask CLI - Complete Command Reference
Auto-generated from Typer app introspection. ================================================================================anyt
AnyTask - AI-native task management from the command line Usage:
activeartifactattemptboardcommentgraphhealthinitsummarytasktimelineworker
anyt active
Show the currently active task. Usage:
anyt artifact
Manage workflow execution artifacts Usage:
download
anyt artifact download
Download artifact content. Usage:
anyt attempt
Manage workflow execution attempts Usage:
listshow
anyt attempt list
List all attempts for a task. Usage:
anyt attempt show
Show attempt details and artifacts. Usage:
anyt board
Display tasks in a Kanban board view. Usage:
anyt comment
Manage task comments Usage:
addlist
anyt comment add
Add a comment to a task. Examples:
Add comment to active task
anyt comment add -m “Completed implementation”Add comment to specific task
anyt comment add DEV-123 -m “Found edge case” Usage:anyt comment list
List all comments on a task. Examples:
List comments on active task
anyt comment listList comments on specific task
anyt comment list DEV-123JSON output
anyt comment list DEV-123 —json Usage:anyt graph
Visualize task dependencies as ASCII art or DOT format. Usage:
anyt health
Check backend server health Usage:
check
anyt health check
Check if the AnyTask backend server is healthy. Calls the /health endpoint on the configured API server and displays the server status. Examples: anyt health # Check current environment anyt health check # Explicit check command Usage:
anyt init
Initialize AnyTask in the current directory. Requires ANYT_API_KEY environment variable to be set. Creates .anyt/ directory structure and anyt.json configuration. Examples: export ANYT_API_KEY=anyt_agent_… anyt init # Interactive workspace selection anyt init —workspace-id 123 —identifier DEV # Link to specific workspace Usage:
anyt summary
Generate workspace summary with done, active, blocked, and next priorities. Usage:
anyt task
Manage tasks Usage:
addbulk-updatecreatedepdoneeditlistnotepickrmshareshowsuggest
anyt task add
Create a new task. Usage:
anyt task bulk-update
Update multiple tasks at once. Examples: anyt task bulk-update DEV-1,DEV-2,DEV-3 —status in_progress anyt task bulk-update DEV-4,DEV-5 —priority 2 anyt task bulk-update DEV-6,DEV-7,DEV-8 —assignee john —yes anyt task bulk-update DEV-9,DEV-10 —status todo —priority 1 Usage:
anyt task create
Create a new task from a template. Opens the template in your editor ($EDITOR) for customization before creating the task. The template content will be stored in the task’s description field. Usage:
anyt task dep
Manage task dependencies Usage:
addlistrm
anyt task dep add
Add dependency/dependencies to a task. Usage:
anyt task dep list
List task dependencies and dependents. Usage:
anyt task dep rm
Remove dependency/dependencies from a task. Usage:
anyt task done
Mark one or more tasks as done. Optionally add a completion note to the task’s Events section. Usage:
anyt task edit
Edit a task’s fields. Usage:
anyt task list
List tasks with filtering. Usage:
anyt task note
Add a timestamped note/event to a task’s description. DEPRECATED: Use ‘anyt comment add’ instead for better structure and timestamps. The note will be appended to the Events section of the task description with a timestamp. Usage:
anyt task pick
Pick a task to work on (sets as active task). If identifier is provided, picks that specific task. Otherwise, shows an interactive picker to select a task. Usage:
anyt task rm
Delete one or more tasks (soft delete). Usage:
anyt task share
Generate a shareable link for a task. Creates a public URL that can be shared with anyone who has access to the task. The link uses the task’s UID for global accessibility. Usage:
anyt task show
Show detailed information about a task. Supports both workspace-scoped identifiers (DEV-42) and UIDs (t_1Z). Usage:
anyt task suggest
Suggest tasks to work on next based on priority and dependencies. Uses the backend’s suggestion algorithm to recommend tasks that are ready to work on (all dependencies complete). Results are sorted by priority. By default, only shows unassigned tasks. Use —include-assigned to see tasks that are already assigned. Usage:
anyt timeline
Show chronological timeline of task events, attempts, and artifacts. Usage:
anyt worker
Automated task worker commands Usage:
list-workflowssecretstartvalidate-workflow
anyt worker list-workflows
List available workflows. Usage:
anyt worker secret
Manage workflow secrets Usage:
deletegetsettest
anyt worker secret delete
Delete a secret from the keyring. Example: anyt worker secret delete OLD_API_KEY anyt worker secret delete OLD_API_KEY —yes Usage:
anyt worker secret get
Retrieve a secret from the keyring. By default, the secret value is masked. Use —show to display it. Example: anyt worker secret get API_KEY anyt worker secret get API_KEY —show Usage:
anyt worker secret set
Store a secret securely in the system keyring. If value is not provided, you will be prompted to enter it securely. Example: anyt worker secret set PRODUCTION_API_KEY —value abc123 anyt worker secret set DB_PASSWORD # Will prompt Usage:
anyt worker secret test
Test secret interpolation with a sample text. This is useful for verifying your secrets are configured correctly. Example:
anyt worker start
Start the Claude task worker. The worker continuously polls for tasks and executes workflows automatically. Setup:
- Set ANYT_API_KEY environment variable for API authentication
- Get your agent identifier from https://anyt.dev/home/agents
- Pass agent identifier via —agent-id flag
- ANYT_API_KEY: API key for authentication (e.g., anyt_agent_…)
- agent-id: Agent identifier to filter tasks (e.g., agent-xxx)
- No options: Runs ALL workflows from .anyt/workflows/
- —workflow local_dev: Runs ONLY local_dev workflow (from package or workspace)
- —workflows-dir /custom: Runs ALL workflows from /custom directory
- —workflow local_dev —workflows-dir /custom: Runs ONLY local_dev from /custom
- local_dev: Direct implementation on current repository
- feature_development: Full feature workflow with branch management
- general_task: General-purpose task execution
anyt worker validate-workflow
Validate a workflow definition. Usage: