Downcity
CommandsPlugin

studio task

Managed task plugin commands for task definition, execution, and automation

studio task

studio task is the managed task plugin command group.

Use it when you want a reusable automation definition instead of a one-shot delayed plugin action.

Usage

studio task <subcommand> [options]

Main subcommands

  • list
  • create
  • run <title>
  • update <title>
  • delete <title>
  • status <title> <enabled|paused|disabled>
  • enable <title>
  • disable <title>

Key boundaries

  • Use studio task for reusable or long-lived automation.
  • Use studio chat --delay/--time or studio memory --delay/--time for one existing action that should happen later once.
  • Task definitions live in project storage and can use @manual, cron, or time:<ISO8601>.

Examples

studio task list
studio task create --title "Daily check" --description "Run tests" --session-id telegram-chat-123 --when "0 10 * * 1-5" --activate
studio task run daily-check
studio task update daily-check --when "@manual"
studio task disable daily-check