curl --request POST \
--url https://api.mnemom.ai/v1/protection/agent/{agent_id}/preview-compose \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"card_version": "<string>",
"agent_id": "<string>",
"thresholds": {
"warn": 0.5,
"quarantine": 0.5,
"block": 0.5
},
"screen_surfaces": {
"incoming": true,
"outgoing": true,
"tool_calls": true,
"tool_responses": true
},
"trusted_sources": {
"domains": [
"<string>"
],
"agent_ids": [
"<string>"
],
"ip_ranges": [
"<string>"
]
},
"card_id": "<string>",
"issued_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"extensions": {},
"_composition": {
"canonical_id": "<string>",
"composed_at": "2023-11-07T05:31:56Z",
"scopes_applied": [
{
"scope": "<string>",
"version": 123,
"template_version": 123,
"card_id": "<string>"
}
],
"exemptions_applied": [
"<string>"
],
"source_card_id": "<string>",
"source_policy_id": "<string>"
}
}
'import requests
url = "https://api.mnemom.ai/v1/protection/agent/{agent_id}/preview-compose"
payload = {
"card_version": "<string>",
"agent_id": "<string>",
"thresholds": {
"warn": 0.5,
"quarantine": 0.5,
"block": 0.5
},
"screen_surfaces": {
"incoming": True,
"outgoing": True,
"tool_calls": True,
"tool_responses": True
},
"trusted_sources": {
"domains": ["<string>"],
"agent_ids": ["<string>"],
"ip_ranges": ["<string>"]
},
"card_id": "<string>",
"issued_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"extensions": {},
"_composition": {
"canonical_id": "<string>",
"composed_at": "2023-11-07T05:31:56Z",
"scopes_applied": [
{
"scope": "<string>",
"version": 123,
"template_version": 123,
"card_id": "<string>"
}
],
"exemptions_applied": ["<string>"],
"source_card_id": "<string>",
"source_policy_id": "<string>"
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
card_version: '<string>',
agent_id: '<string>',
thresholds: {warn: 0.5, quarantine: 0.5, block: 0.5},
screen_surfaces: {incoming: true, outgoing: true, tool_calls: true, tool_responses: true},
trusted_sources: {domains: ['<string>'], agent_ids: ['<string>'], ip_ranges: ['<string>']},
card_id: '<string>',
issued_at: '2023-11-07T05:31:56Z',
expires_at: '2023-11-07T05:31:56Z',
extensions: {},
_composition: {
canonical_id: '<string>',
composed_at: '2023-11-07T05:31:56Z',
scopes_applied: [{scope: '<string>', version: 123, template_version: 123, card_id: '<string>'}],
exemptions_applied: ['<string>'],
source_card_id: '<string>',
source_policy_id: '<string>'
}
})
};
fetch('https://api.mnemom.ai/v1/protection/agent/{agent_id}/preview-compose', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mnemom.ai/v1/protection/agent/{agent_id}/preview-compose",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'card_version' => '<string>',
'agent_id' => '<string>',
'thresholds' => [
'warn' => 0.5,
'quarantine' => 0.5,
'block' => 0.5
],
'screen_surfaces' => [
'incoming' => true,
'outgoing' => true,
'tool_calls' => true,
'tool_responses' => true
],
'trusted_sources' => [
'domains' => [
'<string>'
],
'agent_ids' => [
'<string>'
],
'ip_ranges' => [
'<string>'
]
],
'card_id' => '<string>',
'issued_at' => '2023-11-07T05:31:56Z',
'expires_at' => '2023-11-07T05:31:56Z',
'extensions' => [
],
'_composition' => [
'canonical_id' => '<string>',
'composed_at' => '2023-11-07T05:31:56Z',
'scopes_applied' => [
[
'scope' => '<string>',
'version' => 123,
'template_version' => 123,
'card_id' => '<string>'
]
],
'exemptions_applied' => [
'<string>'
],
'source_card_id' => '<string>',
'source_policy_id' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mnemom.ai/v1/protection/agent/{agent_id}/preview-compose"
payload := strings.NewReader("{\n \"card_version\": \"<string>\",\n \"agent_id\": \"<string>\",\n \"thresholds\": {\n \"warn\": 0.5,\n \"quarantine\": 0.5,\n \"block\": 0.5\n },\n \"screen_surfaces\": {\n \"incoming\": true,\n \"outgoing\": true,\n \"tool_calls\": true,\n \"tool_responses\": true\n },\n \"trusted_sources\": {\n \"domains\": [\n \"<string>\"\n ],\n \"agent_ids\": [\n \"<string>\"\n ],\n \"ip_ranges\": [\n \"<string>\"\n ]\n },\n \"card_id\": \"<string>\",\n \"issued_at\": \"2023-11-07T05:31:56Z\",\n \"expires_at\": \"2023-11-07T05:31:56Z\",\n \"extensions\": {},\n \"_composition\": {\n \"canonical_id\": \"<string>\",\n \"composed_at\": \"2023-11-07T05:31:56Z\",\n \"scopes_applied\": [\n {\n \"scope\": \"<string>\",\n \"version\": 123,\n \"template_version\": 123,\n \"card_id\": \"<string>\"\n }\n ],\n \"exemptions_applied\": [\n \"<string>\"\n ],\n \"source_card_id\": \"<string>\",\n \"source_policy_id\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mnemom.ai/v1/protection/agent/{agent_id}/preview-compose")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"card_version\": \"<string>\",\n \"agent_id\": \"<string>\",\n \"thresholds\": {\n \"warn\": 0.5,\n \"quarantine\": 0.5,\n \"block\": 0.5\n },\n \"screen_surfaces\": {\n \"incoming\": true,\n \"outgoing\": true,\n \"tool_calls\": true,\n \"tool_responses\": true\n },\n \"trusted_sources\": {\n \"domains\": [\n \"<string>\"\n ],\n \"agent_ids\": [\n \"<string>\"\n ],\n \"ip_ranges\": [\n \"<string>\"\n ]\n },\n \"card_id\": \"<string>\",\n \"issued_at\": \"2023-11-07T05:31:56Z\",\n \"expires_at\": \"2023-11-07T05:31:56Z\",\n \"extensions\": {},\n \"_composition\": {\n \"canonical_id\": \"<string>\",\n \"composed_at\": \"2023-11-07T05:31:56Z\",\n \"scopes_applied\": [\n {\n \"scope\": \"<string>\",\n \"version\": 123,\n \"template_version\": 123,\n \"card_id\": \"<string>\"\n }\n ],\n \"exemptions_applied\": [\n \"<string>\"\n ],\n \"source_card_id\": \"<string>\",\n \"source_policy_id\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/protection/agent/{agent_id}/preview-compose")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"card_version\": \"<string>\",\n \"agent_id\": \"<string>\",\n \"thresholds\": {\n \"warn\": 0.5,\n \"quarantine\": 0.5,\n \"block\": 0.5\n },\n \"screen_surfaces\": {\n \"incoming\": true,\n \"outgoing\": true,\n \"tool_calls\": true,\n \"tool_responses\": true\n },\n \"trusted_sources\": {\n \"domains\": [\n \"<string>\"\n ],\n \"agent_ids\": [\n \"<string>\"\n ],\n \"ip_ranges\": [\n \"<string>\"\n ]\n },\n \"card_id\": \"<string>\",\n \"issued_at\": \"2023-11-07T05:31:56Z\",\n \"expires_at\": \"2023-11-07T05:31:56Z\",\n \"extensions\": {},\n \"_composition\": {\n \"canonical_id\": \"<string>\",\n \"composed_at\": \"2023-11-07T05:31:56Z\",\n \"scopes_applied\": [\n {\n \"scope\": \"<string>\",\n \"version\": 123,\n \"template_version\": 123,\n \"card_id\": \"<string>\"\n }\n ],\n \"exemptions_applied\": [\n \"<string>\"\n ],\n \"source_card_id\": \"<string>\",\n \"source_policy_id\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"composed": {
"card_version": "<string>",
"agent_id": "<string>",
"thresholds": {
"warn": 0.5,
"quarantine": 0.5,
"block": 0.5
},
"screen_surfaces": {
"incoming": true,
"outgoing": true,
"tool_calls": true,
"tool_responses": true
},
"trusted_sources": {
"domains": [
"<string>"
],
"agent_ids": [
"<string>"
],
"ip_ranges": [
"<string>"
]
},
"card_id": "<string>",
"issued_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"extensions": {},
"_composition": {
"canonical_id": "<string>",
"composed_at": "2023-11-07T05:31:56Z",
"scopes_applied": [
{
"scope": "<string>",
"version": 123,
"template_version": 123,
"card_id": "<string>"
}
],
"exemptions_applied": [
"<string>"
],
"source_card_id": "<string>",
"source_policy_id": "<string>"
}
},
"conflicts": [
{}
],
"coherence_violations": [
{}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Preview composed protection (dry run)
Composes the cascade against a hypothetical body at the agent layer and returns conflicts + the composed view.
curl --request POST \
--url https://api.mnemom.ai/v1/protection/agent/{agent_id}/preview-compose \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"card_version": "<string>",
"agent_id": "<string>",
"thresholds": {
"warn": 0.5,
"quarantine": 0.5,
"block": 0.5
},
"screen_surfaces": {
"incoming": true,
"outgoing": true,
"tool_calls": true,
"tool_responses": true
},
"trusted_sources": {
"domains": [
"<string>"
],
"agent_ids": [
"<string>"
],
"ip_ranges": [
"<string>"
]
},
"card_id": "<string>",
"issued_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"extensions": {},
"_composition": {
"canonical_id": "<string>",
"composed_at": "2023-11-07T05:31:56Z",
"scopes_applied": [
{
"scope": "<string>",
"version": 123,
"template_version": 123,
"card_id": "<string>"
}
],
"exemptions_applied": [
"<string>"
],
"source_card_id": "<string>",
"source_policy_id": "<string>"
}
}
'import requests
url = "https://api.mnemom.ai/v1/protection/agent/{agent_id}/preview-compose"
payload = {
"card_version": "<string>",
"agent_id": "<string>",
"thresholds": {
"warn": 0.5,
"quarantine": 0.5,
"block": 0.5
},
"screen_surfaces": {
"incoming": True,
"outgoing": True,
"tool_calls": True,
"tool_responses": True
},
"trusted_sources": {
"domains": ["<string>"],
"agent_ids": ["<string>"],
"ip_ranges": ["<string>"]
},
"card_id": "<string>",
"issued_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"extensions": {},
"_composition": {
"canonical_id": "<string>",
"composed_at": "2023-11-07T05:31:56Z",
"scopes_applied": [
{
"scope": "<string>",
"version": 123,
"template_version": 123,
"card_id": "<string>"
}
],
"exemptions_applied": ["<string>"],
"source_card_id": "<string>",
"source_policy_id": "<string>"
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
card_version: '<string>',
agent_id: '<string>',
thresholds: {warn: 0.5, quarantine: 0.5, block: 0.5},
screen_surfaces: {incoming: true, outgoing: true, tool_calls: true, tool_responses: true},
trusted_sources: {domains: ['<string>'], agent_ids: ['<string>'], ip_ranges: ['<string>']},
card_id: '<string>',
issued_at: '2023-11-07T05:31:56Z',
expires_at: '2023-11-07T05:31:56Z',
extensions: {},
_composition: {
canonical_id: '<string>',
composed_at: '2023-11-07T05:31:56Z',
scopes_applied: [{scope: '<string>', version: 123, template_version: 123, card_id: '<string>'}],
exemptions_applied: ['<string>'],
source_card_id: '<string>',
source_policy_id: '<string>'
}
})
};
fetch('https://api.mnemom.ai/v1/protection/agent/{agent_id}/preview-compose', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mnemom.ai/v1/protection/agent/{agent_id}/preview-compose",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'card_version' => '<string>',
'agent_id' => '<string>',
'thresholds' => [
'warn' => 0.5,
'quarantine' => 0.5,
'block' => 0.5
],
'screen_surfaces' => [
'incoming' => true,
'outgoing' => true,
'tool_calls' => true,
'tool_responses' => true
],
'trusted_sources' => [
'domains' => [
'<string>'
],
'agent_ids' => [
'<string>'
],
'ip_ranges' => [
'<string>'
]
],
'card_id' => '<string>',
'issued_at' => '2023-11-07T05:31:56Z',
'expires_at' => '2023-11-07T05:31:56Z',
'extensions' => [
],
'_composition' => [
'canonical_id' => '<string>',
'composed_at' => '2023-11-07T05:31:56Z',
'scopes_applied' => [
[
'scope' => '<string>',
'version' => 123,
'template_version' => 123,
'card_id' => '<string>'
]
],
'exemptions_applied' => [
'<string>'
],
'source_card_id' => '<string>',
'source_policy_id' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mnemom.ai/v1/protection/agent/{agent_id}/preview-compose"
payload := strings.NewReader("{\n \"card_version\": \"<string>\",\n \"agent_id\": \"<string>\",\n \"thresholds\": {\n \"warn\": 0.5,\n \"quarantine\": 0.5,\n \"block\": 0.5\n },\n \"screen_surfaces\": {\n \"incoming\": true,\n \"outgoing\": true,\n \"tool_calls\": true,\n \"tool_responses\": true\n },\n \"trusted_sources\": {\n \"domains\": [\n \"<string>\"\n ],\n \"agent_ids\": [\n \"<string>\"\n ],\n \"ip_ranges\": [\n \"<string>\"\n ]\n },\n \"card_id\": \"<string>\",\n \"issued_at\": \"2023-11-07T05:31:56Z\",\n \"expires_at\": \"2023-11-07T05:31:56Z\",\n \"extensions\": {},\n \"_composition\": {\n \"canonical_id\": \"<string>\",\n \"composed_at\": \"2023-11-07T05:31:56Z\",\n \"scopes_applied\": [\n {\n \"scope\": \"<string>\",\n \"version\": 123,\n \"template_version\": 123,\n \"card_id\": \"<string>\"\n }\n ],\n \"exemptions_applied\": [\n \"<string>\"\n ],\n \"source_card_id\": \"<string>\",\n \"source_policy_id\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mnemom.ai/v1/protection/agent/{agent_id}/preview-compose")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"card_version\": \"<string>\",\n \"agent_id\": \"<string>\",\n \"thresholds\": {\n \"warn\": 0.5,\n \"quarantine\": 0.5,\n \"block\": 0.5\n },\n \"screen_surfaces\": {\n \"incoming\": true,\n \"outgoing\": true,\n \"tool_calls\": true,\n \"tool_responses\": true\n },\n \"trusted_sources\": {\n \"domains\": [\n \"<string>\"\n ],\n \"agent_ids\": [\n \"<string>\"\n ],\n \"ip_ranges\": [\n \"<string>\"\n ]\n },\n \"card_id\": \"<string>\",\n \"issued_at\": \"2023-11-07T05:31:56Z\",\n \"expires_at\": \"2023-11-07T05:31:56Z\",\n \"extensions\": {},\n \"_composition\": {\n \"canonical_id\": \"<string>\",\n \"composed_at\": \"2023-11-07T05:31:56Z\",\n \"scopes_applied\": [\n {\n \"scope\": \"<string>\",\n \"version\": 123,\n \"template_version\": 123,\n \"card_id\": \"<string>\"\n }\n ],\n \"exemptions_applied\": [\n \"<string>\"\n ],\n \"source_card_id\": \"<string>\",\n \"source_policy_id\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/protection/agent/{agent_id}/preview-compose")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"card_version\": \"<string>\",\n \"agent_id\": \"<string>\",\n \"thresholds\": {\n \"warn\": 0.5,\n \"quarantine\": 0.5,\n \"block\": 0.5\n },\n \"screen_surfaces\": {\n \"incoming\": true,\n \"outgoing\": true,\n \"tool_calls\": true,\n \"tool_responses\": true\n },\n \"trusted_sources\": {\n \"domains\": [\n \"<string>\"\n ],\n \"agent_ids\": [\n \"<string>\"\n ],\n \"ip_ranges\": [\n \"<string>\"\n ]\n },\n \"card_id\": \"<string>\",\n \"issued_at\": \"2023-11-07T05:31:56Z\",\n \"expires_at\": \"2023-11-07T05:31:56Z\",\n \"extensions\": {},\n \"_composition\": {\n \"canonical_id\": \"<string>\",\n \"composed_at\": \"2023-11-07T05:31:56Z\",\n \"scopes_applied\": [\n {\n \"scope\": \"<string>\",\n \"version\": 123,\n \"template_version\": 123,\n \"card_id\": \"<string>\"\n }\n ],\n \"exemptions_applied\": [\n \"<string>\"\n ],\n \"source_card_id\": \"<string>\",\n \"source_policy_id\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"composed": {
"card_version": "<string>",
"agent_id": "<string>",
"thresholds": {
"warn": 0.5,
"quarantine": 0.5,
"block": 0.5
},
"screen_surfaces": {
"incoming": true,
"outgoing": true,
"tool_calls": true,
"tool_responses": true
},
"trusted_sources": {
"domains": [
"<string>"
],
"agent_ids": [
"<string>"
],
"ip_ranges": [
"<string>"
]
},
"card_id": "<string>",
"issued_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"extensions": {},
"_composition": {
"canonical_id": "<string>",
"composed_at": "2023-11-07T05:31:56Z",
"scopes_applied": [
{
"scope": "<string>",
"version": 123,
"template_version": 123,
"card_id": "<string>"
}
],
"exemptions_applied": [
"<string>"
],
"source_card_id": "<string>",
"source_policy_id": "<string>"
}
},
"conflicts": [
{}
],
"coherence_violations": [
{}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Authorizations
Supabase JWT token in Authorization: Bearer header
Path Parameters
Agent identifier (e.g. smolt-abc123)
Body
Unified protection card (ADR-037). Safe House thresholds + trusted-source policy for a single agent. Shape matches src/composition/types.ts::UnifiedProtectionCard (canonical) and what the runtime validator at src/composition/validate.ts accepts. The customer-facing docs at /concepts/protection-card and /specifications/protection-card-schema document this same shape.
Strictest-wins composition: enforce > nudge > observe > off.
off, observe, nudge, enforce Score bands. Must satisfy warn <= quarantine <= block; each value in [0, 1].
Show child attributes
Show child attributes
Which request surfaces Safe House inspects. Composed across scopes by OR-per-field (any scope requiring inspection wins).
Show child attributes
Show child attributes
Sources for which detectors short-circuit (each match logged in the trace). Composed as platform->agent intersection (compliance ceiling) with org+agent union inside that ceiling — an agent cannot widen trust beyond what the platform allows.
Show child attributes
Show child attributes
Free-form extension slot for non-canonical fields. Ignored by the composer; preserved on read for tooling that needs an audit-tail metadata bag.
System-managed block describing which scope sources merged into the canonical card. Only returned when ?include_composition=true.
Show child attributes
Show child attributes
Response
Preview-compose result: composed card + conflicts + coherence violations.
Unified protection card (ADR-037). Safe House thresholds + trusted-source policy for a single agent. Shape matches src/composition/types.ts::UnifiedProtectionCard (canonical) and what the runtime validator at src/composition/validate.ts accepts. The customer-facing docs at /concepts/protection-card and /specifications/protection-card-schema document this same shape.
Show child attributes
Show child attributes