mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
* feat(cli): clean up dev command surface * test: align CI expectations with CLI cleanup * test(cli): update slow test command expectations
386 lines
12 KiB
TypeScript
386 lines
12 KiB
TypeScript
import { Command, InvalidArgumentError } from '@commander-js/extra-typings';
|
|
import type { KtxCliDeps, KtxCliIo, KtxCliPackageInfo } from './cli-runtime.js';
|
|
import { registerAgentCommands } from './commands/agent-commands.js';
|
|
import { registerConnectionCommands } from './commands/connection-commands.js';
|
|
import { registerIngestCommands } from './commands/ingest-commands.js';
|
|
import { registerWikiCommands } from './commands/knowledge-commands.js';
|
|
import { registerScanCommands } from './commands/scan-commands.js';
|
|
import { registerSetupCommands } from './commands/setup-commands.js';
|
|
import { registerSlCommands } from './commands/sl-commands.js';
|
|
import { registerStatusCommands } from './commands/status-commands.js';
|
|
import { registerDevCommands } from './dev.js';
|
|
import { findNearestKtxProjectDir, resolveKtxProjectDir } from './project-resolver.js';
|
|
import { profileMark, profileSpan } from './startup-profile.js';
|
|
|
|
profileMark('module:cli-program');
|
|
|
|
export interface KtxCliCommandContext {
|
|
io: KtxCliIo;
|
|
deps: KtxCliDeps;
|
|
packageInfo: KtxCliPackageInfo;
|
|
setExitCode: (code: number) => void;
|
|
runInit: (args: { projectDir: string; projectName?: string; force: boolean }, io: KtxCliIo) => Promise<number>;
|
|
writeDebug?: (command: string, commandContext: CommandWithGlobalOptions) => void;
|
|
}
|
|
|
|
export interface OutputModeOptions {
|
|
plain?: boolean;
|
|
json?: boolean;
|
|
viz?: boolean;
|
|
input?: boolean;
|
|
}
|
|
|
|
interface KtxCommanderProgramOptions {
|
|
runInit: (args: { projectDir: string; projectName?: string; force: boolean }, io: KtxCliIo) => Promise<number>;
|
|
}
|
|
|
|
export interface BuildKtxProgramOptions {
|
|
io: KtxCliIo;
|
|
deps: KtxCliDeps;
|
|
packageInfo: KtxCliPackageInfo;
|
|
runInit: (args: { projectDir: string; projectName?: string; force: boolean }, io: KtxCliIo) => Promise<number>;
|
|
setExitCode?: (code: number) => void;
|
|
}
|
|
|
|
type CommanderExitLike = { exitCode: number; code: string; message: string };
|
|
|
|
interface KtxGlobalOptionValues {
|
|
projectDir?: string;
|
|
debug?: boolean;
|
|
}
|
|
|
|
type CommandPathNode = CommandWithGlobalOptions & {
|
|
name: () => string;
|
|
parent?: CommandPathNode | null;
|
|
};
|
|
|
|
const PROJECT_AWARE_ROOT_COMMANDS = new Set(['setup', 'connection', 'ingest', 'wiki', 'sl', 'status', 'scan']);
|
|
|
|
export interface CommandWithGlobalOptions {
|
|
opts: () => object;
|
|
optsWithGlobals?: () => object;
|
|
}
|
|
|
|
function isCommanderExit(error: unknown): error is CommanderExitLike {
|
|
return (
|
|
typeof error === 'object' &&
|
|
error !== null &&
|
|
'exitCode' in error &&
|
|
typeof (error as { exitCode: unknown }).exitCode === 'number' &&
|
|
'code' in error &&
|
|
typeof (error as { code: unknown }).code === 'string'
|
|
);
|
|
}
|
|
|
|
export function collectOption(value: string, previous: string[] = []): string[] {
|
|
return [...previous, value];
|
|
}
|
|
|
|
export function parsePositiveIntegerOption(value: string): number {
|
|
const parsed = Number(value);
|
|
if (!Number.isInteger(parsed) || parsed < 1) {
|
|
throw new InvalidArgumentError('must be a positive integer');
|
|
}
|
|
return parsed;
|
|
}
|
|
|
|
export function parseNonNegativeIntegerOption(value: string): number {
|
|
const parsed = Number(value);
|
|
if (!Number.isInteger(parsed) || parsed < 0) {
|
|
throw new InvalidArgumentError('must be a non-negative integer');
|
|
}
|
|
return parsed;
|
|
}
|
|
|
|
export function parseBooleanStringOption(value: string): boolean {
|
|
if (value === 'true') {
|
|
return true;
|
|
}
|
|
if (value === 'false') {
|
|
return false;
|
|
}
|
|
throw new InvalidArgumentError('must be true or false');
|
|
}
|
|
|
|
export function parseSafeConnectionIdOption(value: string): string {
|
|
if (!/^[a-zA-Z0-9][a-zA-Z0-9_-]*$/.test(value)) {
|
|
throw new InvalidArgumentError(`Unsafe connection id: ${value}`);
|
|
}
|
|
return value;
|
|
}
|
|
|
|
export function parseNonEmptyAssignmentOption(value: string): { key: string; value: string } {
|
|
const separatorIndex = value.indexOf('=');
|
|
if (separatorIndex <= 0 || separatorIndex === value.length - 1) {
|
|
throw new InvalidArgumentError('must be a non-empty <key>=<value> assignment');
|
|
}
|
|
return {
|
|
key: value.slice(0, separatorIndex),
|
|
value: value.slice(separatorIndex + 1),
|
|
};
|
|
}
|
|
|
|
function optionsWithGlobals(command: CommandWithGlobalOptions): KtxGlobalOptionValues {
|
|
const options = command.optsWithGlobals ? command.optsWithGlobals() : command.opts();
|
|
const values = options as { projectDir?: unknown; debug?: unknown };
|
|
return {
|
|
projectDir: typeof values.projectDir === 'string' ? values.projectDir : undefined,
|
|
debug: typeof values.debug === 'boolean' ? values.debug : undefined,
|
|
};
|
|
}
|
|
|
|
function commandOptions(command: CommandWithGlobalOptions): Record<string, unknown> {
|
|
return (command.optsWithGlobals ? command.optsWithGlobals() : command.opts()) as Record<string, unknown>;
|
|
}
|
|
|
|
function commandPath(command: CommandPathNode): string[] {
|
|
const path: string[] = [];
|
|
let current: CommandPathNode | null | undefined = command;
|
|
|
|
while (current) {
|
|
path.unshift(current.name());
|
|
current = current.parent;
|
|
}
|
|
|
|
return path;
|
|
}
|
|
|
|
function isProjectAwareCommand(path: string[]): boolean {
|
|
if (path.includes('__complete')) {
|
|
return false;
|
|
}
|
|
|
|
const rootCommand = path[1];
|
|
if (rootCommand === 'dev') {
|
|
return path[2] !== undefined && path[2] !== 'runtime';
|
|
}
|
|
return rootCommand !== undefined && PROJECT_AWARE_ROOT_COMMANDS.has(rootCommand);
|
|
}
|
|
|
|
function shouldSuppressProjectDirLine(path: string[], options: Record<string, unknown>): boolean {
|
|
const commandPathKey = path.join(' ');
|
|
if (commandPathKey === 'ktx dev init') {
|
|
return true;
|
|
}
|
|
|
|
if (
|
|
commandPathKey === 'ktx status' &&
|
|
typeof options.projectDir !== 'string' &&
|
|
process.env.KTX_PROJECT_DIR === undefined &&
|
|
!findNearestKtxProjectDir(process.cwd())
|
|
) {
|
|
return true;
|
|
}
|
|
|
|
if (options.viz === true) {
|
|
return true;
|
|
}
|
|
|
|
if (commandPathKey === 'ktx ingest watch') {
|
|
return options.json !== true && options.plain !== true;
|
|
}
|
|
if (commandPathKey === 'ktx connection notion pick') {
|
|
return options.input !== false;
|
|
}
|
|
const demoIndex = path.indexOf('demo');
|
|
if (demoIndex >= 0) {
|
|
const demoCommand = path[demoIndex + 1];
|
|
return (
|
|
options.json !== true &&
|
|
options.plain !== true &&
|
|
(demoCommand === undefined || demoCommand === 'replay' || demoCommand === 'ingest')
|
|
);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
function shouldPrintProjectDir(command: CommandPathNode): boolean {
|
|
const path = commandPath(command);
|
|
if (!isProjectAwareCommand(path)) {
|
|
return false;
|
|
}
|
|
|
|
const options = commandOptions(command);
|
|
if (options.json === true || options.output === 'json' || options.format === 'json') {
|
|
return false;
|
|
}
|
|
|
|
return !shouldSuppressProjectDirLine(path, options);
|
|
}
|
|
|
|
export function resolveCommandProjectDir(command: CommandWithGlobalOptions): string {
|
|
return resolveKtxProjectDir({ explicitProjectDir: optionsWithGlobals(command).projectDir });
|
|
}
|
|
|
|
export function resolveCommandProjectDirOverride(command: CommandWithGlobalOptions): string | undefined {
|
|
return optionsWithGlobals(command).projectDir ?? process.env.KTX_PROJECT_DIR;
|
|
}
|
|
|
|
function createBaseProgram(info: KtxCliPackageInfo, io: KtxCliIo): Command {
|
|
return new Command()
|
|
.name('ktx')
|
|
.description('Standalone KTX developer CLI')
|
|
.option('--project-dir <path>', 'KTX project directory (default: KTX_PROJECT_DIR, nearest ktx.yaml, or cwd)')
|
|
.option('--debug', 'Enable diagnostic logging to stderr')
|
|
.version(`${info.name} ${info.version}`, '-v, --version', 'Show CLI version')
|
|
.helpOption('-h, --help', 'Show this help text')
|
|
.configureHelp({ showGlobalOptions: true })
|
|
.addHelpText(
|
|
'after',
|
|
'\nAdvanced:\n ktx dev Low-level project initialization and runtime management.\n',
|
|
)
|
|
.showHelpAfterError()
|
|
.exitOverride()
|
|
.configureOutput({
|
|
writeOut: (chunk) => io.stdout.write(chunk),
|
|
writeErr: (chunk) => io.stderr.write(chunk),
|
|
outputError: (chunk, write) => write(chunk),
|
|
});
|
|
}
|
|
|
|
function writeDebug(io: KtxCliIo, commandContext: CommandWithGlobalOptions, command: string): void {
|
|
const global = optionsWithGlobals(commandContext);
|
|
if (global.debug !== true) {
|
|
return;
|
|
}
|
|
io.stderr.write(`[debug] projectDir=${resolveCommandProjectDir(commandContext)}\n`);
|
|
io.stderr.write(`[debug] dispatch=${command}\n`);
|
|
}
|
|
|
|
function writeProjectDir(io: KtxCliIo, commandContext: CommandPathNode): void {
|
|
if (!shouldPrintProjectDir(commandContext)) {
|
|
return;
|
|
}
|
|
io.stderr.write(`Project: ${resolveCommandProjectDir(commandContext)}\n`);
|
|
}
|
|
|
|
function formatCliError(error: unknown): string {
|
|
return error instanceof Error ? error.message : String(error);
|
|
}
|
|
|
|
async function runBareInteractiveCommand(
|
|
program: Command,
|
|
io: KtxCliIo,
|
|
context: KtxCliCommandContext,
|
|
): Promise<number> {
|
|
const nearestProjectDir = findNearestKtxProjectDir(process.cwd());
|
|
const envProjectDir = process.env.KTX_PROJECT_DIR;
|
|
const runner = context.deps.setup ?? (await import('./setup.js')).runKtxSetup;
|
|
|
|
if (!nearestProjectDir && !envProjectDir) {
|
|
return await runner(
|
|
{
|
|
command: 'run',
|
|
projectDir: resolveKtxProjectDir(),
|
|
mode: 'auto',
|
|
agents: false,
|
|
agentScope: 'project',
|
|
skipAgents: false,
|
|
inputMode: 'auto',
|
|
yes: false,
|
|
cliVersion: context.packageInfo.version,
|
|
skipLlm: false,
|
|
skipEmbeddings: false,
|
|
databaseSchemas: [],
|
|
skipDatabases: false,
|
|
skipSources: false,
|
|
},
|
|
io,
|
|
);
|
|
}
|
|
|
|
program.outputHelp();
|
|
return 0;
|
|
}
|
|
|
|
export function buildKtxProgram(options: BuildKtxProgramOptions): Command {
|
|
const program = createBaseProgram(options.packageInfo, options.io);
|
|
program.hook('preAction', (_thisCommand, actionCommand) => {
|
|
writeProjectDir(options.io, actionCommand as CommandPathNode);
|
|
});
|
|
|
|
const context: KtxCliCommandContext = {
|
|
io: options.io,
|
|
deps: options.deps,
|
|
packageInfo: options.packageInfo,
|
|
setExitCode: options.setExitCode ?? (() => {}),
|
|
runInit: options.runInit,
|
|
writeDebug: (command: string, commandContext: CommandWithGlobalOptions) => {
|
|
writeDebug(options.io, commandContext, command);
|
|
},
|
|
};
|
|
|
|
registerSetupCommands(program, context);
|
|
registerConnectionCommands(program, context);
|
|
registerIngestCommands(program, context, {
|
|
runIngestWithProgress: async (ingestArgs, ingestIo, ingestDeps, defaultRunIngest) =>
|
|
await (ingestDeps.ingest ?? defaultRunIngest)(ingestArgs, ingestIo),
|
|
});
|
|
registerScanCommands(program, context);
|
|
registerWikiCommands(program, context);
|
|
registerSlCommands(program, context);
|
|
registerStatusCommands(program, context);
|
|
registerAgentCommands(program, context);
|
|
registerDevCommands(program, context);
|
|
|
|
return program;
|
|
}
|
|
|
|
export async function runCommanderKtxCli(
|
|
argv: string[],
|
|
io: KtxCliIo,
|
|
deps: KtxCliDeps,
|
|
info: KtxCliPackageInfo,
|
|
options: KtxCommanderProgramOptions,
|
|
): Promise<number> {
|
|
profileMark('commander:entry');
|
|
let exitCode = 0;
|
|
const program = buildKtxProgram({
|
|
io,
|
|
deps,
|
|
packageInfo: info,
|
|
runInit: options.runInit,
|
|
setExitCode: (code: number) => {
|
|
exitCode = code;
|
|
},
|
|
});
|
|
profileMark('commander:program-built');
|
|
const context: KtxCliCommandContext = {
|
|
io,
|
|
deps,
|
|
packageInfo: info,
|
|
setExitCode: (code: number) => {
|
|
exitCode = code;
|
|
},
|
|
runInit: options.runInit,
|
|
writeDebug: (command: string, commandContext: CommandWithGlobalOptions) => {
|
|
writeDebug(io, commandContext, command);
|
|
},
|
|
};
|
|
|
|
if (argv.length === 0) {
|
|
if (io.stdout.isTTY === true) {
|
|
try {
|
|
return await runBareInteractiveCommand(program, io, context);
|
|
} catch (error) {
|
|
io.stderr.write(`${formatCliError(error)}\n`);
|
|
return 1;
|
|
}
|
|
}
|
|
program.outputHelp();
|
|
return 0;
|
|
}
|
|
|
|
try {
|
|
await profileSpan('commander:parseAsync', () => program.parseAsync(argv, { from: 'user' }));
|
|
} catch (error) {
|
|
if (isCommanderExit(error)) {
|
|
return error.exitCode === 0 ? 0 : 1;
|
|
}
|
|
io.stderr.write(`${formatCliError(error)}\n`);
|
|
return 1;
|
|
}
|
|
|
|
return exitCode;
|
|
}
|