SEA™’s case-based PM adapts CMMN (Case Management Model and Notation) for knowledge-intensive work. Unlike prescriptive workflows (Waterfall/Agile), cases enable discretionary, event-driven orchestration with AI agent support.
Actionable: Each section answers “How do I manage knowledge work?” with CMMN primitives, artifact pipelines, and PM-Agent integration.
| Primitive | Description | SEA™ Mapping | Example |
|---|---|---|---|
| Case | Container for related work | Aggregate Root | Research project, consulting engagement |
| Stage | Phase with entry/exit criteria | Entity | Literature review, analysis, delivery |
| Task | Unit of work (mandatory/discretionary) | Entity | Write spec, conduct interview, review draft |
| Sentry | Event-driven activation condition | Policy | “All interviews complete” → Analysis stage |
| Milestone | Completion marker | Value Object | “Hypothesis validated”, “Client approved” |
| CaseFile | Artifact collection | Value Object | Notes, specs, deliverables |
1
2
3
4
5
6
7
Created → Active → Completed/Terminated
↓
Stages (parallel/sequential)
↓
Tasks (mandatory + discretionary)
↓
Sentries (entry/exit gates)
Mandatory Tasks: Must execute (e.g., “Submit final report”)
Discretionary Tasks: Activate based on events (e.g., “Additional research” if hypothesis unclear)
1
2
3
4
5
6
7
8
9
10
11
12
13
┌─────────────────────────────────────────────────────────────────┐
│ ARTIFACT PIPELINE │
├─────────────────────────────────────────────────────────────────┤
│ │
│ Cognitive Artifacts (notes, sketches) │
│ ↓ Synthesis │
│ Intellectual Artifacts (specs, SOPs, concepts) │
│ ↓ Refinement │
│ Information Products (software, campaigns, reports) │
│ ↓ Capitalization │
│ Intellectual Capital (enterprise assets, reusable IP) │
│ │
└─────────────────────────────────────────────────────────────────┘
| Stage | Purpose | Examples | Retention |
|---|---|---|---|
| Cognitive | Reduce mental load | Meeting notes, whiteboard photos | Ephemeral |
| Intellectual | Synthesize knowledge | ADRs, PRDs, SOPs | Project lifetime |
| Product | Deliver value | Deployed code, client reports | Indefinite |
| Capital | Organizational asset | Reusable templates, proven methodologies | Permanent |
Every artifact progression generates a TransitionToken:
Flow "Synthesis" from "CognitiveArtifact" to "IntellectualArtifact"
@rationale "Raw notes become formal specifications"
Provenance Gating: No artifact can skip stages (“teleportation” prevented).
The Project Manager Agent is a built-in AI conductor that:
| Member Type | Role | Examples |
|---|---|---|
| Human | Strategic intent, judgment, oversight | Principal investigator, creative director |
| AI (G3) | Specialized execution | Literature summarizer, code generator |
| PM-Agent | Coordination, orchestration | Task assignment, sentry evaluation |
1
2
3
4
5
1. Identify available tasks (sentries satisfied)
2. Match task requirements to member capabilities
3. Check SDS-031 authority rules
4. Assign to qualified member
5. Log assignment to IFL
Steps:
Example (Research Case):
1
2
3
4
5
Case: "Evaluate ML Framework Performance"
Desired Outcome: "Comparative analysis with recommendations"
Template: research_case_pattern
Initial Stage: Literature Review
PM-Agent Context: ML frameworks, performance metrics
Entry Sentry: Condition to activate stage
Exit Sentry: Condition to complete stage
Example:
1
2
3
Stage: Analysis
Entry Sentry: "All data collected AND quality validated"
Exit Sentry: "Findings documented AND peer reviewed"
Mandatory: Automatically active when stage starts
Discretionary: PM-Agent activates based on events
Example:
1
2
Mandatory: "Conduct statistical analysis"
Discretionary: "Additional data collection" (if initial results inconclusive)
| Stage | Tasks | Sentries | Artifacts |
|---|---|---|---|
| Literature Review | Search, summarize, synthesize | Entry: Case created | Cognitive: Notes |
| Hypothesis Formation | Define, validate | Exit: Lit review complete | Intellectual: Hypothesis doc |
| Experiment Design | Plan, review | Entry: Hypothesis approved | Intellectual: Protocol |
| Execution | Run experiments | Exit: Design approved | Cognitive: Raw data |
| Analysis | Process, interpret | Entry: Data collected | Product: Analysis report |
| Synthesis | Conclusions, recommendations | Exit: Analysis complete | Capital: Methodology |
| Stage | Tasks | Sentries | Artifacts |
|---|---|---|---|
| Specification | ADR, PRD, SDS | Entry: Feature request | Intellectual: Specs |
| Design | Architecture, API | Exit: Specs approved | Intellectual: Design docs |
| Implementation | Code, tests | Entry: Design reviewed | Product: Working code |
| Verification | Test, validate | Exit: Code complete | Product: Test results |
| Deployment | Release, monitor | Entry: Tests passing | Capital: Deployed feature |
| Stage | Tasks | Sentries | Artifacts |
|---|---|---|---|
| Discovery | Interviews, research | Entry: Engagement signed | Cognitive: Interview notes |
| Analysis | Synthesize, identify issues | Exit: Discovery complete | Intellectual: Analysis |
| Recommendations | Solutions, roadmap | Entry: Analysis reviewed | Product: Presentation |
| Delivery | Present, refine | Exit: Recommendations approved | Capital: Methodology |
Every state change generates an immutable token:
1
2
3
4
5
6
7
8
9
PlanItemTransitionRecord {
caseId: "case-123"
planItemId: "stage-analysis"
fromState: "Available"
toState: "Active"
timestamp: "2026-01-04T21:00:00Z"
actor: "pm-agent-001"
transitionToken: "tt-abc123"
}
All TransitionTokens logged to Internal Federated Ledger for:
Policy "NoTeleportation" per Constraint Obligation priority 10
@rationale "Artifacts require lineage"
as: forall p in resources where p.name = "ProjectionToken":
exists t in resources where t.name = "TransitionToken"
Policy "SovereignGate" per Constraint Obligation priority 10
@rationale "Capital conversion requires human approval"
as: forall r in flows where r.name = "Capitalization":
exists s in resources where s.name = "SignatureToken"
This handbook delivers a unified, actionable case management system that leverages SEA™’s CMMN implementation. By treating knowledge work as discretionary and event-driven, organizations achieve flexible orchestration, artifact capitalization, and AI-augmented project management.
| Last Updated: January 2026 | Version: 1.0.0 |