ktxby Kaelio
Docs
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:

  1. /llms.txt - discover the docs and preferred entry points.
  2. The relevant per-page Markdown URL, for example /docs/getting-started/quickstart.md.
  3. /llms-full.txt - use only when the task needs broad context across many pages.

Task router

User asks the agent to explain...Read firstThen read
What ktx doesIntroductionThe Context Layer
How to start from a checkoutQuickstartktx setup
How to check project readinessktx statusQuickstart
How context gets builtBuilding Contextktx ingest
How semantic YAML worksWriting Contextktx sl
How machine-readable CLI output is shapedktx slktx wiki

Operating workflow

Use this workflow when the user asks an assistant to answer a ktx docs question:

  1. Read /llms.txt.
  2. Pick the smallest relevant .md page.
  3. Use /llms-full.txt only if the answer needs multiple sections of the docs.
  4. Quote commands exactly from the docs page.
  5. 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 .md route 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.