Skip to content

Aembit publishes its documentation in two machine-readable formats for AI coding assistants and large language models (LLMs). The Open Knowledge Format (OKF) bundle is a file tree your agent clones and navigates with file tools. The llms.txt files are flat text you feed directly into a model’s context. Both cover the same material: workload identity concepts, Client Workload configuration, Access Policies, Trust Providers, and Credential Providers.

Both formats carry the same documentation. Pick the one that matches how your AI tool consumes context.

  • Use the OKF bundle when your agent has a persistent workspace and file tools (Claude Code, Cursor, Copilot agents). It clones the bundle once and reads only the files each task needs, so it never loads a guide-sized blob into context.
  • Use llms.txt for one-shot context stuffing—a chat window or API call where you paste documentation directly into the prompt and have no filesystem to navigate.

When in doubt, prefer the OKF bundle for coding agents and llms.txt for chat assistants.

The OKF bundle is Aembit’s full documentation as a tree of small, cross-linked Markdown files. Each file carries type, interface, and tags frontmatter. An agent clones the bundle into your project and navigates it with file tools rather than loading the whole corpus into context. It reads a folder’s index.md, filters the entries by frontmatter, then follows the links it needs.

Add this snippet to your project’s CLAUDE.md or AGENTS.md so your AI assistant knows the bundle exists and how to use it:

## Aembit documentation (OKF bundle)
When configuring, integrating with, or troubleshooting Aembit, consult the local
Aembit documentation bundle rather than guessing or searching the web.
First-time setup (run once):
git clone https://github.com/Aembit/aembit_docs_okf aembit-docs
# no git? download and extract the tarball instead:
# curl -fsSL "https://docs.aembit.io/okf.tar.gz" | tar -xz
To answer an Aembit question:
1. Read `aembit-docs/index.md` first — it explains how to navigate the bundle.
2. Open the relevant folder's `index.md`, then filter its files by the `type`,
`interface`, and `tags` frontmatter to find the ones that fit the task.
3. Read only those two or three concept files, and follow their `## Related`
links to reach counterparts in other guides.
Keep it current with `git -C aembit-docs pull`.

Feed these resources to AI coding assistants (Claude, GitHub Copilot, ChatGPT) when you need help implementing Aembit integrations.

Example workflows:

  • Generating API integration code: Provide llms-api-cloud-endpoints.txt or llms-api-edge-endpoints.txt when asking your LLM to generate API client code
  • Understanding configuration options: Use llms-full.txt when asking questions about Aembit features, concepts, and configuration patterns
  • Troubleshooting: Provide relevant resource to your LLM along with error messages for context-aware debugging suggestions

Core Aembit documentation including Get Started Guide, User Guide, CLI Guide, and support information. All variants cover workload identity concepts, Client Workload configuration, Access Policies, Trust Providers, and Credential Providers.

  • llms.txt - Index of every page, each linking to that page’s Markdown (smallest download, load only the pages you need)
  • llms-full.txt - Complete main documentation including advanced configuration and examples (comprehensive)

Complete API reference for the Aembit Cloud API, separated into focused resources for efficient token usage. Covers API endpoints, authentication, access management, policy configuration, and credential provider operations.

Complete API reference for the Aembit Edge API, separated into focused resources for efficient token usage. Covers Edge deployment, Kubernetes integration, local authentication, and workload identity verification.