Manage knowledge pages in your KTX project. Knowledge pages are Markdown documents that capture business definitions, rules, and gotchas. Agents search them for context when answering questions about your data.
# List all wiki pagesktx wiki list# Read a specific wiki pagektx wiki read revenue-definitions# Search wiki pagesktx wiki search "monthly recurring revenue"# Write a global knowledge pagektx wiki write revenue-definitions \ --summary "Canonical revenue metric definitions" \ --content "## MRR\nMonthly Recurring Revenue is calculated as..."# Write a user-scoped knowledge pagektx wiki write my-notes \ --scope user \ --summary "Personal analysis notes" \ --content "Things to check when revenue numbers look off..."# Write a page with tags and referencesktx wiki write churn-rules \ --summary "Churn calculation business rules" \ --content "A customer is considered churned when..." \ --tag finance \ --tag retention \ --sl-ref customers \ --sl-ref subscriptions# Write a page with external referencesktx wiki write data-freshness \ --summary "Data pipeline SLAs and freshness guarantees" \ --content "The orders table refreshes every 15 minutes..." \ --ref "https://wiki.example.com/data-pipelines"