Missing agent entry point
No AGENTS.md / CLAUDE.md / .cursorrules — agents have no map.
agent-preflight scans your repo for the cheap bugs that break agent workflows — local-only paths, missing install commands, undocumented env vars. Catch them at commit, not after an hour of confused debugging.
CLI coming — run npx agent-preflight@beta check . once published.
No signup. No config. 30-second scan.
// what it checks
Reproducibility over quality scoring — we don't grade your prompt-writing, we answer: if a fresh agent session opens this repo tomorrow, will the documented workflow actually run?
No AGENTS.md / CLAUDE.md / .cursorrules — agents have no map.
Hardcoded /home/, /Users/, C:\Users\ paths that break in fresh environments.
Workflow cites a tool, skill, or MCP server that isn't declared anywhere.
Setup section exists but no runnable install (e.g. npm install).
Env vars consumed by MCP configs but never named in setup docs.
No "does it start?" command a fresh session can run to confirm setup.
// a real scan
A path that exists on your machine — and nowhere else. Here's what the report looks like before that fresh session ever opens the repo.
↑ this path will break in CI
// continuous preflight
name: Preflight on: [pull_request] jobs: preflight: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: agent-preflight/agent-preflight@v0.1 with: path: .
Fails the build at the severity you choose. Posts the report as a PR comment.
// early access
Private repos, scan history, PR integration. Drop your email — one message when it launches. No spam.
Thanks — we'll email you when hosted scans launch.
Something went wrong. Try again.
Or run the CLI now:npx agent-preflight@beta check .