Skip to content

AI Tooling

How AI tools can consume Bkper docs and context.

Every page on bkper.com is available as clean Markdown so AI tools can read it, understand the platform, and help you use or build with it.

The root index of all pages is available at /llms.txt, and a single-file dump of all site content at /llms-full.txt.

Page Options

Every documentation page and app detail page includes a Page Options dropdown in the right sidebar:

Page Options dropdown showing copy, view, and AI actions

Copy the page as Markdown, open it directly in Claude or ChatGPT, or grab a ready-made prompt for your AI tool of choice.

Page Access

Marketing pages, documentation, and app listings are all available as Markdown. Navigation chrome (sidebar, header, footer) is stripped, reducing token usage for AI tools.

.md suffix

Append .md to any page URL:

https://bkper.com/about # HTML (browser)
https://bkper.com/about.md # Markdown (AI tools)
https://bkper.com/docs/core-concepts.md
Terminal window
curl https://bkper.com/docs/core-concepts.md

Section .md

Section URLs return prose from the section index plus a listing of child articles and subsections:

Terminal window
curl https://bkper.com/docs.md # Documentation root
curl https://bkper.com/docs/guides.md # Guides section
curl https://bkper.com/apps.md # Apps directory

Accept header

Request Markdown via content negotiation by including text/markdown in the Accept header. This works with the canonical page URL — no URL modification needed:

Terminal window
curl https://bkper.com/docs/core-concepts \
-H "Accept: text/markdown"

The response includes an x-markdown-tokens header with the estimated token count, which agents can use to plan context window usage:

HTTP/2 200
content-type: text/markdown; charset=utf-8
vary: Accept
x-markdown-tokens: 1850

API References

API reference endpoints compile the library overview and full spec into a single compact document optimized for agent workflows:

Compiled Markdown vs raw source (overview + openapi.json or .d.ts):

LibraryRaw (tokens).md (tokens)Reduction
REST API~38K~9K
bkper-js~32K~18K1.8×
bkper-gs~22K~12K1.9×
bkper-api-types~12K~5K2.4×
bkper-web-auth~2K~2K~1×