| name | pp-isitagentready | |||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| description | The terminal scanner for AI-agent readiness: every check the web tool runs, plus copy-paste fixes, CI gating, scan history, and a local store the web UI has no answer for. Trigger phrases: `scan my site for agent readiness`, `is my site agent-ready`, `what's my agent readiness level`, `how do I make my site ready for AI agents`, `fix my site for AI agents`, `check llms.txt and MCP discovery on this site`, `use isitagentready`, `run isitagentready`. | |||||||||||||||||
| author | bobe | |||||||||||||||||
| license | Apache-2.0 | |||||||||||||||||
| argument-hint | <command> [args] | install cli|mcp | |||||||||||||||||
| allowed-tools | Read Bash | |||||||||||||||||
| metadata |
|
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.4 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@latestIf --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 gives you a one-shot score in a browser tab with no memory. This CLI turns it into a repeatable loop: check any site, 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 so history and open-advice tell you exactly what changed and what is still unfixed.
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.
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).
These capabilities aren't available in any other tool for this API.
-
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 3
-
open-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
-
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 --agent -
diff— 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
-
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.com
-
batch— 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
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
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.
isitagentready-pp-cli advice https://example.com --copyPrints every next-level fix prompt as one pasteable block, ready to drop into a coding agent.
isitagentready-pp-cli open-advice --agentCross-site backlog of every check still failing, with its fix prompt, from your local scan history.
isitagentready-pp-cli report https://example.com --agent --only-failing --select checks.discovery.mcpServerCard.status,checks.discovery.mcpServerCard.messageA full scan is large and deeply nested; --select pulls just the dotted fields you want so an agent does not parse tens of KB.
isitagentready-pp-cli gate https://example.com --min-level 3 --no-regressExits non-zero if the site is below level 3 or any previously-passing check regressed; safe for CI.
isitagentready-pp-cli compare https://example.com https://isitagentready.comPrints a per-standard matrix of which agent-readiness checks each site implements.
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.
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,status
-
Previewable —
--dry-runshows the request without sending -
Non-interactive — never prompts, every input is a flag
-
Explicit retries — use
--idempotentonly when an already-existing create should count as success
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.
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.
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.
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.
| 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 |
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)
- 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
- 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.