mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-10 08:05:14 +02:00
* feat(setup): add Claude Desktop target and MCP-first agent setup Adds `ktx mcp stdio` and a `claude-desktop` setup target that generates a local plugin ZIP wiring the analytics skill and a stdio MCP config. Replaces the CLI-only agent install mode with MCP+analytics (default) and an optional admin CLI skill, renames the research skill to analytics, and lets interactive setup pick project vs global scope when every target supports it. Extracts a shared MCP server factory used by both HTTP and stdio entrypoints. * Add MCP agent client setup support * Polish setup output formatting * Add MCP tool polish design spec Design for slimming the MCP-registered surface from 25 to 11 tools, introducing memory_ingest, applying the per-tool polish kit (annotations, outputSchema, .describe(), in-band error wrapping, union-drift fixes, type-narrowed jsonToolResult), emitting progress notifications on sql_execution + sl_query, and refining the ktx-analytics SKILL.md to match. * Refine MCP tool polish design spec after adversarial review iteration 1 * Refine MCP tool polish design spec after adversarial review iteration 2 * Refine MCP tool polish design spec after adversarial review iteration 3 * refactor(context): rename memory capture service to ingest * feat(mcp): slim research tool surface * refactor(mcp): remove admin ports from server factory * refactor(cli): rename text ingest memory port * docs: update analytics skill for memory ingest * chore: verify mcp surface rename * Add MCP tool polish v1 surface change plan * feat(context): polish mcp tool metadata * fix(context): enforce resolved semantic layer compute sources * feat(context): emit mcp query progress stages * fix(context): keep mcp progress event internal * Add MCP tool polish v1 metadata & progress plan * Fix CI snapshot and docs checks
179 lines
5.2 KiB
TypeScript
179 lines
5.2 KiB
TypeScript
import type { Writable } from 'node:stream';
|
|
import {
|
|
cancel,
|
|
confirm,
|
|
intro,
|
|
isCancel,
|
|
log,
|
|
multiselect,
|
|
note,
|
|
password,
|
|
select,
|
|
text,
|
|
} from '@clack/prompts';
|
|
import type { KtxCliIo } from './cli-runtime.js';
|
|
import { withMenuOptionsSpacing, withTextInputNavigation } from './prompt-navigation.js';
|
|
import { withSetupInterruptConfirmation } from './setup-interrupt.js';
|
|
|
|
export interface KtxSetupPromptOption<Value extends string = string> {
|
|
value: Value;
|
|
label: string;
|
|
hint?: string;
|
|
disabled?: boolean;
|
|
}
|
|
|
|
interface KtxSetupSelectOptions<Value extends string = string> {
|
|
message: string;
|
|
options: Array<KtxSetupPromptOption<Value>>;
|
|
initialValue?: Value;
|
|
maxItems?: number;
|
|
}
|
|
|
|
interface KtxSetupMultiselectOptions<Value extends string = string> {
|
|
message: string;
|
|
options: Array<KtxSetupPromptOption<Value>>;
|
|
required?: boolean;
|
|
initialValues?: Value[];
|
|
maxItems?: number;
|
|
cursorAt?: Value;
|
|
}
|
|
|
|
interface KtxSetupTextOptions {
|
|
message: string;
|
|
placeholder?: string;
|
|
initialValue?: string;
|
|
defaultValue?: string;
|
|
}
|
|
|
|
interface KtxSetupPasswordOptions {
|
|
message: string;
|
|
mask?: string;
|
|
}
|
|
|
|
export interface KtxSetupPromptAdapter {
|
|
select(options: KtxSetupSelectOptions): Promise<string>;
|
|
multiselect(options: KtxSetupMultiselectOptions): Promise<string[]>;
|
|
text(options: KtxSetupTextOptions): Promise<string | undefined>;
|
|
password(options: KtxSetupPasswordOptions): Promise<string | undefined>;
|
|
cancel(message: string): void;
|
|
log(message: string): void;
|
|
}
|
|
|
|
export interface KtxSetupPromptAdapterOptions {
|
|
selectCancelValue: 'back' | 'exit';
|
|
multiselectCancelValue?: 'back';
|
|
confirmEmptyOptionalMultiselect?: boolean;
|
|
cancelOnSelectCancel?: boolean;
|
|
cancelOnMultiselectCancel?: boolean;
|
|
cancelMessage?: string;
|
|
}
|
|
|
|
const DEFAULT_SETUP_CANCEL_MESSAGE = 'Setup cancelled.';
|
|
|
|
export function createKtxSetupPromptAdapter(options: KtxSetupPromptAdapterOptions): KtxSetupPromptAdapter {
|
|
const cancelMessage = options.cancelMessage ?? DEFAULT_SETUP_CANCEL_MESSAGE;
|
|
const cancelOnSelectCancel = options.cancelOnSelectCancel ?? true;
|
|
const cancelOnMultiselectCancel = options.cancelOnMultiselectCancel ?? true;
|
|
const multiselectCancelValue = options.multiselectCancelValue ?? 'back';
|
|
|
|
return {
|
|
async select(promptOptions) {
|
|
const value = await withSetupInterruptConfirmation(() => select(withMenuOptionsSpacing(promptOptions)));
|
|
if (isCancel(value)) {
|
|
if (cancelOnSelectCancel) {
|
|
cancel(cancelMessage);
|
|
}
|
|
return options.selectCancelValue;
|
|
}
|
|
return String(value);
|
|
},
|
|
async multiselect(promptOptions) {
|
|
while (true) {
|
|
const value = await withSetupInterruptConfirmation(() => multiselect(withMenuOptionsSpacing(promptOptions)));
|
|
if (isCancel(value)) {
|
|
if (cancelOnMultiselectCancel) {
|
|
cancel(cancelMessage);
|
|
}
|
|
return [multiselectCancelValue];
|
|
}
|
|
const selected = [...value].map(String);
|
|
if (
|
|
selected.length === 0 &&
|
|
!promptOptions.required &&
|
|
options.confirmEmptyOptionalMultiselect === true
|
|
) {
|
|
const skipConfirmed = await confirm({
|
|
message: 'Nothing selected. Skip this step?',
|
|
initialValue: false,
|
|
});
|
|
if (isCancel(skipConfirmed)) {
|
|
cancel(cancelMessage);
|
|
return [multiselectCancelValue];
|
|
}
|
|
if (!skipConfirmed) {
|
|
continue;
|
|
}
|
|
}
|
|
return selected;
|
|
}
|
|
},
|
|
async text(promptOptions) {
|
|
const value = await withSetupInterruptConfirmation(() =>
|
|
text({ ...promptOptions, message: withTextInputNavigation(promptOptions.message) }),
|
|
);
|
|
return isCancel(value) ? undefined : String(value);
|
|
},
|
|
async password(promptOptions) {
|
|
const value = await withSetupInterruptConfirmation(() =>
|
|
password({ ...promptOptions, message: withTextInputNavigation(promptOptions.message) }),
|
|
);
|
|
return isCancel(value) ? undefined : String(value);
|
|
},
|
|
cancel(message) {
|
|
cancel(message);
|
|
},
|
|
log(message) {
|
|
log.info(message);
|
|
},
|
|
};
|
|
}
|
|
|
|
interface KtxSetupNoteOptions {
|
|
format?: (line: string) => string;
|
|
}
|
|
|
|
export interface KtxSetupUiAdapter {
|
|
intro(title: string, io: KtxCliIo): void;
|
|
note(message: string, title: string, io: KtxCliIo, options?: KtxSetupNoteOptions): void;
|
|
}
|
|
|
|
function isWritableTtyOutput(output: KtxCliIo['stdout']): output is KtxCliIo['stdout'] & Writable {
|
|
return (
|
|
output.isTTY === true &&
|
|
typeof (output as { on?: unknown }).on === 'function' &&
|
|
typeof (output as { columns?: unknown }).columns !== 'undefined'
|
|
);
|
|
}
|
|
|
|
export function createKtxSetupUiAdapter(): KtxSetupUiAdapter {
|
|
return {
|
|
intro(title, io) {
|
|
if (isWritableTtyOutput(io.stdout)) {
|
|
intro(title, { output: io.stdout });
|
|
return;
|
|
}
|
|
io.stdout.write(`${title}\n`);
|
|
},
|
|
note(message, title, io, options) {
|
|
if (isWritableTtyOutput(io.stdout)) {
|
|
note(message, title, {
|
|
output: io.stdout,
|
|
...(options?.format ? { format: options.format } : {}),
|
|
});
|
|
return;
|
|
}
|
|
io.stdout.write(`\n${title}:\n`);
|
|
io.stdout.write(`${message}\n`);
|
|
},
|
|
};
|
|
}
|