feat(commands): Implement argument handling for custom commands via a prompt pipeline (#4702)

This commit is contained in:
Abhi 2025-07-23 16:11:23 -04:00 committed by GitHub
parent 2d1eafae95
commit bbe95f1eaa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 393 additions and 18 deletions

View file

@ -28,6 +28,11 @@ export const createMockCommandContext = (
overrides: DeepPartial<CommandContext> = {},
): CommandContext => {
const defaultMocks: CommandContext = {
invocation: {
raw: '',
name: '',
args: '',
},
services: {
config: null,
settings: { merged: {} } as LoadedSettings,