Skip to main content
GET
/
alignment
/
team
/
{team_id}
Get this layer's alignment manifest
curl --request GET \
  --url https://api.mnemom.ai/v1/alignment/team/{team_id} \
  --header 'Authorization: Bearer <token>'
{
  "card_version": "<string>",
  "agent_id": "<string>",
  "values": {
    "declared": [
      "<string>"
    ],
    "definitions": {},
    "conflicts_with": [
      "<string>"
    ]
  },
  "autonomy": {
    "bounded_actions": [
      "<string>"
    ],
    "escalation_triggers": [
      {
        "condition": "<string>",
        "reason": "<string>"
      }
    ],
    "forbidden_actions": [
      "<string>"
    ],
    "max_autonomous_value": {
      "amount": 123,
      "currency": "<string>"
    }
  },
  "audit": {
    "retention_days": 123,
    "queryable": true,
    "trace_format": "<string>",
    "query_endpoint": "<string>",
    "storage": {
      "location": "<string>"
    }
  },
  "card_id": "<string>",
  "issued_at": "2023-11-07T05:31:56Z",
  "expires_at": "2023-11-07T05:31:56Z",
  "principal": {
    "identifier": "<string>",
    "escalation_contact": "<string>"
  },
  "conscience": {
    "values": [
      {
        "content": "<string>",
        "id": "<string>"
      }
    ]
  },
  "integrity": {},
  "capabilities": {},
  "enforcement": {
    "forbidden_tools": [
      {
        "pattern": "<string>",
        "reason": "<string>"
      }
    ],
    "fail_open": true,
    "grace_period_hours": 123
  },
  "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>"
  }
}

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Headers

Accept
enum<string>

Response format. YAML is canonical; JSON is returned only on explicit application/json. The ?include=sources envelope is JSON-only.

Available options:
text/yaml,
application/yaml,
application/json

Path Parameters

team_id
string
required

Team identifier (UUID)

Query Parameters

include_composition
boolean
default:false

Include the _composition metadata block on the response body.

include
enum<string>

When sources, returns the scope-resolution envelope for this scope (the contributing layers + the composed result); the envelope shape is scope-specific (see ADR-053). The envelope is JSON-only.

Available options:
sources

Response

Alignment manifest at this scope.

Unified alignment card (ADR-008). Authored in YAML or JSON; composed server-side with platform defaults, org template, and active exemptions before storage.

card_version
string
required

Card schema version (e.g. 0.5.0).

agent_id
string
required

Target agent id. On PUT, server overwrites to match the URL path.

values
object
required
autonomy
object
required
audit
object
required
card_id
string

Card row id. Server-assigned on PUT (ac-{uuid}).

issued_at
string<date-time>
expires_at
string<date-time> | null
principal
object
conscience
object
integrity
object
capabilities
object
enforcement
object
extensions
object
_composition
object

System-managed block describing which scope sources merged into the canonical card. Only returned when ?include_composition=true.