Kolibia Agent-Ready makes singular WordPress content available as Markdown so tools and agents do not have to scrape HTML. Behaviour follows common content negotiation patterns (similar in spirit to Markdown for Agents on Cloudflare): clients that prefer Markdown can request it explicitly.
What is included today
post, page, attachment on a typical site), a single-item URL can return Content-Type: text/markdown; charset=UTF-8 instead of the themed HTML page.Accept header that lists text/markdown (requests with text/markdown;q=0 are ignored).output_format=md (handy for browsers and manual testing).the_content filters, then converted to Markdown using the league/html-to-markdown library. A short YAML front matter block includes title and permalink.<link rel="alternate" type="text/markdown" href="…?output_format=md" /> so clients can find the Markdown URL.Developer filters
kolibia_ar_markdown_post_types — Defaults to all public, built-in post types from core; override to add custom post types or remove types (e.g. attachment).kolibia_ar_post_markdown — Filter the final Markdown string.kolibia_ar_markdown_password_required — Filter the Markdown shown when a password is required.Roadmap
Further “agent readiness” features (broader API discovery, additional formats) may be added in future releases.