Is It Agent Ready — Printing Press CLI
Prerequisites: Install the CLI
This skill drives the isitagentready-pp-cli binary. You must verify the CLI is installed before invoking any command from this skill. If it is missing, install it first:
- Install via the Printing Press installer. It defaults binaries to
$HOME/.local/binon macOS/Linux and%LOCALAPPDATA%\Programs\PrintingPress\binon Windows:npx -y @mvanhorn/printing-press-library install isitagentready --cli-only - Verify:
isitagentready-pp-cli --version - Ensure the reported install directory is on
$PATHfor the agent/runtime that will invoke this skill.
If the npx install fails (no Node, offline, etc.), fall back to a direct Go install (requires Go 1.26.6 or newer). This installs into $GOPATH/bin (default $HOME/go/bin), so add that directory to $PATH instead:
go install github.com/mvanhorn/printing-press-library/library/developer-tools/isitagentready/cmd/isitagentready-pp-cli@latest
If --version reports "command not found" after install, the runtime cannot see the binary directory on $PATH. Do not proceed with skill commands until verification succeeds.
isitagentready.com and is-agentic.com each give you a one-shot score in a browser tab with no memory, and neither knows the other exists. This CLI turns both into one repeatable loop: check any site against either scanner, get the prioritized fixes with advice, gate it in CI, diff it over time, compare it to competitors, and batch-scan a whole portfolio — with every scan stored locally and tagged by source, so history and open-advice tell you exactly what changed and what is still unfixed.
The two scanners disagree, and that is the point. isitagentready.com reports a Level 0-5 across five fixed categories; is-agentic.com reports a score 0-100 over a per-site denominator that excludes checks that do not apply. This CLI never averages or rescales them. crossref puts both native verdicts side by side and calls agreement only on the four checks that genuinely measure the same thing.
When to Use This CLI
Reach for this when you need to check or improve how ready a website is for AI agents: scanning a site for robots.txt, llms.txt, MCP, OAuth, and commerce-protocol readiness, getting copy-paste fixes to raise its level, gating a deploy on readiness, tracking a site's score over time, or comparing several sites. It is ideal inside a coding agent that will then apply the fixes it surfaces.
Anti-triggers
Do not use this CLI for:
- Generating an llms.txt or robots.txt file from scratch (this CLI scans and advises; it does not author those files for you).
- Tracking whether ChatGPT or Perplexity cite your brand (that is AI-visibility tracking, a different product).
- General SEO keyword-ranking or backlink audits.
- Fetching a page's content as markdown for an agent to read (that is the markdown-negotiation feature on the target site, not this scanner).
Unique Capabilities
These capabilities aren't available in any other tool for this API.
Ship it without regressing
gate— Fail a build when a site drops below a target readiness level or when a previously-passing check regresses.Reach for this in CI when you want a deterministic exit code, not a brittle grep of the JSON.
isitagentready-pp-cli gate https://isitagentready.com --min-level 3open-advice— List every still-failing check across all your scanned sites with its fix prompt, so you see exactly what is left to do.Reach for this to answer 'what fixes are still open across all my sites' in one command.
isitagentready-pp-cli open-advice --agent
Track readiness over time
history— Show a site's readiness level across every past scan and flag which checks flipped pass/fail between scans.Reach for this to confirm a fix actually landed and to catch silent regressions.
isitagentready-pp-cli history https://example.com --agentdiff— Diff two scans of a site (default: the latest two) into a per-check regressed/fixed/unchanged table plus the level delta.Reach for this to see precisely what changed between two points in time, not just the new score.
isitagentready-pp-cli diff https://example.com
Across many sites
compare— Scan several sites and print a check-by-check matrix of which agent standards each one implements, plus each site's level.Reach for this to see exactly which standards a competitor implemented that you have not.
isitagentready-pp-cli compare https://example.com https://isitagentready.combatch— Scan a list of URLs from a file or stdin, persist each, and print a leaderboard ranked by level or failing-check count.Reach for this to triage a whole web estate worst-first instead of scanning sites one browser tab at a time.
isitagentready-pp-cli batch urls.txt --rank failing --csv
Cross-check both scanners
crossref— Show isitagentready.com's Level 0-5 and is-agentic.com's score 0-100 side by side for one URL, each in its own native scale and never merged, plus an agreement verdict on the four checks that genuinely measure the same thing.Reach for this when one scanner says you are fine and you want a second opinion — without pretending the two scores are the same number.
isitagentready-pp-cli crossref https://example.com--source is-agentic— Run any scan-backed command against the second scanner. Every stored scan is tagged with its source, sohistory,diff,gate,compareandbatchstay inside one scanner's scale instead of silently mixing two. Every is-agentic request in a run — including the concurrentcompareandbatchfan-out — goes through one shared client, so the whole process stays inside the host's advertised 2 requests/second public-report budget instead of racing itself into 429s.Reach for this to track is-agentic over time the same way you already track isitagentready.
isitagentready-pp-cli report https://example.com --source is-agentic
Command Reference
scan — Scan a website for AI-agent readiness
isitagentready-pp-cli scan— Scan a URL; returns readiness level (0-5), per-check results across 5 categories
Finding the right command
When you know what you want to do but not which command does it, ask the CLI directly:
isitagentready-pp-cli which "<capability in your own words>"
which resolves a natural-language capability query to the best matching command from this CLI's curated feature index. Exit code 0 means at least one match; exit code 2 means no confident match — fall back to --help or use a narrower query.
Recipes
Get the copy-paste fixes for a site
isitagentready-pp-cli advice https://example.com --copy
Prints every next-level fix prompt as one pasteable block, ready to drop into a coding agent.
See what is still unfixed across all your sites
isitagentready-pp-cli open-advice --agent
Cross-site backlog of every check still failing, with its fix prompt, from your local scan history.
Narrow a verbose scan to just the checks you care about
isitagentready-pp-cli report https://example.com --agent --only-failing --select checks.discovery.mcpServerCard.status,checks.discovery.mcpServerCard.message
A full scan is large and deeply nested; --select pulls just the dotted fields you want so an agent does not parse tens of KB.
Gate a deploy on readiness
isitagentready-pp-cli gate https://example.com --min-level 3 --no-regress
Exits non-zero if the site is below level 3 or any previously-passing check regressed; safe for CI.
Compare against a competitor
isitagentready-pp-cli compare https://example.com https://isitagentready.com
Prints a per-standard matrix of which agent-readiness checks each site implements.
Cross-check a site against both scanners
isitagentready-pp-cli crossref https://example.com
Prints isitagentready's Level 0-5 and is-agentic's score 0-100 as two separate native verdicts, then an agreement table for the four checks both scanners actually measure. The two scores are never averaged or rescaled — their denominators differ (five fixed categories vs a per-site set that excludes non-applicable checks). If one scanner has no report for the URL, the other is still printed.
Track the second scanner over time
isitagentready-pp-cli check https://example.com --source is-agentic
isitagentready-pp-cli history https://example.com --source is-agentic
With --source is-agentic, check prints that scanner's own verdict — the score and its label, the essential/recommended tier breakdown, and each non-passing issue with its fix — not an isitagentready level, because the two scales are not the same claim.
Every scan is stored with its source, and every read filters to one source, so is-agentic history never mixes with isitagentready history. Omitting --source keeps the original isitagentready behavior, including for scans recorded before this feature existed.
Gate CI on the is-agentic score
isitagentready-pp-cli gate https://example.com --source is-agentic --min-score 70
--min-score is the is-agentic threshold; --min-level is the isitagentready one. Passing the wrong pair (--min-level with --source is-agentic) is a usage error rather than a silent reinterpretation, because a Level 3 and a score of 70 are not the same claim.
Auth Setup
No API key or login required. The scan endpoint is public and read-only, so every command works out of the box.
Run isitagentready-pp-cli doctor to verify setup.
Agent Mode
Add --agent to any command. Expands to: --json --compact --no-input --no-color --yes.
Pipeable — JSON on stdout, errors on stderr
Filterable —
--selectkeeps a subset of fields. Dotted paths descend into nested structures; arrays traverse element-wise. Critical for keeping context small on verbose APIs:isitagentready-pp-cli scan --url https://example --agent --select id,name,statusPreviewable —
--dry-runshows the request without sendingNon-interactive — never prompts, every input is a flag
Explicit retries — use
--idempotentonly when an already-existing create should count as success
Paths and state
Agents should treat the CLI's path resolver as part of the runtime contract:
Use
--home <dir>for one invocation, or setISITAGENTREADY_HOME=<dir>to relocate all four path kinds under one root.Use per-kind env vars only when a specific kind must diverge:
ISITAGENTREADY_CONFIG_DIR,ISITAGENTREADY_DATA_DIR,ISITAGENTREADY_STATE_DIR,ISITAGENTREADY_CACHE_DIR.Resolution order is per-kind env var,
--home,ISITAGENTREADY_HOME, XDG (XDG_CONFIG_HOME,XDG_DATA_HOME,XDG_STATE_HOME,XDG_CACHE_HOME), then platform defaults.configcontains settings likeconfig.tomland profiles.datacontainscredentials.toml,data.db, cookies, and auth sidecars.statecontains persisted queries, jobs, andteach.log.cachecontains regenerable HTTP/cache files.Stored secrets live in
credentials.tomlunder the data dir. Existing legacyconfig.tomlsecrets are read for compatibility and leaveconfig.tomlon the first auth write.Run
isitagentready-pp-cli doctor --fail-on warnto surface path and credential-location warnings.agent-contextexposes a schema v4pathsblock for agents that need the resolved dirs.For MCP, pass relocation through the MCP host config. The MCP binary does not inherit CLI flags:
{ "mcpServers": { "isitagentready": { "command": "isitagentready-pp-mcp", "env": { "ISITAGENTREADY_HOME": "/srv/isitagentready" } } } }
Fleet precedence: an inherited per-kind env var overrides an explicit --home for that kind. Use ISITAGENTREADY_HOME or per-kind vars as durable fleet levers, and use --home only for a single invocation. Relocation is not reversible by unsetting env vars; move files manually before clearing ISITAGENTREADY_HOME, or doctor will not find credentials left under the former root.
Agent Feedback
When you (or the agent) notice something off about this CLI, record it:
isitagentready-pp-cli feedback "the --since flag is inclusive but docs say exclusive"
isitagentready-pp-cli feedback --stdin < notes.txt
isitagentready-pp-cli feedback list --json --limit 10
Entries are stored locally as feedback.jsonl under the resolved data dir. They are never POSTed unless ISITAGENTREADY_FEEDBACK_ENDPOINT is set AND either --send is passed or ISITAGENTREADY_FEEDBACK_AUTO_SEND=true. Default behavior is local-only.
Write what surprised you, not a bug report. Short, specific, one line: that is the part that compounds.
Output Delivery
Every command accepts --deliver <sink>. The output goes to the named sink in addition to (or instead of) stdout, so agents can route command results without hand-piping. Three sinks are supported:
| Sink | Effect |
|---|---|
stdout |
Default; write to stdout only |
file:<path> |
Atomically write output to <path> (tmp + rename) |
webhook:<url> |
POST the output body to the URL (application/json or application/x-ndjson when --compact) |
Unknown schemes are refused with a structured error naming the supported set. Webhook failures return non-zero and log the URL + HTTP status on stderr.
Named Profiles
A profile is a saved set of flag values, reused across invocations. Use it when a scheduled agent calls the same command every run with the same configuration - HeyGen's "Beacon" pattern.
isitagentready-pp-cli profile save briefing --json
isitagentready-pp-cli --profile briefing scan --url https://example
isitagentready-pp-cli profile list --json
isitagentready-pp-cli profile show briefing
isitagentready-pp-cli profile delete briefing --yes
Explicit flags always win over profile values; profile values win over defaults. agent-context lists all available profiles under available_profiles so introspecting agents discover them at runtime.
Exit Codes
| Code | Meaning |
|---|---|
| 0 | Success |
| 2 | Usage error (wrong arguments) |
| 3 | Resource not found |
| 5 | API error (upstream issue) |
| 7 | Rate limited (wait and retry) |
| 10 | Config error |
Argument Parsing
Parse $ARGUMENTS:
- Empty,
help, or--help→ showisitagentready-pp-cli --helpoutput - Starts with
install→ ends withmcp→ MCP installation; otherwise → see Prerequisites above - Anything else → Direct Use (execute as CLI command with
--agent)
MCP Server Installation
- Install the MCP server:
go install github.com/mvanhorn/printing-press-library/library/developer-tools/isitagentready/cmd/isitagentready-pp-mcp@latest - Register with Claude Code:
claude mcp add isitagentready-pp-mcp -- isitagentready-pp-mcp - Verify:
claude mcp list
Direct Use
- Check if installed:
which isitagentready-pp-cliIf not found, offer to install (see Prerequisites at the top of this skill). - Match the user query to the best command from the Unique Capabilities and Command Reference above.
- Execute with the
--agentflag:isitagentready-pp-cli <command> [subcommand] [args] --agent - If ambiguous, drill into subcommand help:
isitagentready-pp-cli <command> --help.