| |
| |
| |
| |
| |
|
|
| import { promises as fs } from 'fs'; |
| import path from 'path'; |
| import toml from '@iarna/toml'; |
| import { glob } from 'glob'; |
| import { z } from 'zod'; |
| import { |
| Config, |
| getProjectCommandsDir, |
| getUserCommandsDir, |
| } from '@qwen-code/qwen-code-core'; |
| import { ICommandLoader } from './types.js'; |
| import { |
| CommandContext, |
| CommandKind, |
| SlashCommand, |
| SlashCommandActionReturn, |
| } from '../ui/commands/types.js'; |
| import { DefaultArgumentProcessor } from './prompt-processors/argumentProcessor.js'; |
| import { |
| IPromptProcessor, |
| SHORTHAND_ARGS_PLACEHOLDER, |
| SHELL_INJECTION_TRIGGER, |
| } from './prompt-processors/types.js'; |
| import { |
| ConfirmationRequiredError, |
| ShellProcessor, |
| } from './prompt-processors/shellProcessor.js'; |
|
|
| interface CommandDirectory { |
| path: string; |
| extensionName?: string; |
| } |
|
|
| |
| |
| |
| |
| const TomlCommandDefSchema = z.object({ |
| prompt: z.string({ |
| required_error: "The 'prompt' field is required.", |
| invalid_type_error: "The 'prompt' field must be a string.", |
| }), |
| description: z.string().optional(), |
| }); |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| export class FileCommandLoader implements ICommandLoader { |
| private readonly projectRoot: string; |
|
|
| constructor(private readonly config: Config | null) { |
| this.projectRoot = config?.getProjectRoot() || process.cwd(); |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| async loadCommands(signal: AbortSignal): Promise<SlashCommand[]> { |
| const allCommands: SlashCommand[] = []; |
| const globOptions = { |
| nodir: true, |
| dot: true, |
| signal, |
| follow: true, |
| }; |
|
|
| |
| const commandDirs = this.getCommandDirectories(); |
| for (const dirInfo of commandDirs) { |
| try { |
| const files = await glob('**/*.toml', { |
| ...globOptions, |
| cwd: dirInfo.path, |
| }); |
|
|
| const commandPromises = files.map((file) => |
| this.parseAndAdaptFile( |
| path.join(dirInfo.path, file), |
| dirInfo.path, |
| dirInfo.extensionName, |
| ), |
| ); |
|
|
| const commands = (await Promise.all(commandPromises)).filter( |
| (cmd): cmd is SlashCommand => cmd !== null, |
| ); |
|
|
| |
| allCommands.push(...commands); |
| } catch (error) { |
| if ((error as NodeJS.ErrnoException).code !== 'ENOENT') { |
| console.error( |
| `[FileCommandLoader] Error loading commands from ${dirInfo.path}:`, |
| error, |
| ); |
| } |
| } |
| } |
|
|
| return allCommands; |
| } |
|
|
| |
| |
| |
| |
| |
| private getCommandDirectories(): CommandDirectory[] { |
| const dirs: CommandDirectory[] = []; |
|
|
| |
| dirs.push({ path: getUserCommandsDir() }); |
|
|
| |
| dirs.push({ path: getProjectCommandsDir(this.projectRoot) }); |
|
|
| |
| if (this.config) { |
| const activeExtensions = this.config |
| .getExtensions() |
| .filter((ext) => ext.isActive) |
| .sort((a, b) => a.name.localeCompare(b.name)); |
|
|
| const extensionCommandDirs = activeExtensions.map((ext) => ({ |
| path: path.join(ext.path, 'commands'), |
| extensionName: ext.name, |
| })); |
|
|
| dirs.push(...extensionCommandDirs); |
| } |
|
|
| return dirs; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| private async parseAndAdaptFile( |
| filePath: string, |
| baseDir: string, |
| extensionName?: string, |
| ): Promise<SlashCommand | null> { |
| let fileContent: string; |
| try { |
| fileContent = await fs.readFile(filePath, 'utf-8'); |
| } catch (error: unknown) { |
| console.error( |
| `[FileCommandLoader] Failed to read file ${filePath}:`, |
| error instanceof Error ? error.message : String(error), |
| ); |
| return null; |
| } |
|
|
| let parsed: unknown; |
| try { |
| parsed = toml.parse(fileContent); |
| } catch (error: unknown) { |
| console.error( |
| `[FileCommandLoader] Failed to parse TOML file ${filePath}:`, |
| error instanceof Error ? error.message : String(error), |
| ); |
| return null; |
| } |
|
|
| const validationResult = TomlCommandDefSchema.safeParse(parsed); |
|
|
| if (!validationResult.success) { |
| console.error( |
| `[FileCommandLoader] Skipping invalid command file: ${filePath}. Validation errors:`, |
| validationResult.error.flatten(), |
| ); |
| return null; |
| } |
|
|
| const validDef = validationResult.data; |
|
|
| const relativePathWithExt = path.relative(baseDir, filePath); |
| const relativePath = relativePathWithExt.substring( |
| 0, |
| relativePathWithExt.length - 5, |
| ); |
| const baseCommandName = relativePath |
| .split(path.sep) |
| |
| |
| |
| .map((segment) => segment.replaceAll(':', '_')) |
| .join(':'); |
|
|
| |
| const defaultDescription = `Custom command from ${path.basename(filePath)}`; |
| let description = validDef.description || defaultDescription; |
| if (extensionName) { |
| description = `[${extensionName}] ${description}`; |
| } |
|
|
| const processors: IPromptProcessor[] = []; |
| const usesArgs = validDef.prompt.includes(SHORTHAND_ARGS_PLACEHOLDER); |
| const usesShellInjection = validDef.prompt.includes( |
| SHELL_INJECTION_TRIGGER, |
| ); |
|
|
| |
| |
| |
| if (usesShellInjection || usesArgs) { |
| processors.push(new ShellProcessor(baseCommandName)); |
| } |
|
|
| |
| |
| if (!usesArgs) { |
| processors.push(new DefaultArgumentProcessor()); |
| } |
|
|
| return { |
| name: baseCommandName, |
| description, |
| kind: CommandKind.FILE, |
| extensionName, |
| action: async ( |
| context: CommandContext, |
| _args: string, |
| ): Promise<SlashCommandActionReturn> => { |
| if (!context.invocation) { |
| console.error( |
| `[FileCommandLoader] Critical error: Command '${baseCommandName}' was executed without invocation context.`, |
| ); |
| return { |
| type: 'submit_prompt', |
| content: validDef.prompt, |
| }; |
| } |
|
|
| try { |
| let processedPrompt = validDef.prompt; |
| for (const processor of processors) { |
| processedPrompt = await processor.process(processedPrompt, context); |
| } |
|
|
| return { |
| type: 'submit_prompt', |
| content: processedPrompt, |
| }; |
| } catch (e) { |
| |
| if (e instanceof ConfirmationRequiredError) { |
| |
| return { |
| type: 'confirm_shell_commands', |
| commandsToConfirm: e.commandsToConfirm, |
| originalInvocation: { |
| raw: context.invocation.raw, |
| }, |
| }; |
| } |
| |
| throw e; |
| } |
| }, |
| }; |
| } |
| } |
|
|