Skip to main content

AI-powered incident diagnosis for engineering teams. Pull logs and deploys, get a structured root cause in 30 seconds.

Project description

Autopsy CLI

 █████  ██    ██ ████████  ██████  ██████  ███████ ██    ██
██   ██ ██    ██    ██    ██    ██ ██   ██ ██       ██  ██
███████ ██    ██    ██    ██    ██ ██████  ███████   ████
██   ██ ██    ██    ██    ██    ██ ██           ██    ██
██   ██  ██████     ██     ██████  ██      ███████    ██

AI-powered incident diagnosis • zero-trust

CI PyPI License: MIT Hits

AI-powered incident diagnosis for engineering teams. Pull production error logs and recent deploys, send them to an LLM, and get a structured root cause analysis in the terminal in under a minute. Zero-trust: your data never leaves your environment.

Demo

Watch a short walkthrough of the TUI and diagnosis flow:

https://github.com/user-attachments/assets/78ed3c52-1fe1-4ae2-844b-e0ed1848c06c

Prerequisites

Before running Autopsy, you need:

Area Requirement
AWS Account with CloudWatch Logs; credentials via aws configure or AWS_PROFILE; IAM: logs:DescribeLogGroups, logs:StartQuery, logs:GetQueryResults; at least one log group. Check: aws sts get-caller-identity returns your account ID.
Datadog Optional. If using Datadog for logs: API key and Application key; site (e.g. datadoghq.com, datadoghq.eu).
GitHub Account + Personal Access Token with repo scope; your app’s repo on GitHub. Check: curl -H "Authorization: Bearer YOUR_TOKEN" https://api.github.com/user returns your username.
GitLab Optional. Personal Access Token with read_api scope; project ID or namespace/project path. Supports self-hosted GitLab instances.
AI provider OpenAI (platform.openai.com) or Anthropic (console.anthropic.com) — account, API key, and credits.
Local Python 3.10+ (python --version), pip, terminal, internet.

Quick checklist: python --version → 3.10+ · aws sts get-caller-identity → OK · GitHub PAT with repo (and/or GitLab PAT with read_api) · OpenAI or Anthropic API key · pip install autopsy-cli · autopsy init · autopsy diagnose.

You do not need: a server, Docker, a separate cloud account for Autopsy, a database, or admin/root; no changes to your AWS or app code.

Install

pip install autopsy-cli          # core CLI (no TUI)
pip install "autopsy-cli[tui]"   # + interactive terminal UI (requires textual)

Or from source:

git clone https://github.com/zaappy/autopsy.git && cd autopsy
pip install -e ".[dev]"

Quick Start

autopsy           # Launch interactive TUI (menu, then run Diagnose or Setup)
autopsy init      # Or: interactive config wizard (~/.autopsy/config.yaml)
autopsy diagnose  # Collect (parallel) → AI prompt (labeled by source) → panels / --json (includes `sources`)

Interactive TUI — Run autopsy with no arguments to open the interactive terminal UI:

  • AUTOPSY logo and tagline (AI-powered incident diagnosis • zero-trust)
  • Arrow-key menu: Diagnose, History, Setup, Validate, Show config
  • Shortcuts: d Diagnose, i Init, v Validate, c Config, q Quit, Esc Back
  • Choosing Diagnose runs the full pipeline inside the TUI (progress steps, then 4-panel result). Errors are shown inline; press Esc to return to the menu.
  • Choosing Setup / Validate / Show config exits the TUI and runs the corresponding CLI command in your terminal.

Three steps: install → init → diagnose (via TUI or direct commands).

Configuration

After autopsy init, edit ~/.autopsy/config.yaml or re-run the wizard. The init wizard stores credentials in ~/.autopsy/.env — no manual env var exports needed.

Section Purpose
aws CloudWatch region, log groups, time window (minutes). Uses your AWS CLI credentials.
datadog Optional. Datadog site, service/source filters, time window. Uses DD_API_KEY and DD_APP_KEY from .env.
github Repo (owner/repo), branch, number of recent commits to analyze. Uses GITHUB_TOKEN.
gitlab Optional. GitLab URL (default: gitlab.com, supports self-hosted), project ID or path, branch, deploy count. Uses GITLAB_TOKEN. Can coexist with GitHub.
ai Provider (anthropic or openai), model, API keys.
slack Optional webhook integration for posting diagnoses to Slack.

Credentials are loaded from ~/.autopsy/.env automatically. If you prefer env vars, export them in your shell — they take precedence over the .env file.

Security: Add ~/.autopsy/.env to .gitignore if you ever copy the config directory. Never commit credentials. If your home directory is backed up or synced (e.g. OneDrive, Time Machine, Google Drive), the .env file may be included — consider excluding ~/.autopsy/ from sync or use env vars instead.

autopsy config show       # Print config (secrets masked)
autopsy config validate   # Check env vars and connectivity

How It Works

┌─────────────┐     ┌──────────────────┐     ┌─────────────┐     ┌──────────────┐
│   Config    │────▶│  Data Collectors │────▶│  AI Engine  │────▶│  Renderers   │
│ ~/.autopsy  │     │  CloudWatch      │     │  (Claude /   │     │  Terminal or │
│ config.yaml │     │  Datadog (opt.)  │     │   OpenAI)    │     │  JSON        │
│             │     │  GitHub / GitLab │     │              │     │              │
└─────────────┘     └──────────────────┘     └─────────────┘     └──────────────┘
                           │                          │
                           ▼                          ▼
                    Logs + recent commits      Structured diagnosis:
                    (deduped, truncated)       root cause, deploy, fix, timeline
  1. Collect — CloudWatch Logs Insights (error-level), optionally Datadog Logs, and GitHub/GitLab (last N commits + diffs).
  2. Reduce — Log dedup and token budget; diff filters (code files only, cap per file).
  3. Diagnose — Single prompt with logs + deploys; LLM returns JSON (root cause, correlated deploy, suggested fix, timeline).
  4. Render — Rich panels in the terminal or --json for piping.

CLI Reference

Command Description
autopsy Interactive TUI — menu with Diagnose, Setup, Validate, Config (requires textual)
autopsy init Interactive config wizard
autopsy init --slack Configure only Slack integration (webhook test + save)
autopsy diagnose Run full diagnosis pipeline (same as TUI “Diagnose”)
autopsy diagnose --json Output raw JSON
autopsy diagnose --postmortem Generate markdown post-mortem output
autopsy diagnose --postmortem --postmortem-path ./incident.md Write post-mortem to explicit path
autopsy diagnose --slack Post diagnosis output to Slack webhook
autopsy diagnose --time-window 15 Override log window (minutes)
autopsy diagnose --log-group /aws/lambda/foo Override log groups (repeatable)
autopsy diagnose --provider openai Use OpenAI instead of Anthropic
autopsy diagnose --sequential Run collectors sequentially instead of in parallel (debugging)
autopsy diagnose --source cloudwatch Run only listed collector(s); repeatable (--source cloudwatch --source github)
autopsy history list List saved diagnoses (newest first)
autopsy history show <id> Show a saved diagnosis (supports short ID prefix)
autopsy history show <id> --postmortem Generate post-mortem from saved diagnosis
autopsy history search "query" Search saved diagnoses
autopsy history stats Show history statistics
autopsy history export ./history.json --format json Export history to JSON or CSV
autopsy config show Print config (secrets masked)
autopsy config validate Check credentials and connectivity
autopsy version / autopsy --version CLI version, prompt version, Python version

If textual is not installed, autopsy with no arguments prints help instead of starting the TUI.

Contributing

See CONTRIBUTING.md for setup, code style, and how to submit changes. In short:

  1. Fork the repo and create a branch.
  2. Install dev deps: pip install -e ".[dev]".
  3. Run lint and tests: ruff check . && pytest.
  4. Open a PR against main.

We follow the layout and conventions in the repo (collectors, AI engine, renderers, no business logic in cli.py).

License

MIT. See LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autopsy_cli-0.3.0.tar.gz (88.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

autopsy_cli-0.3.0-py3-none-any.whl (70.0 kB view details)

Uploaded Python 3

File details

Details for the file autopsy_cli-0.3.0.tar.gz.

File metadata

  • Download URL: autopsy_cli-0.3.0.tar.gz
  • Upload date:
  • Size: 88.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for autopsy_cli-0.3.0.tar.gz
Algorithm Hash digest
SHA256 8b34c4a26b82c8410462be08cd594b1e9eb2963a51eead161406ba1dedaf6667
MD5 38189a5652eb3ac42f17c02d1245916e
BLAKE2b-256 61e7002f66479dffb4247f4ddc38c10bd80574c388bb6df1a3480d49d31bb30f

See more details on using hashes here.

Provenance

The following attestation bundles were made for autopsy_cli-0.3.0.tar.gz:

Publisher: ci.yml on zaappy/autopsy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autopsy_cli-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: autopsy_cli-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 70.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for autopsy_cli-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b9105b5a587b98c08dfee02d3c43bde058589ff92723d268fb1642f6da2e47af
MD5 ec97a54d0ad28ecea6ea01fbf7e74694
BLAKE2b-256 19b1da7cf9a39a2763c26b5ddcff0e63adce893deeb78450ab6fdc0bfd021885

See more details on using hashes here.

Provenance

The following attestation bundles were made for autopsy_cli-0.3.0-py3-none-any.whl:

Publisher: ci.yml on zaappy/autopsy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page