Interface: PostStepHookOptions
Makaio Framework / hooks / PostStepHookOptions
Interface: PostStepHookOptions
Section titled “Interface: PostStepHookOptions”Defined in: ../../../packages/hooks/src/types/hook-options.ts:48
Options for PostStep hook.
Allows filtering by step type to only process specific step types.
Extends
Section titled “Extends”BaseHookOptions
Properties
Section titled “Properties”
optionalname?:string
Defined in: ../../../packages/hooks/src/types/hook-options.ts:50
Hook name for error attribution (default: ‘anonymous’)
priority?
Section titled “priority?”
optionalpriority?:number
Defined in: ../../../packages/hooks/src/types/hook-options.ts:9
Handler priority. Higher runs first. Default: 0
Inherited from
Section titled “Inherited from”BaseHookOptions.priority
stepTypes?
Section titled “stepTypes?”
optionalstepTypes?: ("text"|"reasoning"|"tool_use")[]
Defined in: ../../../packages/hooks/src/types/hook-options.ts:55
Filter by step types. If specified, handler only called for these types. When using createHook, defaults to [‘reasoning’] if not specified.