Skip to main content
You need a compliance artifact, a pre-release boundary review, or an incident report summarizing what your agent did over the past week. Boundary reports aggregate telemetry into structured exports.

Generate via CLI

npx apie report create --last 7d
npx apie report create --last 7d --environment production --title "Pre-release boundary review"
npx apie report create --last 24h --environment production

Generate via SDK

const report = await apie.reports.create({
  reportType: "agent_boundary_report",
  window: "7d",
  environments: ["production"],
  title: "Pre-release boundary review",
});

const ready = await apie.reports.waitUntilReady(report.id);
console.log(ready.web_url);
console.log(ready.export_url);

Report types

TypeUse when
agent_boundary_reportReview declared vs observed tool boundaries
release_readiness_reportPre-release compliance check
incident_reportPost-incident agent behavior analysis
customer_evidence_packCustomer audit / evidence export

Time windows

WindowPeriod
24hLast 24 hours
7dLast 7 days
30dLast 30 days
Or specify exact bounds with timeWindow: { from, to }.

What you’ll see

A report in the dashboard with a web URL for review and a JSON export URL for download.

Next steps

Boundary drift

Detect undeclared tools before generating reports.

Declare capabilities

Declare expected boundaries.