skopik

Work

Work is where Skopik turns requests into trackable execution. Projects organize related tasks, tasks describe what should happen, and automations create recurring work.

Sections

Page What it covers
Tasks Create tasks, dispatch them to agents, watch runs live, and track operations.
Projects Organize related tasks into projects.
Automations Create scheduled or triggered task automation.

Common Flow

  1. Create a project with projects.create() to group related work.
  2. Create a task with tasks.create() — attach it to the project with projectId and assign an agent with assignedTo.
  3. Start work with tasks.dispatch(), which resolves with the run executing the task.
  4. Follow the run live with run streaming.
  5. For recurring work, define a schedule with automations.create() — it creates a fresh task each time it fires.