diff options
| author | soryu <soryu@soryu.co> | 2026-03-04 16:47:12 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-04 16:47:12 +0000 |
| commit | ec9738a069e61529be040eff065318972b8a11e2 (patch) | |
| tree | d1b15d3b22d4980acff4fba8a12b99920035025c /makima/frontend/src/lib | |
| parent | 78cb861412850889424ae7d5ae5cd952a2b90295 (diff) | |
| download | soryu-ec9738a069e61529be040eff065318972b8a11e2.tar.gz soryu-ec9738a069e61529be040eff065318972b8a11e2.zip | |
feat: task slide-out panel, 3-way reconcile toggle, daemon reauth fix (#85)
* WIP: heartbeat checkpoint
* WIP: heartbeat checkpoint
* feat: soryu-co/soryu - makima: Fix daemon reauth flow for new claude setup-token output format
* feat: soryu-co/soryu - makima: Update frontend reconcile toggle to three-way switch
* feat: soryu-co/soryu - makima: Add task slide-out panel to directive page
Diffstat (limited to 'makima/frontend/src/lib')
| -rw-r--r-- | makima/frontend/src/lib/api.ts | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/makima/frontend/src/lib/api.ts b/makima/frontend/src/lib/api.ts index 155c716..4923c1d 100644 --- a/makima/frontend/src/lib/api.ts +++ b/makima/frontend/src/lib/api.ts @@ -3133,8 +3133,8 @@ export interface Directive { completionTaskId: string | null; /** Whether the memory system is enabled for this directive */ memoryEnabled: boolean; - /** Whether questions pause execution indefinitely until answered */ - reconcileMode: boolean; + /** Reconcile mode: auto (timeout), semi-auto (pause), or manual (ask questions) */ + reconcileMode: string; goalUpdatedAt: string; startedAt: string | null; version: number; @@ -3178,8 +3178,8 @@ export interface DirectiveSummary { completionTaskId: string | null; /** Whether the memory system is enabled for this directive */ memoryEnabled: boolean; - /** Whether questions pause execution indefinitely until answered */ - reconcileMode: boolean; + /** Reconcile mode: auto (timeout), semi-auto (pause), or manual (ask questions) */ + reconcileMode: string; version: number; createdAt: string; updatedAt: string; @@ -3202,8 +3202,8 @@ export interface CreateDirectiveRequest { baseBranch?: string; /** Enable the memory system for this directive (default: false) */ memoryEnabled?: boolean; - /** Whether questions pause execution indefinitely until answered (default: false) */ - reconcileMode?: boolean; + /** Reconcile mode: auto (timeout), semi-auto (pause), or manual (ask questions) (default: auto) */ + reconcileMode?: string; } export interface UpdateDirectiveRequest { @@ -3216,8 +3216,8 @@ export interface UpdateDirectiveRequest { orchestratorTaskId?: string; /** Enable or disable the memory system for this directive */ memoryEnabled?: boolean; - /** Whether questions pause execution indefinitely until answered */ - reconcileMode?: boolean; + /** Reconcile mode: auto (timeout), semi-auto (pause), or manual (ask questions) */ + reconcileMode?: string; version?: number; } |
