Four steps to make your documentation globally queryable by any AI system.
WordPress: Install the MX Cogify plugin — it handles manifest generation, Schema.org, and REGINALD registration automatically.
Drupal, Shopify, Wix, Squarespace: Free plugins available for all major platforms. See the full plugins page.
Adobe EDS: Copy the mx-cogify block into your project. Use the CLI tool for registration.
Any Platform: Host a .well-known/mx-cogs.json manifest on your domain. REGINALD's attestation pipeline crawls it.
Call POST /api/v1/subscribe with your namespace and email. Complete the Stripe checkout. Your API token is generated automatically.
curl -X POST https://reginald.allabout.network/api/v1/subscribe \
-H "Content-Type: application/json" \
-d '{"namespace":"your-namespace","email":"you@example.com"}'
Use your API token to register. REGINALD validates your manifest, signs the pointer records, and makes your COGs queryable worldwide.
curl -X POST https://reginald.allabout.network/api/v1/register \
-H "Authorization: Bearer reg_your_token..." \
-H "Content-Type: application/json" \
-d '{"namespace":"your-namespace","domain":"yoursite.com","manifest_url":"https://yoursite.com/.well-known/mx-cogs.json"}'
Check your registration status and see your COGs in the registry.
curl https://reginald.allabout.network/api/v1/publisher/status \
-H "Authorization: Bearer reg_your_token..."