feat: add plan mode with enter/exit tools (#8281)

This commit is contained in:
Dax 2026-01-13 15:55:48 -05:00 committed by GitHub
parent 66b7a4991e
commit 0a3c72d678
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 824 additions and 46 deletions

View file

@ -545,6 +545,10 @@ export type QuestionInfo = {
* Allow selecting multiple choices
*/
multiple?: boolean
/**
* Allow typing a custom answer (default: true)
*/
custom?: boolean
}
export type QuestionRequest = {
@ -706,6 +710,7 @@ export type PermissionRuleset = Array<PermissionRule>
export type Session = {
id: string
slug: string
projectID: string
directory: string
parentID?: string