Agent tooling
Contracko publishes a machine-readable layer for the full marketing site and docs so people and AI tools can access the same content consistently.
Who this is for
| Audience | What to do first |
|---|---|
| User | Use Copy for LLM or View as Markdown on docs/blog article pages |
| Engineer | Start from https://contracko.com/llms.txt and follow links |
| LLM / crawler | Discover llms.txt and sitemap-llms.xml, then fetch markdown URLs |
Quick links
- https://contracko.com/llms.txt
- https://contracko.com/sitemap-llms.xml
- https://contracko.com/docs.md
- https://contracko.com/nl/docs.md
- https://contracko.com/blog.md
- https://contracko.com/nl/blog.md
For users
On long-form docs and blog pages, use:
Copy for LLMto copy markdown content directly.View as Markdownto open the markdown endpoint in a new tab.
This gives you a clean, text-first version of the page without navigation noise.
For engineers and integrations
Recommended flow:
- Read
llms.txtfor a curated index. - Read
sitemap-llms.xmlfor exhaustive markdown discovery. - Fetch markdown endpoints with
Accept: text/markdown.
Example:
curl -H "Accept: text/markdown" https://contracko.com/docs/llm-agent-access/index.html.md
For LLM agents and crawlers
Discovery sources:
- Root
llms.txt robots.txtsitemap entriessitemap-llms.xml<link rel="alternate" type="text/markdown">hints on HTML pages
URL patterns
| Page type | Pattern | Example |
|---|---|---|
| Root page | /index.html.md | /index.html.md |
| Top-level page | /<slug>.md | /pricing.md |
| Nested page | /<path>/index.html.md | /blog/music-rights-management/index.html.md |
| Dutch localized page | /nl/... + markdown pattern | /nl/docs/llm-agent-toegang/index.html.md |
What markdown includes
Markdown output preserves content that is useful for reading and retrieval:
- Headings, paragraphs, links, lists, code blocks
- Tables as markdown tables
- FAQ and accordion answers
- English and Dutch localized content
Layout chrome and non-content utility blocks are removed.