Quickstart

Run your first AI-Readiness scan in a few minutes. The free plan scans your homepage; paid plans let you scan any page on your site and unlock Marketing Signal and Website Security.

1. Add your site

Create an account, then add a project by entering your domain. You confirm you are authorized to audit the public site; index365 only reads publicly visible pages and never logs into private systems.

One project covers the whole domain: its apex and every subdomain (staging.yoursite.com, preview.yoursite.com, and similar), so you register once per site rather than once per subdomain.

2. Run the free homepage scan

From the project, run the AI-Readiness scan. The free plan includes two homepage scans each month. The scan reads your page the way an answer engine does: crawlability, metadata, schema, content structure, and how quotable your value proposition is. It finishes in about a minute.

What the score means

AI-Readiness returns a 0-100 score with severity-ranked findings. The score reflects how ready the page is for AI search and citation; each finding names the consequence and a recommended fix.

3. Review and act on findings

Open the report to see findings grouped by area (discoverability, structured data, metadata, content, answerability) and severity. Each finding includes the affected URL, the evidence, and a recommended fix. You can copy a ready-to-paste fix prompt straight into your coding agent.

Run it from the CLI instead

Prefer the terminal? Install the CLI, run index365 login, and pick how you want to sign in (Browser or API key), then run the same scan. index365 scanresolves your project from the URL's domain and waits until the result is ready, so the score arrives in your terminal when the scan is over. See Authentication for the browser flow and the CI/headless key option.

bash
npm i -g @index365/cli
index365 login                                   # pick Browser (recommended) or API key
index365 projects create --domain yoursite.com --name "Yoursite"
index365 scan https://yoursite.com               # waits, then prints the score and runId
RUN_ID="<runId printed above>"
index365 findings list --run "$RUN_ID" --severity critical --json
index365 report "$RUN_ID"                        # compact, agent-ready JSON context
Drive it from your agent

Install the agent skills with npx skills add index365usa/agent-skills and your coding agent can run a scan, apply the fixes in your repo, and re-scan to confirm the score moved, all in one flow.

Next steps