AI Resources
Agent Quickstart
A task-first route for coding agents that need to understand ktx docs.
This page is for coding assistants reading or citing the ktx docs. It is intentionally limited to documentation lookup, docs navigation, and safe command discovery.
For Markdown endpoints, use Markdown Access. For reusable task prompts, use Prompt Recipes. To install ktx into an agent client, use Agent Clients.
First read
Agents should start with the smallest source that answers the task:
/llms.txt- discover the docs and preferred entry points.- The relevant per-page Markdown URL, for example
/docs/getting-started/quickstart.md. /llms-full.txt- use only when the task needs broad context across many pages.
Task router
| User asks the agent to explain... | Read first | Then read |
|---|---|---|
| What ktx does | Introduction | The Context Layer |
| How to start from a checkout | Quickstart | ktx setup |
| How to check project readiness | ktx status | Quickstart |
| How context gets built | Building Context | ktx ingest |
| How semantic YAML works | Writing Context | ktx sl |
| How machine-readable CLI output is shaped | ktx sl | ktx wiki |
Operating workflow
Use this workflow when the user asks an assistant to answer a ktx docs question:
- Read
/llms.txt. - Pick the smallest relevant
.mdpage. - Use
/llms-full.txtonly if the answer needs multiple sections of the docs. - Quote commands exactly from the docs page.
- If a command affects a local project, ask the user before assuming credentials or live services are available.
Docs lookup from a shell
curl https://docs.kaelio.com/ktx/llms.txt curl https://docs.kaelio.com/ktx/docs/getting-started/quickstart.md
Guardrails
- Do not invent CLI flags. Fetch the relevant CLI reference page.
- Do not scrape rendered HTML when a
.mdroute exists. - Do not assume docs lookup requires agent-client configuration.
- Do not include credentials or secrets in prompts, URLs, or copied docs snippets.
- When docs and local CLI behavior disagree, prefer the local CLI output and mention the mismatch.