Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions contracts/workspace/professional-workroom.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,29 @@
"semanticReceiptRefs": { "type": "array", "items": { "type": "string" } },
"evidenceRefs": { "type": "array", "items": { "type": "string" } },
"adoptionEventRefs": { "type": "array", "items": { "type": "string" } },
"captureCadence": {
"type": "object",
"additionalProperties": false,
"description": "Governed capture cadence for this objective — the sprint the agentic operating system runs it through. Composes over the canonical sourceos-spec CaptureCadence + ReadinessScore rather than duplicating them; tracks the current position and readiness gate.",
"properties": {
"cadenceRef": {
"type": "string",
"description": "urn:srcos:capture-cadence:… — the canonical cadence definition (weeks, min-readiness gates, exit decisions)."
},
"currentWeek": { "type": "integer", "minimum": 0 },
"minReadiness": {
"type": "number",
"minimum": 0,
"maximum": 1,
"description": "Minimum readiness required to exit the current week's gate."
},
"nextReviewAt": { "type": "string", "description": "ISO-8601 timestamp of the next cadence review." },
"readinessScoreRef": {
"type": "string",
"description": "urn:srcos:readiness-score:… — the current readiness scorecard for this objective."
}
}
},
"tasks": {
"type": "array",
"items": {
Expand Down
7 changes: 7 additions & 0 deletions contracts/workspace/professional-workroom.v0.1.example.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,12 @@
"labels": {
"program": "professional-intelligence-os",
"gate": "gate-3"
},
"captureCadence": {
"cadenceRef": "urn:srcos:capture-cadence:standard-8wk",
"currentWeek": 4,
"minReadiness": 0.5,
"nextReviewAt": "2026-07-11T13:00:00Z",
"readinessScoreRef": "urn:srcos:readiness-score:pi-demo-0001"
}
}
Loading