Work Catalog discovery is automatic in CLI/MCP 0.23.0+ and SDK 0.21.0+.
Every covered synchronized response includes
sync.workCatalog. When the
catalog is missing, provisional work is accumulating, or a proposed
definition needs approval, sync.recommendations and sync.nextOperations
tell the agent what to inspect next. The user does not need to know that a
catalog must be configured or ask the agent to set one up.The catalog is job data, not a platform enum
A definition describes one reusable unit of work for this job. It can include:- a job-defined key, label, and description;
- the platform records the work refers to, expressed as named target roles;
- which target roles make two executions the same atomic work;
- optional exclusive scopes that prevent unsafe overlap;
- optional job-defined phases; and
- the claim lease and renewal cadence appropriate for that work.
Agents learn the catalog during real work
When no active definition exists, the synchronized response reports the catalog as unconfigured and recommends the guided Work Catalog flow.1
One agent wins the setup lease
The agent declares the shared
ops:work-catalog-setup intent. If another
session already owns it, the duplicate result names that owner and the new
agent stands down. Knowing an intent ID does not transfer ownership; the
current durable agent session must match the lease.2
Observe work without inventing a type
The winning agent inspects the job’s current operations and records
genuinely occurring ad hoc work as provisional executions. A provisional
execution coordinates the immediate work and preserves evidence, but it is
not an approved reusable definition.
3
Propose recurring atomic work
When provisional work reveals a recurring pattern, the agent proposes a
definition from that evidence. The proposal has
INFERRED authority and
remains inactive.4
A job manager reviews the complete semantics
The responsible human reviews the definition, its target grammar, identity
roles, scopes, phases, lease, and possible-duplicate comparisons. OpenTrain
never treats similar wording as proof that two work types are equivalent.
5
Approve and activate
A non-agent job manager records an attributed approval for the exact
content and coordination digests. The agent appends the immutable
DECIDED successor, activates that version, verifies the shared context,
and resolves the setup intent.Every execution has one claim authority
Beginning defined or provisional work creates one work execution and one coordinating Job Operations action. The action claim is the single ownership authority. Before acting, an agent:- reads the current definition or provisional execution;
- begins the work with the exact current definition binding when applicable;
- claims the coordinating action;
- rechecks the canonical record or conversation immediately before a consequential write;
- renews the claim before a long-running lease expires; and
- completes, cancels, or hands off the work with a verified outcome.
Coordination modes stay flexible
An attributedWORK_COORDINATION_MODE policy controls how strongly one job uses the catalog:
Only a non-agent human job manager can change this policy. If its current lineage is missing after prior revisions, branched, or unreadable, guarded writes fail closed instead of silently reverting to
OPEN.
The current guarded surface is documented by capability discovery. Do not assume that a coordination mode governs an operation whose syncCoverage reports none.
Different managers can propose different workflows
The Work Catalog does not force one agent’s private preferences on the team.- Use a claim for shared work that already exists.
- Use a write-ahead intent before spontaneous work so an overlap returns the current owner.
- Use a reviewable proposal when a manager wants a different work definition, workflow, priority, or policy. Acceptance records agreement but never executes a hidden change.
- Use TEAM, PERSONAL, and SESSION overlays for guidance at the correct scope. Overlay text is attributed and cannot override policy, readiness, or work-definition authority.
External state is unknown unless it is current
OpenTrain cannot directly verify every browser edit, spreadsheet, ticket, chat, or third-party project. The catalog therefore treats external state as unknown unless a current external attestation covers it. Record an external attestation as anOBSERVED Job Operations observation using the top-level externalAttestation field:
ATTESTrecords the source system, optional locator and subject, bounded claim, observation time, and required expiry;- a later
ATTESTcan supersede the current attestation for the same source and subject; and INVALIDATEretires a named attestation with an attributed source, reason, and time.
The employer workspace is optional
The employer Agent Guide tab presents the same catalog in its Work Catalog and Command Center sections: definitions, proposed definitions, duplicate-review decisions, open work, and expired claims for humans who prefer a UI. It is a projection of the shared Job Operations records, not a second source of truth. See Agent Guide workspace. The UI is optional and may be rollout-gated. CLI, MCP, SDK, REST, automatic synchronization, and the Agent Guide remain the primary agent control plane. Agent workflows must not depend on the Agent Guide tab being enabled.Related
Shared Job Context
Understand the complete evidence, policy, priority, and synchronization plane.
Agent Guide
Where the Work Catalog appears alongside typed policies and the human-published Playbook.
Manage a Live Job
Follow the context-first read, claim, recheck, mutate, verify, and handoff loop.
CLI: Shared Job Context
Use
opentrain manager work and the automatically synchronized manager commands.MCP: Shared Job Context
Use the Work Catalog, action, intent, policy, and attestation tools from an MCP agent.