AIP v0.1 — Open Draft

Make the web legible
to AI agents.

The Agent Intent Protocol is a lightweight, open standard that gives any web application a machine-readable intent layer. One JSON file. One well-known URL. Every agent can find you.

yourdomain.com/.well-known/jin.json
{
  "aip_version": "0.1",
  "app": {
    "name": "Your App",
    "description": "What your app does"
  },
  "intents": [
    {
      "id": "search_products",
      "triggers": ["find a product", "search items"],
      "method": "GET",
      "endpoint": "/api/v1/products"
    }
  ]
}

Three steps to agent-ready

Add AIP to any app in under an hour. No rewrite required.

01

Generate

Run npx @meetjin/cli init to scan your codebase and generate a jin.json scaffold automatically.

$ npx @meetjin/cli init
02

Validate

Review your intents, add natural language triggers, and validate against the AIP spec.

$ npx @meetjin/cli validate
03

Publish

Deploy to /.well-known/jin.json and list your app on the registry for all agents to discover.

$ npx @meetjin/cli publish

The agentic web needs a foundation.

AIP is open (CC0), simple (one JSON file), and incremental (add to any existing app). Join the registry and make your app discoverable by every AI agent.