Skip to content

AI Tooling

Use AI tools to get the most out of Bkper and its documentation.

Bkper provides structured, machine-readable access to its entire site and documentation so that AI tools can understand the platform and help you use or build with it.

llms.txt

Bkper implements the llms.txt standard with a single entry point at the site root:

  • /llms.txt — site-wide index listing all sections with .md links and agent instructions.

Markdown Access

Every page on bkper.com — marketing pages, documentation, and app listings — is available as clean Markdown. Navigation chrome (sidebar, header, footer) is stripped, significantly 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

This means an AI agent can navigate from /llms.txt to any article in at most two hops: root → section .md → article .md.

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

Skills

Skills are curated instruction sets that teach AI assistants how to work with a specific domain — the Bkper skill gives an AI persistent knowledge of the transaction model, account types, query syntax, and SDK conventions without consuming context tokens on every session.

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 any AI tool.