SSyncropel Docs

Your First Task

Create a task with success criteria, complete it, and see trust evidence accumulate.

What you'll learn

Tasks in Syncropel are more than work items — they carry a hypothesis and success criteria. When a task completes and is reviewed, the outcome feeds into trust scores that improve future work.

Create a task

spl task add "Add input validation to the signup form" \
  --priority high \
  --label code

The output shows a thread ID and an alias (like TASK-0001) that you can use as a shorthand.

View your tasks

spl task list
ID           STATUS   PRI    GOAL                                    ASSIGN
TASK-0001     inbox    high   Add input validation to the signup...   —

The task starts in inbox status — it exists but nobody has started working on it.

Start working

spl task start TASK-0001

Status changes to active. This records that work has begun.

Complete the task

When the work is done, mark it complete with a summary:

spl task done TASK-0001 --summary "Added email format and password length validation" --domain code

Status changes to review — the task is claimed complete but hasn't been independently verified yet.

Review and approve

An independent reviewer confirms the work meets the criteria:

spl task approve TASK-0001 --domain code --notes "Validation logic verified, tests pass"

Status changes to approved. This creates a trust observation — evidence that the work was completed successfully in the code domain.

See trust grow

spl trust
ACTOR                   DOMAIN    SUCCESS   TOTAL   TRUST
did:sync:user:you       code            1       1   0.246

Each approved task adds evidence. Over time, trust scores reflect real track records — not opinions or permissions.

What's next

On this page