RevoGrid Pro publishes several documentation formats for AI agents. They all describe the same portal documentation, but serve different retrieval workflows. Start with the smallest source that answers the task, then retrieve more context only when needed.
Fetch https://pro.rv-grid.com/llms.txt when the agent needs to find the right RevoGrid page before reading it. The index favors high-signal pages, groups the remaining documentation by topic, and points to the full corpus and skill formats.
This is the best default for an agent that can follow links. It avoids placing the entire documentation corpus into context before the agent knows whether the task concerns Pivot, Gantt, filtering, or a core API.
1
Read https://pro.rv-grid.com/llms.txt. Find the relevant RevoGrid Pro documentation,
2
then fetch only the pages needed for this task before proposing an implementation.
https://pro.rv-grid.com/llms-full.txt contains every portal documentation page as normalized Markdown. Each section includes its portal URL and source path, so an agent can trace guidance back to its documentation page.
Use it for a research or offline workflow that cannot follow many links. Avoid loading it by default if the agent has a limited context window; llms.txt or the split skill is usually more efficient.
llms-skill/ returns the same index and exposes the individual references it links to.
revogrid-pro.skill packages that index and all reference files as a downloadable skill archive.
The index groups references by product area. Read the index first, then fetch only the referenced Markdown files that match the task. This gives an agent structured guidance without sending unrelated documentation into its context.
1
Read https://pro.rv-grid.com/llms-skill.txt first. Follow only the references for
2
the feature I am implementing, and validate API details against local TypeScript types.
Use the installable skill when supported
If your agent supports skill archives, install revogrid-pro.skill to make the split documentation available as a reusable local skill. Otherwise, use the public llms-skill.txt URL and reference links directly.
The public files are documentation exports: they are ideal for direct HTTP retrieval and do not require a Pro token. MCP is different—it is an authenticated tool connection for agents that support MCP and need Pro-only examples, feature resolution, migration notes, or typed plugin context.