diff --git a/VERSION b/VERSION index 42045ac..c2c0004 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.4 +0.3.5 diff --git a/web/src/lib/components/ActivityTimeline.svelte b/web/src/lib/components/ActivityTimeline.svelte index 990638e..43a2a12 100644 --- a/web/src/lib/components/ActivityTimeline.svelte +++ b/web/src/lib/components/ActivityTimeline.svelte @@ -1,5 +1,5 @@
-
- Activity - {#if $streaming} - - - live - - {/if} -
{#if $activityLog.length === 0}
diff --git a/web/src/lib/components/TaskContextPanel.svelte b/web/src/lib/components/TaskContextPanel.svelte index a905aa7..af78c03 100644 --- a/web/src/lib/components/TaskContextPanel.svelte +++ b/web/src/lib/components/TaskContextPanel.svelte @@ -1,23 +1,185 @@
- - -
- + + +
+ + {#if scopeOpen} +
+ +
+ +
onPointerDown(0, e)} + role="separator" + aria-orientation="horizontal" + >
+ {/if}
-
- + + +
+ + {#if planOpen} +
+ {#if $currentTask?.goal} +
+ + {$currentTask.goal} +
+ {/if} + {#if planTotal > 0} +
+ {planDone}/{planTotal} done +
+
+
+
+
    + {#each $planSteps as step (step.id)} +
  1. + + {#if step.status === 'done'} +
    + {:else if step.status === 'running'} + + {:else if step.status === 'failed'} +
    + {:else} +
    + {/if} + + {step.title} +
  2. + {/each} +
+ {:else} +
+ No plan yet +
+ {/if} +
+ +
onPointerDown(1, e)} + role="separator" + aria-orientation="horizontal" + >
+ {/if} +
+ + +
+ + {#if activityOpen} +
+ +
+ {/if}