tasq
Universal coordination kernel

The shared truth between agents.

Tasq gives humans, agents and runtimes one durable ledger for what is owed, who owns it, what happened and what proves it is done.

Public source alpha. Packages and downloadable releases are not published.

coordination / live modellocal
planner
builder
human
shared ledgertasq
commitmentclaimattemptevidence
01

Stop losing the thread

Commitments, owners, attempts and evidence survive model changes, process crashes and handoffs.

02

Make ownership explicit

Expiring claims and monotone fences prevent two workers from quietly acting as the current owner.

03

Keep authority separate

An agent can propose, execute and report without silently granting itself permission or completion.

The irreducible loop

Execution happened.
Did the outcome?

Most task protocols collapse intent, execution and completion. Tasq keeps them separate, so every handoff has an inspectable basis.

01Commitment

The outcome still owed

02Claim

Temporary right to work

03Attempt

One execution, not the goal

04Evidence

The basis for a decision

05Completion

Explicit and auditable

agent bootstrap
$ tasq onboard \
+  --space robotics/team-a \
+  --actor agent:planner \
+  --json

{
  "contractVersion": "tasq.onboarding.v1",
  "workspace": "robotics/team-a",
  "capabilities": ["read", "propose", "coordinate"],
  "recipes": { "read": ["tasq", "context", "--json"] }
}

Clean boundaries

Own the truth.
Not the whole stack.

Tasq is deliberately headless. Your models, workflows and providers stay replaceable because Core owns only coordination state.

01Agent runtime

Reasoning, tools, execution

02Policy

Priority and domain decisions

03Connector

Provider credentials and I/O

04Tasq kernel

Durable coordination truth

No stored code Injected clock No provider ontology

One product, four shapes

Use what exists.
See what does not.

Every status below comes from the versioned product matrix. A designed server never masquerades as a shipped endpoint.

ShapeStatusWhat it isEntrypoints
Tasq CoreIntegrationEmbedded TypeScript kernelembedded_typescript · extension_sdk · protocol_adapters · replication_kernel
Tasq LocalCertifiedCLI, stdio MCP and read-only Consolecli_json · mcp_stdio · local_console · markdown_projection
Tasq ServerNot builtAuthenticated self-hosted network productnone
Tasq CloudDesignedManaged Tasq Server operationnone

Today: Local behavior is certified, but the first protected release is still waiting on registry authority.

Inspect product truth

Start local

Give your agents something durable to agree on.

Build from the canonical source, create one workspace and connect the first independent actor.

Read the local guide