feat(cli)!: remove ktx agent command

This commit is contained in:
Andrey Avtomonov 2026-05-13 12:01:49 +02:00
parent 46b013e32a
commit cf424cb09e
41 changed files with 501 additions and 1896 deletions

View file

@ -156,14 +156,12 @@ describe('standalone example docs', () => {
const servingAgents = await readText('docs-site/content/docs/guides/serving-agents.mdx');
for (const command of [
'ktx agent tools --json',
'ktx agent context --json',
'ktx agent sl list --json',
'ktx agent sl read orders --json',
'ktx agent sl query --json',
'ktx agent wiki search "revenue recognition" --json',
'ktx agent wiki read order-status-definitions --json',
'ktx agent sql execute --json',
'ktx status --json',
'ktx sl list --json',
'ktx sl read orders --json',
'ktx sl query --json',
'ktx wiki search "revenue recognition" --json',
'ktx wiki read order-status-definitions --json',
]) {
assert.match(servingAgents, new RegExp(command.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')));
}