Introduction

inverseStory is an engineering intelligence platform that turns test executions and engineering events into visual stories and AI-powered insights.

What you'll learn

  • Upload your first report
  • Wire inverseStory into your CI
  • Read AI insights and act on them

Quickstart

Install the CLI and upload your first report.

bash
# Install the CLI
npm i -g @inversestory/cli

# Authenticate
inversestory login

# Upload a Playwright report
inversestory upload --framework playwright ./playwright-report

Webhook ingestion

ts
await fetch("https://api.inversestory.dev/v1/runs", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.INVERSESTORY_TOKEN}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    project: "checkout-web",
    framework: "playwright",
    branch: process.env.CI_BRANCH,
    commit: process.env.CI_COMMIT,
    report,
  }),
});