Trust · Security · Governance

The fastest way to kill a retail AI deal:
an agent with write access and no audit trail.

Ward starts read-only, runs on policy, and logs every query. Architecture, MSA, DPA, SOC 2 report, and certificate of insurance are on the table before you sign.

The risk is documented

These aren’t hypotheticals.
They’re the last two years of headlines.

Every failure mode below is on the public record. Here is what stops each one.

Data leakage
77% of workers paste real company data into AI tools.
Half on free tiers that train on what they’re fed. LayerX Enterprise AI Report, 2025
Ward queries your warehouse in place, read-only and tenant-scoped. Nothing trains a public model, ever.
Governance
An AI agent wiped a live database during a code freeze.
1,200+ records gone, then it faked data to cover it. Replit, 2025
Ward is read-only by default. Any write gates on a named human and a signed Cedar policy.
Compute capping
One runaway loop can burn a month’s budget in minutes.
Uncapped agents spiral before anyone notices. OpenAI dev community, 2025
Ward enforces a per-agent token budget before each call. Over the cap, the call never fires.

Sources: LayerX Enterprise AI & SaaS Data Security Report (2025) · Replit production-database incident (2025) · OpenAI developer community.

Read-only by default.
Writes need a named human.

Read-only against your warehouse, POS, and ERP. Writes gate on a role you define, logged with the approver’s name.

SOC 2 IIUnderway · Type I now
TLS 1.3In transit
AES-256At rest
Read-onlyBy default
Read-only credentials, Cedar policies
Service accounts scoped to SELECT on whitelisted schemas. No INSERT, UPDATE, or DELETE. Every agent runs a Cedar policy, versioned in Git and signed. Not in the repo means not in production.
Every query inspectable
Click any number on the page. See which agent ran, which sources, which SQL, which model. Hand it to compliance without a forensics project.

Policy as code.
Not click-admin drift.

The policy plane, kill switch, and audit trail your team would build with a free quarter.

policies/finance-agent.cedar v3 · signed
// Finance Agent: read-only on warehouse.finance,
// no PII, region-scoped, writes require approval.

permit (
  principal in Role::"FinanceAgent",
  action    in [Action::"read", Action::"summarize"],
  resource  in Source::"warehouse.finance"
)
when {
  resource.classification != "pii"
  && context.region        == principal.region
  && context.budget.tokens > 1000
};

forbid (
  principal,
  action == Action::"write",
  resource
)
unless {
  context.approval.status   == "granted"
  && context.approval.approver in Role::"FinanceLead"
};
Policies live in your repo. Versioned, reviewed, signed.
  • Policy as code, visualized
    Cedar policies in your Git: versioned, reviewed, signed. The console renders each rule as a graph, so IT reads policy without reading Cedar.
  • Scoped per role, tenant, resource
    Finance Agent cannot see labor schedules. Vendor Agent cannot touch shrinkage. US tenant cannot query EU tables. Least-privilege, machine-enforced.
  • Classifications drive access
    Tag a column pii, financial, or operational once. Every agent and query inherits the rule.
  • Who changed what, on the record
    Charter edits, prompt changes, policy updates: logged with name, time, ticket, approver. Diff, roll back, export to your SIEM.
  • Writes need a named human
    Exports, write-backs, schedule pushes. Anything that mutates state gates on a role you define, logged with the approver.
  • Audit any number on the page
    Click a forecast, a margin call, a shrink flag. Ward shows the SQL, source tables, model, parameters, and backtest.
Pause & audit log
One toggle freezes every agent across every tenant, resumes clean, replays nothing. Everything streams to your SIEM as it happens.
Kill switch · JSONL · Splunk · Datadog
Region, tenancy & keys
US stays US, EU stays EU. Single-tenant in your AWS or Azure account on request. KMS or HSM-backed keys; Ward never sees the material.
VPC · data residency · BYOK · CMK · envelope
Insurance & model cards
Cyber and tech E&O on file with an AI rider, COI to procurement in a day. Every number carries a model card with the forecast, the MAPE, and the backtest.
Cyber · tech E&O · AI · forecasts your planners trust

Your data, your keys, your region.

Processed only to deliver the service. Nothing trains a public model. Nothing leaves your region without a contract that allows it.

Encryption in transit & at rest

TLS 1.3 in transit. AES-256 at rest. Key material in AWS KMS or your HSM.

SSO / SAML & SCIM

SAML 2.0 against your IdP. SCIM provisioning, so access follows the org chart.

Role-based access (RBAC)

Least-privilege roles per agent, tenant, and resource. Finance can’t see labor; US can’t query EU tables.

Immutable audit trail

Every prompt, query, model call, and approval is logged with name, time, and ticket. Streams to your SIEM.

Customer-managed keys

CMK on request, KMS or HSM-backed. You rotate and revoke. Ward never sees the key material.

VPC & PrivateLink

Single-tenant in your AWS or Azure account via VPC peering or PrivateLink.

Data residency

Region pins at the tenant level: us-east-1 / us-west for US, Frankfurt and Dublin for EU, Tokyo for Japan.

Retention, deletion & sub-processors

Retention per data class. Hard delete 30 days post-termination, wipe logged.

Customer data is never used to train a public foundation model: tenant-scoped fine-tunes only, opt-in by contract.

Where we are, and where we’re going.

Everything below is current status. Need something before signing? Ask, and we send it or tell you when. The evaluation packet collects all of it on one printable page.

SOC 2 Type II Underway
Audit window open. Type I letter now, Type II expected Q3 2026. Bridge letter on request.
GDPR Ready
DPA available, SCCs for EU transfers, residency in Frankfurt or Dublin. DPO contact in the DPA.
CCPA / CPRA Ready
California consumer rights under the DPA. Access, deletion, and opt-out workflows documented.
ISO 27001 2027 roadmap
Controls in place today. Certification scheduled after SOC 2 Type II lands.
Pen testing Annual
Annual third-party test, summary letter under NDA. Critical findings remediated in 30 days, all findings in 90.
HIPAA On request
BAA available for pharmacy retailers handling PHI. Single-tenant deployment recommended for HIPAA workloads.

Every vendor that touches your data.

Listed below. Change one and we email 30 days ahead, with an objection window per the DPA. How a review runs:

01
Review

Architecture packet, MSA, DPA, pre-filled CAIQ or SIG Lite, in a business day.

02
Scope

Pick the boundary: multi-tenant SaaS, single-tenant VPC, or PrivateLink in your own account.

03
Connect

Read-only credentials, scoped to the schemas you whitelist. No write access until you grant it.

04
Govern

Cedar policies signed in your repo. Every query and approval streams to your SIEM, on the record.

Vendor Purpose Region Data class
AWSHosting, storage, KMSUS, EU, JPAll
AnthropicLLM inference (no training)USOperational only
OpenAILLM inference (no training)USOperational only
Google Vertex AILLM inference (no training)US, EUOperational only
DatadogApplication monitoringUSLogs, metrics
StripeBillingUSBilling only

Single-tenant deployments can exclude any third-party LLM. Self-hosted open-weight models supported on request.

Coverage on file.
Response on the clock.

Cyber liability & tech E&O

In force, with an AI rider for errors in model output. Carrier name and COI to procurement within one business day.

  • Cyber liability with breach response
  • Tech E&O with AI/ML rider
  • Additional insured endorsement on request
  • COI delivered via email or vendor portal
Incident response

Documented runbook. Customer notification SLA per the DPA. Post-incident report with root cause and corrective action.

  • Detection: 24/7 SIEM alerting
  • Triage: on-call within 15 minutes
  • Notification: 72 hours per DPA
  • Postmortem: within 14 days

On the table before you sign.

Most arrive within a business day. The few under NDA need a one-page MNDA first.

Architecture review packet
Network diagram, data flow, agent topology
MSA & Order Form
Standard or your paper, redline-friendly
Data Processing Addendum
GDPR, CCPA, SCCs, sub-processor list
SOC 2 Type II report
Type I now · Type II Q3 2026 · under NDA
Penetration test summary
Annual third-party test · under NDA
Certificate of insurance
Cyber, tech E&O, AI rider
Business Associate Agreement
HIPAA-covered tenants
Security questionnaire
CAIQ, SIG Lite, custom. Pre-filled.

Found something? Tell us.

Coordinated disclosure. Response in one business day, triage in three, researchers credited in the changelog.

Security disclosure
security@getward.ai
Procurement & legal
legal@getward.ai

Your security review starts with a short list of questions.

Architecture, MSA, DPA, SOC 2 letter, COI. On the table before you sign.

Read-only to start · your LLM keys · SOC 2 Type II underway · or book a call directly

Find out what your data has been hiding.

Tell us about your operation. We’ll show you the problems Ward catches, and the ones your current tools miss.

Step 1 of 3
What are your goals?
Step 2 of 3
About your operation
Step 3 of 3
Your contact info