> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mnemom.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Policy Commands (Moved)

> Policy management is now part of the alignment card. Use mnemom card evaluate for policy evaluation.

# Policy commands have moved

The standalone `mnemom policy` commands have been removed. Policy -- capability mappings, forbidden rules, escalation triggers, and defaults -- is now defined directly in the alignment card using the unified schema.

## What changed

| Old Command                     | Replacement                                                                                                            |
| ------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
| `mnemom policy init`            | Create a YAML alignment card with capability and enforcement sections. See [Card Management](/guides/card-management). |
| `mnemom policy validate <file>` | `mnemom card validate <file>` -- validates the full card including policy sections                                     |
| `mnemom policy publish <file>`  | `mnemom card publish <file>` -- publishes the card with embedded policy                                                |
| `mnemom policy list`            | `mnemom card show --agent <name>` -- the active card includes all policy                                               |
| `mnemom policy test <file>`     | `mnemom card evaluate <file> --tools <tools>` -- evaluates card policy against tools locally                           |
| `mnemom policy evaluate`        | `mnemom card evaluate <file> --tools <tools>` -- CI/CD gate evaluation                                                 |

## New workflow

1. Define your alignment card in YAML, including `capabilities`, `enforcement`, and `escalation_triggers` sections
2. Validate locally: `mnemom card validate card.yaml`
3. Evaluate against tools: `mnemom card evaluate card.yaml --tools mcp__browser__navigate,mcp__slack__post_message`
4. Publish: `mnemom card publish card.yaml --agent my-agent`

## See also

* [CLI Reference](/gateway/cli) -- Full CLI command reference including `card evaluate`
* [Card Management](/guides/card-management) -- Creating and managing alignment cards with embedded policy
* [CI/CD Policy Gates](/guides/ci-cd-policy-gates) -- Integrating card evaluation into CI/CD
