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
117 changes: 117 additions & 0 deletions apps/meeting-notes/app.manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
{
"app_id": "meeting-notes",
"version": "1.0.0",
"schema_version": "1.0.0",
"workspace_defaults": {
"workspace_id": "local-default",
"registry_scope": "private"
},
"components": [
{
"component_id": "meeting-notes.process-component",
"version": "1.0.0",
"digest": "sha256:5647c39a1d25d8728350f9619025292a62e78a602068a2ad9b6f075751c93d99",
"manifest_path": "components/process/component.manifest.json"
}
],
"workflows": [
{
"workflow_id": "meeting-notes.process",
"workflow_version": "1.0.0",
"path": "../../workflows/examples/meeting-notes/process/workflow.json"
}
],
"model_dependencies": [],
"config_schema": {
"type": "object",
"required": [
"workspace_id"
],
"properties": {
"workspace_id": {
"type": "string"
},
"processing_mode": {
"type": "string",
"enum": [
"deterministic"
]
}
},
"additionalProperties": false
},
"default_config": {
"workspace_id": "local-default",
"processing_mode": "deterministic"
},
"placement_policy": {
"preferred_targets": [
"local"
],
"allow_fallback": false
},
"public_surfaces": [
"cli",
"http_json"
],
"state_machine": {
"initial_state": "idle",
"list_context_fields": [
"output.action_items",
"output.decisions",
"output.follow_ups",
"output.summary"
],
"states": [
{
"id": "idle",
"transitions": [
{
"on": "submit",
"to": "processing"
}
]
},
{
"id": "processing",
"invoke": {
"capability_id": "meeting-notes.process",
"input_from": "command.payload"
},
"transitions": [
{
"on": "capability_succeeded",
"to": "results"
},
{
"on": "capability_failed",
"to": "error"
}
]
},
{
"id": "results",
"transitions": [
{
"on": "reset",
"to": "idle"
}
]
},
{
"id": "error",
"transitions": [
{
"on": "retry",
"to": "processing",
"with_last_payload": true
},
{
"on": "reset",
"to": "idle"
}
]
}
]
}
}
28 changes: 28 additions & 0 deletions apps/meeting-notes/components/process/component.manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"component_id": "meeting-notes.process-component",
"version": "1.0.0",
"schema_version": "1.0.0",
"capability_id": "meeting-notes.process",
"capability_version": "1.0.0",
"contract_path": "../../../../contracts/examples/meeting-notes/capabilities/process/contract.json",
"wasm_binary_path": "../../../../examples/meeting-notes/process-agent/artifacts/process-agent.wasm",
"wasm_digest": "sha256:5647c39a1d25d8728350f9619025292a62e78a602068a2ad9b6f075751c93d99",
"runtime_constraints": {
"host_api_access": "none",
"network_access": "forbidden",
"filesystem_access": "none"
},
"permitted_targets": [
"local",
"device"
],
"dependencies": [],
"connector_requirements": [],
"validation_evidence": [
{
"evidence_type": "checked_in_fixture",
"status": "passed",
"produced_by": "meeting_notes_example_smoke"
}
]
}
168 changes: 168 additions & 0 deletions contracts/examples/meeting-notes/capabilities/process/contract.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,168 @@
{
"kind": "capability_contract",
"schema_version": "1.0.0",
"id": "meeting-notes.process",
"namespace": "meeting-notes",
"name": "process",
"version": "1.0.0",
"lifecycle": "active",
"owner": {
"team": "traverse-core",
"contact": "enrico.piovesan10@gmail.com"
},
"summary": "Extract deterministic structured meeting notes from one transcript.",
"description": "Reference app capability for meeting notes that extracts action items, decisions, follow-ups, and summary fields without model inference.",
"inputs": {
"schema": {
"type": "object",
"required": [
"transcript"
],
"properties": {
"transcript": {
"type": "string"
}
},
"additionalProperties": false
}
},
"outputs": {
"schema": {
"type": "object",
"required": [
"action_items",
"decisions",
"follow_ups",
"summary"
],
"properties": {
"action_items": {
"type": "array",
"items": {
"type": "object",
"required": [
"task",
"owner",
"due"
],
"properties": {
"task": {
"type": "string"
},
"owner": {
"type": [
"string",
"null"
]
},
"due": {
"type": [
"string",
"null"
]
}
},
"additionalProperties": false
}
},
"decisions": {
"type": "array",
"items": {
"type": "object",
"required": [
"text",
"made_by"
],
"properties": {
"text": {
"type": "string"
},
"made_by": {
"type": [
"string",
"null"
]
}
},
"additionalProperties": false
}
},
"follow_ups": {
"type": "array",
"items": {
"type": "string"
}
},
"summary": {
"type": "string"
}
},
"additionalProperties": false
}
},
"preconditions": [
{
"id": "transcript-provided",
"description": "The caller provides a transcript string. Empty transcripts are accepted and produce empty collections."
}
],
"postconditions": [
{
"id": "structured-meeting-notes-produced",
"description": "The capability returns deterministic structured meeting-note fields for the provided transcript."
}
],
"side_effects": [
{
"kind": "memory_only",
"description": "Produces deterministic meeting-note metadata from the provided input."
}
],
"emits": [],
"consumes": [],
"permissions": [
{
"id": "meeting-notes.process"
}
],
"execution": {
"binary_format": "wasm",
"entrypoint": {
"kind": "wasi-command",
"command": "run"
},
"preferred_targets": [
"local"
],
"constraints": {
"host_api_access": "none",
"network_access": "forbidden",
"filesystem_access": "none"
}
},
"policies": [
{
"id": "manual-approval-required"
}
],
"dependencies": [],
"provenance": {
"source": "greenfield",
"author": "enricopiovesan",
"created_at": "2026-07-07T00:00:00Z",
"spec_ref": "044-application-bundle-manifest@1.0.0",
"adr_refs": [
"0001-rust-wasm-foundation"
],
"exception_refs": []
},
"evidence": [],
"service_type": "stateless",
"permitted_targets": [
"local",
"cloud",
"edge",
"device"
],
"artifact_type": "native"
}
Loading
Loading