Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface NLPolicyInput

    nlPolicy.ts — Natural Language Policy Authoring for AMC Governor

    Translates plain-English policy descriptions into AMC Governor YAML using deterministic pattern matching — no LLM calls, fully auditable.

    "don't share PII with external vendors" → blocks DATA_EXPORT actions where external=true + enables PII shield

    "require approval for all financial transactions over $10,000" → step-up auth gate on FINANCIAL actions with amount > 10000

    Integrates with: governor/actionPolicyEngine.ts, governor/actionPolicySchema.ts, shield/validators, enforce/policyFirewall.ts

    interface NLPolicyInput {
        agentId?: string;
        context?: string;
        description: string;
        examples?: string[];
    }
    Index
    agentId?: string
    context?: string
    description: string
    examples?: string[]