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
- Create a project with
projects.create()to group related work. - Create a task with
tasks.create()— attach it to the project withprojectIdand assign an agent withassignedTo. - Start work with
tasks.dispatch(), which resolves with the run executing the task. - Follow the run live with run streaming.
- For recurring work, define a schedule with
automations.create()— it creates a fresh task each time it fires.