// aiuc-1

AIUC-1 tests the agent,
not just the paperwork.

AIUC-1 is a certification standard for AI agents, published by the Artificial Intelligence Underwriting Company. It is the newest of the three frameworks buyers now ask about alongside ISO/IEC 42001 and the NIST AI RMF — and the only one of the three that combines an audit of your organisational controls with adversarial testing of the agent itself, repeated quarterly. As of the Q3 2026 release it carries mandatory requirements written specifically for code-generating agents. Below: what the standard actually is, how it is structured, and which of its requirements MoorAI's content-free, on-device controls bear on. MoorAI is not AIUC-1 certified — this is a mapping to help you assemble evidence, nothing more.

01 · What it is
A certification, not a guideline
Six pillars, 51 active requirements, each decomposing into numbered controls. An accredited auditor prepares a report; AIUC issues the certificate. Valid 12 months.
02 · What is different
The product gets tested
Controls evidence is only half of it. The agent is put through adversarial evals — hallucinations, unsafe tool calls, jailbreaks — at least every three months to keep the certificate alive.
03 · Why it reaches you
Coding agents are in scope
Requirements are scoped by capability, and Code-generation is one of them. Q3 2026 added A008 (secrets) and B010 (secure generated code) as mandatory for coding agents.

What AIUC-1 actually is

Worth being precise about, because the shape is unusual and it is easy to mistake for either a voluntary framework or an ISO-style multi-stakeholder standard. It is neither.

// the publisher
One company, four roles
AIUC publishes the standard, accredits the auditors, is currently the only accredited technical testing body, and issues every certificate through its own Certification Committee. AIUC compares this to FedRAMP and HITRUST — a central body plus a network of assessors. It also sells AI agent insurance priced against the same audit. Judge the independence for yourself; it is not an accredited-body model like ISO.
// the auditors
Real audit firms, mostly provisional
Seven firms are listed as accredited: Schellman (since November 2025, the only one not provisional), plus Coalfire, BDO, Grant Thornton, Mastermind, Sensiba and A-LIGN — all six on provisional accreditation pending a witness audit. These are the same firms that run SOC 2 and ISO 42001 engagements.
// the cadence
Quarterly, by construction
The standard itself is revised each quarter — the current release is dated 15 July 2026, the next 15 October 2026. Certificates run 12 months, with an annual controls re-audit and technical re-testing at least every three months. A requirement set that moves quarterly is a real maintenance obligation, not a one-off.

Is it adopted? Enough to matter, not enough to be table stakes. The clearest datapoint for this audience is Cursor, which published its AIUC-1 certification on 13 August 2026 after an audit by Schellman and two rounds of adversarial testing across several thousand scenarios — a coding-agent vendor, certified against the coding-agent requirements. UiPath and ElevenLabs have also announced certification. That is a short list, and you should read it as an early-adopter list rather than an industry norm.

The six pillars

Requirements are lettered by pillar and numbered within it — A001, B010, D003 — and each decomposes into numbered controls (A008.1 through A008.5, for instance). Every requirement is marked Mandatory or Optional, and scoped to the capabilities it applies to: Universal, Code-generation, Automation, Text-generation, Voice-generation, Image-generation, External-facing. Counts below are active requirements; two further requirements (E007, E014) are marked retired.

A · 8 requirements
Data & Privacy
Protect against data leakage, IP leakage, and training on user data without consent.
B · 10 requirements
Security
Protect against adversarial attacks like jailbreaks and prompt injections, as well as unauthorized tool calls.
C · 12 requirements
Safety
Prevent harmful AI outputs and brand risk through testing, monitoring and safeguards.
D · 4 requirements
Reliability
Prevent hallucinations and unreliable tool calls to business systems.
E · 15 requirements
Accountability
Assign accountability, enforce oversight, create emergency responses and vet suppliers.
F · 2 requirements
Society
Prevent AI from enabling societal harm through cyberattacks or national security risks.

How it sits next to ISO 42001 and the NIST AI RMF

AIUC publishes crosswalks to both, and positions AIUC-1 as complementary rather than competing. In its own words, certification against AIUC-1 “incorporates the majority of controls from ISO 42001” and “translates ISO's management system approach into concrete, auditable requirements”, extending it with third-party testing of things like hallucinations and jailbreak attempts. Against NIST it is blunter still: “AIUC-1 operationalizes the NIST AI RMF”, translating high-level actions into specific, auditable controls. The practical reading: ISO 42001 asks whether you run a management system, the NIST AI RMF gives you a structure for deciding what to manage, and AIUC-1 asks whether the agent actually withstands being attacked. They stack; they do not substitute. AIUC also publishes crosswalks to the EU AI Act, MITRE ATLAS, the OWASP LLM Top 10, OWASP AIVSS, the OWASP Agentic Top 10, the IBM AI Risk Atlas, the Cisco AI Security & Safety framework and the CSA AICM.

Where MoorAI's controls bear on AIUC-1 requirements

Only requirements MoorAI's shipped mechanisms genuinely speak to are listed — the standard has 51, and MoorAI is relevant to a minority of them. Requirement titles and descriptions are as published by AIUC; the right-hand column is what MoorAI actually does. Where the fit is partial, it says so. This is not a certification, an audit, or evidence that any requirement is met — an accredited auditor decides that, not a vendor page.

AIUC-1 requirementpillar · id · application What it asks foras published by AIUC MoorAI mechanismwhat actually does it
A008 Prevent leakage of credentials and secrets mandatory code-generation Detect and prevent leakage of secrets in AI system inputs, outputs, logs and credential storage. Control A008.1 asks for secrets detection over user prompts and pasted content by pattern-matching or entropy; A008.2 asks for scanning of generated code artifacts before they are written. Content-free on-device detection over the prompt at PreToolUse and over tool output at PostToolUse. Matching happens on the endpoint; only category, risk and a keyed one-way hash leave the machine — which answers A008 for inputs, outputs and logs at once, since the log never contains the secret either.
B010 Promote secure patterns in generated code mandatory code-generation Safeguards that promote secure patterns and prevent known vulnerabilities in generated code — secure defaults for common web vulnerability classes, for authentication and authorization, and against dependency risks such as wildcard versions or non-existent packages. Partial. MoorAI inspects and can block the written artifact at PostToolUse, which addresses the detection half. It does not steer generation — the system-prompt and scaffolding controls B010 also contemplates sit with whoever builds the agent, not with MoorAI.
B006 Prevent unauthorized AI agent actions mandatory automation Safeguards preventing AI agents from performing actions beyond intended scope and authorized privileges. PreToolUse enforcement on Claude Code — coach, alert or block before the call runs — behind the MCP proxy, with a server allow-list and per-tool argument rules, plus JIT elevation so a privileged step gets a scoped, time-boxed grant instead of standing permission.
D003 Restrict unsafe tool calls mandatory automation Safeguards or technical controls preventing tool calls from executing unauthorized actions, accessing restricted information, or making decisions beyond their intended scope. The MCP proxy is a single chokepoint every tool call passes through, so “beyond intended scope” is a decision taken at the call rather than reconstructed afterwards. Lethal-trifecta / toxic-flow detection catches the cross-server case a per-call rule misses.
B002 Detect adversarial input optional universal Monitoring capabilities to detect and enable responding to adversarial inputs and prompt injection attempts. On-device detection of prompt injection and of rules-file poisoning in CLAUDE.md and .cursorrules — the injection vector specific to coding agents, where the payload sits in a file the agent reads rather than in the prompt a human typed.
A006 Prevent PII leakage mandatory universal Safeguards to prevent personal data leakage through AI outputs and logs. Content-free by default. Only category, risk and a keyed one-way hash ever leave the device, so the governance record cannot itself become the leak. The “and logs” half of A006 is the one most tooling fails, because inspecting content means storing it.
A003 Limit AI agent data access mandatory universal Safeguards limiting AI agent data access based on task, user role, agent role and context. MCP server allow-list and model-endpoint allow-list bound which tools and which inference endpoints an agent may reach; the entitlement envelope and per-agent assurance score make that bound depend on the agent rather than being uniform.
E015 Log AI system activity mandatory universal Maintain logs of AI system processes, actions and agent outputs where permitted, to support incident investigation, auditing, and explanation of AI system behaviour. Cryptographically signed, tamper-evident decision records — what was allowed or blocked, under which policy, on which device. The “where permitted” caveat in E015 is doing real work in regulated environments; a content-free record is permitted in more places than a transcript.
E006 Conduct vendor due diligence mandatory universal Vet the vendors in the AI system's supply chain. Partial. The AIBOM and shadow-AI discovery tell you which agents, models and MCP servers are actually running — the inventory the diligence is performed against. The diligence itself remains a process you run.
E010 Establish AI acceptable use policy mandatory universal Establish and implement an AI acceptable use policy. Natural-language policy authoring compiled to device-side enforcement. Most organisations can evidence the “establish” half with a document; the “implement” half is what a per-action decision on the endpoint actually demonstrates.
E001 AI failure plan for security breaches mandatory universal A documented AI failure plan for privacy and security breaches, with accountable owners and established notification and remediation. Partial. Break-glass / offline fail-closed is the technical half of the response — the enforced state when the plan is invoked or the device loses contact. The plan, the owners and the notification paths are organisational and are not something a tool supplies.

What MoorAI does not do for AIUC-1

Stated plainly, because a mapping page that only lists hits is not useful for planning an audit.

// out of reach by design
The third-party testing requirements
AIUC-1 has six requirements that mandate expert third parties evaluate the system at least every three months — B001 adversarial robustness, C010 harmful outputs, C011 out-of-scope outputs, C012 customer-defined risk, D002 hallucinations, D004 tool calls. No product satisfies these; they require an accredited testing body, and AIUC is currently the only one. MoorAI publishes an open benchmark and its method, which is a useful input to your own pre-deployment testing under C002 — but it is self-published and self-conducted, and it is not third-party testing in the sense AIUC-1 means.
// not our layer
Most of pillars C and F
Harmful outputs, out-of-scope outputs, distress and bias detection (C003, C004), and the societal-misuse guardrails in F001 and F002, are model- and application-layer concerns. MoorAI operates at the action layer — the prompt, the tool call, the written artifact — and stretching those controls to cover output-safety would be exactly the kind of mapping this page is trying not to do.
// paperwork is paperwork
The documentation requirements
E011 processing locations, E012 regulatory compliance, E013 quality management system, E017 transparency policy, A001 and A002 data policies — these ask for documents and decisions, not for enforcement. A signed decision record can evidence that a policy was applied; it cannot write the policy.
// no affiliation
MoorAI is not AIUC-1 certified, and AIUC has not reviewed or endorsed MoorAI.
MoorAI has not been audited against AIUC-1, holds no AIUC-1 certificate, and is not an accredited AIUC-1 auditor or technical testing body. Nothing on this page is a certification, an audit result, or a claim of conformity — and deploying MoorAI does not make your organisation or your agent AIUC-1 certified. The AIUC-1 name and the Artificial Intelligence Underwriting Company name belong to AIUC. Requirement ids, titles, descriptions and counts on this page are drawn from AIUC's published standard as of the 15 July 2026 release; because AIUC-1 is revised quarterly, verify them against the current text before relying on them.

Informational, not a certification. This page maps MoorAI's shipped controls to AIUC-1 requirements to help teams assemble evidence; it is not a certification, legal advice, or a conformity assessment. AIUC-1 certificates are issued by the Artificial Intelligence Underwriting Company on the basis of an accredited auditor's report and evals from an accredited technical testing body — not on the basis of any tool a company deploys. Partial marks a requirement MoorAI addresses only in part.

Go deeper

AIUC-1 is one of several frameworks the same evidence trail reaches. The crosswalk shows all of them side by side.

glick.run — AGPL-3.0