opencode-extended-sidebar 0.2.90 → 0.2.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.oesignore +17 -17
- package/CHANGELOG.md +96 -95
- package/LICENSE +21 -21
- package/README.md +150 -235
- package/oes.json +13 -11
- package/package.json +100 -100
- package/scripts/install-git-hooks.mjs +29 -29
- package/src/pware.oc.core/constants/index.ts +18 -18
- package/src/pware.oc.core/constants/pware.oc.core.constants.eventKind.ts +29 -29
- package/src/pware.oc.core/constants/pware.oc.core.constants.eventName.ts +15 -13
- package/src/pware.oc.core/constants/pware.oc.core.constants.eventType.ts +241 -241
- package/src/pware.oc.core/constants/pware.oc.core.constants.myWork.ts +55 -55
- package/src/pware.oc.core/constants/pware.oc.core.constants.partType.ts +65 -65
- package/src/pware.oc.core/constants/pware.oc.core.constants.phase.ts +58 -58
- package/src/pware.oc.core/constants/pware.oc.core.constants.pulse.ts +63 -63
- package/src/pware.oc.core/constants/pware.oc.core.constants.rowKind.ts +34 -34
- package/src/pware.oc.core/constants/pware.oc.core.constants.status.ts +74 -74
- package/src/pware.oc.core/constants/pware.oc.core.constants.toolName.ts +69 -69
- package/src/pware.oc.core/git/index.ts +7 -7
- package/src/pware.oc.core/git/pware.oc.core.git.ts +237 -237
- package/src/pware.oc.core/git/pware.oc.core.gitignore.ts +87 -87
- package/src/pware.oc.core/index.ts +19 -18
- package/src/pware.oc.core/pware.oc.core.bus.ts +42 -42
- package/src/pware.oc.core/pware.oc.core.cache.ts +48 -48
- package/src/pware.oc.core/pware.oc.core.clipboard.ts +97 -97
- package/src/pware.oc.core/pware.oc.core.debug.ts +280 -280
- package/src/pware.oc.core/pware.oc.core.events.ts +79 -79
- package/src/pware.oc.core/pware.oc.core.glyph.ts +135 -135
- package/src/pware.oc.core/pware.oc.core.layout.ts +234 -234
- package/src/pware.oc.core/pware.oc.core.oes.ts +99 -89
- package/src/pware.oc.core/pware.oc.core.paths.ts +240 -240
- package/src/pware.oc.core/pware.oc.core.preview.ts +74 -74
- package/src/pware.oc.core/pware.oc.core.pulse.ts +726 -726
- package/src/pware.oc.core/pware.oc.core.runtimeConfig.ts +41 -0
- package/src/pware.oc.core/pware.oc.core.sqlite.ts +164 -175
- package/src/pware.oc.core/pware.oc.core.sqliteGateway.ts +89 -0
- package/src/pware.oc.core/pware.oc.core.status.ts +214 -214
- package/src/pware.oc.core/pware.oc.core.timing.ts +63 -63
- package/src/pware.oc.core/pware.oc.core.width.ts +215 -215
- package/src/pware.oc.omo/constants/index.ts +15 -15
- package/src/pware.oc.omo/constants/pware.oc.omo.constants.backgroundTask.ts +18 -18
- package/src/pware.oc.omo/constants/pware.oc.omo.constants.boulderStatus.ts +49 -49
- package/src/pware.oc.omo/constants/pware.oc.omo.constants.docKind.ts +29 -29
- package/src/pware.oc.omo/constants/pware.oc.omo.constants.eventName.ts +11 -11
- package/src/pware.oc.omo/constants/pware.oc.omo.constants.planStatus.ts +60 -60
- package/src/pware.oc.omo/constants/pware.oc.omo.constants.reviewStatus.ts +49 -49
- package/src/pware.oc.omo/constants/pware.oc.omo.constants.startWork.ts +25 -25
- package/src/pware.oc.omo/constants/pware.oc.omo.constants.verdict.ts +38 -38
- package/src/pware.oc.omo/index.ts +7 -7
- package/src/pware.oc.omo/resolver/index.ts +19 -19
- package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.approval.ts +179 -179
- package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.approvalGroup.ts +116 -116
- package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.approvalState.ts +34 -34
- package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.boulder.ts +503 -503
- package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.config.ts +40 -40
- package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.doc.ts +269 -269
- package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.draftFile.ts +18 -18
- package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.notepadsFile.ts +18 -18
- package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.plan.ts +155 -155
- package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.planFile.ts +363 -361
- package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.proofFile.ts +18 -18
- package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.rulesFile.ts +11 -11
- package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.runContinuationFile.ts +14 -14
- package/src/pware.oc.opencode/constants/index.ts +10 -10
- package/src/pware.oc.opencode/constants/pware.oc.opencode.constants.eventName.ts +15 -15
- package/src/pware.oc.opencode/constants/pware.oc.opencode.constants.fileTouch.ts +18 -18
- package/src/pware.oc.opencode/constants/pware.oc.opencode.constants.questionKind.ts +45 -45
- package/src/pware.oc.opencode/constants/pware.oc.opencode.constants.sessionStatus.ts +58 -58
- package/src/pware.oc.opencode/index.ts +8 -8
- package/src/pware.oc.opencode/pware.oc.opencode.events.ts +182 -182
- package/src/pware.oc.opencode/pware.oc.opencode.files.ts +399 -399
- package/src/pware.oc.opencode/resolver/index.ts +223 -170
- package/src/pware.oc.opencode/resolver/pware.oc.opencode.resolver.file.ts +150 -162
- package/src/pware.oc.opencode/resolver/pware.oc.opencode.resolver.question.ts +149 -185
- package/src/pware.oc.opencode/resolver/pware.oc.opencode.resolver.session.ts +248 -211
- package/src/pware.oc.opencode/resolver/pware.oc.opencode.resolver.todo.ts +22 -26
- package/src/pware.oc.opencode/resolver/pware.oc.opencode.resolver.tool.ts +224 -236
- package/src/pware.oc.perf/index.ts +14 -14
- package/src/pware.oc.perf/pware.oc.perf.asciichart.d.ts +15 -15
- package/src/pware.oc.perf/pware.oc.perf.charts.ts +284 -284
- package/src/pware.oc.perf/pware.oc.perf.reader.ts +962 -927
- package/src/pware.oc.perf/pware.oc.perf.realtime.ts +88 -88
- package/src/pware.oc.perf/pware.oc.perf.realtimeBlock.ts +118 -118
- package/src/pware.oc.perf/pware.oc.perf.realtimeCpuRam.ts +79 -79
- package/src/pware.oc.perf/pware.oc.perf.realtimeSampler.ts +71 -71
- package/src/pware.oc.perf/pware.oc.perf.realtimeTimeline.ts +214 -214
- package/src/pware.oc.perf/pware.oc.perf.self.ts +179 -179
- package/src/pware.oc.perf/pware.oc.perf.view.tsx +463 -462
- package/src/pware.oc.runtime/index.ts +13 -13
- package/src/pware.oc.runtime/pware.oc.runtime.monitor.ts +142 -142
- package/src/pware.oc.runtime/pware.oc.runtime.mywork-enrich.ts +87 -79
- package/src/pware.oc.runtime/pware.oc.runtime.mywork.ts +282 -253
- package/src/pware.oc.runtime/pware.oc.runtime.omoRead.ts +37 -0
- package/src/pware.oc.runtime/pware.oc.runtime.questions.ts +83 -95
- package/src/pware.oc.runtime/pware.oc.runtime.snapshotClient.ts +130 -129
- package/src/pware.oc.runtime/pware.oc.runtime.source.ts +105 -105
- package/src/pware.oc.runtime/pware.oc.runtime.worker.ts +44 -43
- package/src/pware.oc.runtime/resolver/index.ts +268 -224
- package/src/pware.oc.runtime/resolver/pware.oc.runtime.resolver.delegate.ts +146 -146
- package/src/pware.oc.ui/index.ts +12 -12
- package/src/pware.oc.ui/pware.oc.ui.chrome.tsx +381 -339
- package/src/pware.oc.ui/pware.oc.ui.glyphs.tsx +144 -144
- package/src/pware.oc.ui/pware.oc.ui.host.tsx +111 -111
- package/src/pware.oc.ui/pware.oc.ui.live.tsx +82 -82
- package/src/pware.oc.ui/pware.oc.ui.menudialogs.tsx +843 -843
- package/src/pware.oc.ui/pware.oc.ui.sections.tsx +552 -526
- package/src/pware.oc.ui/pware.oc.ui.sidebar.tsx +1718 -1629
- package/src/pware.oc.ui.tsx +98 -98
package/.oesignore
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
# Directories hidden from the Files panel.
|
|
2
|
-
tmp/
|
|
3
|
-
.tmp/
|
|
4
|
-
.omo/
|
|
5
|
-
.agentize/
|
|
6
|
-
.hidden/
|
|
7
|
-
|
|
8
|
-
# Boilerplate root files.
|
|
9
|
-
.gitignore
|
|
10
|
-
backlog.md
|
|
11
|
-
CHANGELOG.md
|
|
12
|
-
LICENSE
|
|
13
|
-
oes.json
|
|
14
|
-
opencode.json
|
|
15
|
-
package.json
|
|
16
|
-
README.md
|
|
17
|
-
skills-lock.json
|
|
1
|
+
# Directories hidden from the Files panel.
|
|
2
|
+
tmp/
|
|
3
|
+
.tmp/
|
|
4
|
+
.omo/
|
|
5
|
+
.agentize/
|
|
6
|
+
.hidden/
|
|
7
|
+
|
|
8
|
+
# Boilerplate root files.
|
|
9
|
+
.gitignore
|
|
10
|
+
backlog.md
|
|
11
|
+
CHANGELOG.md
|
|
12
|
+
LICENSE
|
|
13
|
+
oes.json
|
|
14
|
+
opencode.json
|
|
15
|
+
package.json
|
|
16
|
+
README.md
|
|
17
|
+
skills-lock.json
|
package/CHANGELOG.md
CHANGED
|
@@ -1,95 +1,96 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
- **0.2.
|
|
4
|
-
- **0.2.
|
|
5
|
-
- **0.2.
|
|
6
|
-
- **0.2.
|
|
7
|
-
- **0.2.
|
|
8
|
-
- **0.2.
|
|
9
|
-
- **0.2.
|
|
10
|
-
- **0.2.
|
|
11
|
-
- **0.2.
|
|
12
|
-
- **0.2.
|
|
13
|
-
- **0.2.
|
|
14
|
-
- **0.2.
|
|
15
|
-
- **0.2.
|
|
16
|
-
- **0.2.
|
|
17
|
-
- **0.2.
|
|
18
|
-
- **0.2.
|
|
19
|
-
- **0.2.
|
|
20
|
-
- **0.2.
|
|
21
|
-
- **0.2.
|
|
22
|
-
- **0.2.
|
|
23
|
-
- **0.2.
|
|
24
|
-
- **0.2.
|
|
25
|
-
- **0.2.
|
|
26
|
-
- **0.2.
|
|
27
|
-
- **0.2.
|
|
28
|
-
- **0.2.
|
|
29
|
-
- **0.2.
|
|
30
|
-
- **0.2.
|
|
31
|
-
- **0.2.
|
|
32
|
-
- **0.2.
|
|
33
|
-
- **0.2.
|
|
34
|
-
- **0.2.
|
|
35
|
-
- **0.2.
|
|
36
|
-
- **0.2.
|
|
37
|
-
- **0.2.
|
|
38
|
-
- **0.2.
|
|
39
|
-
- **0.2.
|
|
40
|
-
- **0.2.
|
|
41
|
-
- **0.2.
|
|
42
|
-
- **0.2.
|
|
43
|
-
- **0.2.
|
|
44
|
-
- **0.2.
|
|
45
|
-
- **0.2.
|
|
46
|
-
- **0.2.
|
|
47
|
-
- **0.2.
|
|
48
|
-
- **0.2.
|
|
49
|
-
- **0.2.
|
|
50
|
-
- **0.2.
|
|
51
|
-
- **0.2.
|
|
52
|
-
- **0.2.
|
|
53
|
-
- **0.2.
|
|
54
|
-
- **0.2.
|
|
55
|
-
- **0.2.
|
|
56
|
-
- **0.2.
|
|
57
|
-
- **0.2.
|
|
58
|
-
- **0.2.
|
|
59
|
-
- **0.2.
|
|
60
|
-
- **0.2.
|
|
61
|
-
- **0.2.
|
|
62
|
-
- **0.2.
|
|
63
|
-
- **0.2.
|
|
64
|
-
- **0.2.
|
|
65
|
-
- **0.2.
|
|
66
|
-
- **0.2.
|
|
67
|
-
- **0.2.
|
|
68
|
-
- **0.2.
|
|
69
|
-
- **0.2.
|
|
70
|
-
- **0.2.
|
|
71
|
-
- **0.2.
|
|
72
|
-
- **0.2.
|
|
73
|
-
- **0.2.
|
|
74
|
-
- **0.2.
|
|
75
|
-
- **0.2.
|
|
76
|
-
- **0.2.
|
|
77
|
-
- **0.2.
|
|
78
|
-
- **0.2.
|
|
79
|
-
- **0.2.
|
|
80
|
-
- **0.2.
|
|
81
|
-
- **0.2.
|
|
82
|
-
- **0.2.
|
|
83
|
-
- **0.2.
|
|
84
|
-
- **0.2.
|
|
85
|
-
- **0.2.
|
|
86
|
-
- **0.2.
|
|
87
|
-
- **0.2.
|
|
88
|
-
- **0.2.
|
|
89
|
-
- **0.2.
|
|
90
|
-
- **0.2.
|
|
91
|
-
- **0.2.
|
|
92
|
-
- **0.2.
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
- **0.2.91** (2026-09-07) Align architecture, constraints, and panel docs with the namespaced tree and measured coverage.
|
|
4
|
+
- **0.2.90** (2026-09-07) Publish the sidebar to npm so OpenCode can install it by package name.
|
|
5
|
+
- **0.2.89** (2026-09-07) Rewrite the panel reference as per-feature tables so each sidebar capability is one scannable row.
|
|
6
|
+
- **0.2.88** (2026-09-05) Offer start work from the Plans archive picker so an archived plan can be launched directly and the archive drops Approve.
|
|
7
|
+
- **0.2.87** (2026-09-05) Reconcile a plan with no parseable status against its boulder work so a completed plan lands in Finished instead of the Plans archive.
|
|
8
|
+
- **0.2.86** (2026-09-05) Open the My-work Plans and Draft docs archives through the approval picker so a click offers Navigate to session before the preview instead of previewing the fi.
|
|
9
|
+
- **0.2.85** (2026-09-05) Hide drafts superseded by a plan of the same name in the shared omo scan so one rule drops them from both the Session draft list and the My-work buckets.
|
|
10
|
+
- **0.2.84** (2026-09-05) Make the open-question reconcile backstop a configurable 15 s oes.json option and merge the approvals and docs scans into one shared per-root omo stamp cache.
|
|
11
|
+
- **0.2.83** (2026-09-05) Measure every sidebar row budget in wcwidth columns so wide CJK/emoji text clips cleanly instead of wrapping, surface plan files that no action group covers in .
|
|
12
|
+
- **0.2.82** (2026-09-04) Scope the Session-tab drafts list to drafts the current session wrote and add a My-work Draft docs archive for drafts no action group covers.
|
|
13
|
+
- **0.2.81** (2026-09-04) Add a token-rate bar and realtime fullscreen modal to the OES bar, widen the shared chart plot, and shrink the preview dialog chrome.
|
|
14
|
+
- **0.2.80** (2026-09-04) describe the realtime fullscreen modal and prune inline-fullscreen references.
|
|
15
|
+
- **0.2.79** (2026-09-04) route the realtime fullscreen F into a live modal instead of inline expansion.
|
|
16
|
+
- **0.2.78** (2026-09-04) fullscreen realtime modal with category selector and multi-line series.
|
|
17
|
+
- **0.2.77** (2026-09-04) add a pure multi-series realtime line renderer with per-series scale.
|
|
18
|
+
- **0.2.76** (2026-09-04) give each realtime selector row its own unit label.
|
|
19
|
+
- **0.2.75** (2026-09-04) Replace the project-wide open-question scan with an in-memory per-session cache invalidated by targeted question-part host events plus a 30-second reconcile bac.
|
|
20
|
+
- **0.2.74** (2026-09-04) Move recent sessions into the My work Sessions group, remove spare gap rows above OES and below the tab bar, and retune direction-glyph sin-fades on the 50ms ti.
|
|
21
|
+
- **0.2.73** (2026-09-04) Move the project-wide open-question scan into the snapshot worker so the ~500ms json_extract over every part no longer freezes the UI thread, expose it as snap(.
|
|
22
|
+
- **0.2.72** (2026-09-04) Fold the whole realtime block (OES status bar, realtime category tabs and the 4-row chart) under a chevron-led OES header that starts collapsed and is remembere.
|
|
23
|
+
- **0.2.71** (2026-09-03) Add an on-screen debug console to the bottom of the sidebar that shows the newest event labels from a 200-line in-memory ring fed only while a debug or profile .
|
|
24
|
+
- **0.2.70** (2026-09-03) Gate the plugin self-cost line behind the debug/profile loggers, swap the tab-header pipe separators for per-tab status-light glyphs whose My-work light scans p.
|
|
25
|
+
- **0.2.69** (2026-09-03) Add Codecov coverage reporting with a 90% line gate and live README badge, excluding thin TUI wrappers and runtime I/O glue from coverage.
|
|
26
|
+
- **0.2.68** (2026-09-03) Extract the inline work-state and canonical status literals behind constants: new WORK_STATE_* values in the omo planStatus module (the WorkState type now deriv.
|
|
27
|
+
- **0.2.67** (2026-09-03) Calibrate the sidebar row-plan chrome from the opencode TUI source: split PANEL_CHROME into the measured 6-row host frame plus a title reserve, and drop the dea.
|
|
28
|
+
- **0.2.66** (2026-09-03) Fold D:/ vs D:\ and git-bash /d/ path spellings through shared foldPathKey/samePath helpers and compare the realtime session.updated project filter through same.
|
|
29
|
+
- **0.2.65** (2026-09-03) Flank the realtime braille chart with a compact axis column showing the recent max on top and the 0 baseline below, via a <=3-char formatCompact label.
|
|
30
|
+
- **0.2.64** (2026-09-03) Unify the realtime widget onto one shared 300ms wall-clock timeline whose token/cache series are 1s windowed derivatives reconciled with estimated stream deltas.
|
|
31
|
+
- **0.2.63** (2026-09-03) Tune the realtime block to 30 ms CPU/RAM sampling with a rolling 1 s window and 40 ms coalesced token redraws, draw the chart 3 rows tall, and show a one-row co.
|
|
32
|
+
- **0.2.62** (2026-09-03) Add an event-driven realtime block with token, cache and process CPU/RAM series under the OES bar and route glyph colours through a shared resolver.
|
|
33
|
+
- **0.2.61** (2026-09-02) Expose a shared new-session prompt as.
|
|
34
|
+
- **0.2.60** (2026-09-02) Switch the tok/s sparkline to ASCII output and align chart docs and tests.
|
|
35
|
+
- **0.2.59** (2026-09-02) Add a Dismissed questions My work group and route dismissed-question errors into it.
|
|
36
|
+
- **0.2.58** (2026-09-02) Add a GitHub Actions CI workflow that typechecks, tests with coverage, and benchmarks on push.
|
|
37
|
+
- **0.2.57** (2026-09-02) Smooth the OES token-rate sparkline by bucket-averaging and window-averaging the series before rendering.
|
|
38
|
+
- **0.2.56** (2026-09-02) Fix the stuck OES status bar, add a live braille token-rate sparkline, normalize prefixed session IDs, and hide empty ghost sessions.
|
|
39
|
+
- **0.2.55** (2026-09-02) Add a live token-rate status bar and auto-resolve or dismiss stale interrupted My work questions.
|
|
40
|
+
- **0.2.54** (2026-09-02) Normalize OS-specific ignore rules and cross-platform line endings for consistent multi-OS development.
|
|
41
|
+
- **0.2.53** (2026-09-01) Drop the redundant queued glyph on delegate rows so a pending task shows one hourglass.
|
|
42
|
+
- **0.2.52** (2026-09-01) Indent delegate children one glyph column under their agent header.
|
|
43
|
+
- **0.2.51** (2026-09-01) Normalize row highlighting so only active rows are coloured and static lists stay muted.
|
|
44
|
+
- **0.2.50** (2026-09-01) Add a Session Drafts group and give file lists a searchable view-all header action.
|
|
45
|
+
- **0.2.49** (2026-09-01) Remove the OMO bottom group and fold the document index into per-kind file resolvers with session and plan-status filters.
|
|
46
|
+
- **0.2.48** (2026-09-01) Stop the sidebar freezing on a locked database by failing fast on lock waits, serving the last snapshot, and reading the runtime snapshot in a worker thread.
|
|
47
|
+
- **0.2.47** (2026-09-01) Round perf trend y-axis labels to drop trailing-zero decimals.
|
|
48
|
+
- **0.2.46** (2026-09-01) Rename the Details tab to Project and tag the current session with a [C] suffix.
|
|
49
|
+
- **0.2.45** (2026-09-01) Reconcile My work plan grouping against boulder work and writer-session todos so an approved plan whose work finished shows as Finished instead of Ready to star.
|
|
50
|
+
- **0.2.44** (2026-09-01) Replace the touched-file detail DialogPad with a native DialogSelect that offers Preview or Copy relative path, and disable approval dialog actions instead of t.
|
|
51
|
+
- **0.2.43** (2026-09-01) Close the tab-status test gap by extracting the render decision into a tested tabStatusLine helper so a ready tab's null status can no longer crash the row.
|
|
52
|
+
- **0.2.42** (2026-09-01) Fix the My work tab briefly showing nothing on first open by re-delivering the initial snapshot the bus dropped before its listener attached, and treat a not-ye.
|
|
53
|
+
- **0.2.41** (2026-09-01) Add per-tab status rows that show session-switch and cold-tab loading with a braille spinner, DB errors and Stats empty notes until data lands, and relabel the .
|
|
54
|
+
- **0.2.40** (2026-09-01) Document perf chart modules and the dependency change.
|
|
55
|
+
- **0.2.39** (2026-09-01) Render perf bars and trends with chart libraries, dropping hand-rolled barGlyphs and sparkline.
|
|
56
|
+
- **0.2.38** (2026-09-01) Add perf charts dialog with stats, histogram and gauges.
|
|
57
|
+
- **0.2.37** (2026-09-01) Add perf chart and stat render helpers (asciiTrend, shareBar, perfStatLine, histogram, gauge).
|
|
58
|
+
- **0.2.36** (2026-09-01) Add perf series pipeline helpers (interpolate, smooth, downsample, stripAnsi).
|
|
59
|
+
- **0.2.35** (2026-09-01) Add asciichart, simple-statistics and @crafter/charts chart/stat dependencies.
|
|
60
|
+
- **0.2.34** (2026-09-01) Close the omo layer's cross-domain edges by moving workStatusGlyph into core and the approval session-state enrichment type into runtime (EnrichedApproval), correct the perf layer rule so its TUI view may import ui, and version the .cursor rules in the repo
|
|
61
|
+
- **0.2.33** (2026-09-01) Extract the host and OMO event wiring into a typed event bus (pware.oc.core.bus with PwareEvent and per-layer EV_* event-name constants), adapt host TUI events .
|
|
62
|
+
- **0.2.32** (2026-09-01) Refresh a session's status together with its age on live-snapshot cache hits so the My work Running group no longer keeps sessions that went idle, list only run.
|
|
63
|
+
- **0.2.31** (2026-09-01) Replace the left/right direction flows with single-dot waves growing from the middle row (⠂⠒⠲ right while a tool call is in flight, ⠐⠒⠙ left while tokens stream.
|
|
64
|
+
- **0.2.30** (2026-09-01) Split every sidebar row into a state glyph plus a per-direction braille flow where a single dot sweeps right while a tool call is in flight, left while tokens s.
|
|
65
|
+
- **0.2.29** (2026-09-01) Add a Running group to the My work queue that lists recent main sessions still running or idle with their live status label, built by a toRunningItems filter ov.
|
|
66
|
+
- **0.2.28** (2026-09-01) Move the plan-to-writer-session index from the opencode resolver into the omo layer as a shared per-document-kind file engine (plan, draft, notepads, evidence, .
|
|
67
|
+
- **0.2.27** (2026-09-01) Make My work an action-based queue — Ready to review / Ready to start / Finished / Drafting groups with a planner-session row suffix backed by an in-memory plan.
|
|
68
|
+
- **0.2.26** (2026-08-31) Make every panel list end in a clickable "+N more" revealer via a shared RowList with useReveal and MoreReveal (replacing sliceWithOverflow so no content row is.
|
|
69
|
+
- **0.2.25** (2026-08-31) Extract shared sidebar primitives into a new pware.oc.ui.sections module (useFold over the legacy folded kv contract, FoldSection, budget-sliced GroupSection, a.
|
|
70
|
+
- **0.2.24** (2026-08-31) Add a live plugin self-cost status line above the panel that samples event, scan and tick latency plus renderer FPS through a new perf.self reader, export it fr.
|
|
71
|
+
- **0.2.23** (2026-08-31) Show the ulw-plan review lifecycle on My work approval rows (R<round> per-lane momus/independent glyphs) by parsing the draft frontmatter review block in plan.t.
|
|
72
|
+
- **0.2.22** (2026-08-31) Enforce CRLF line endings via a repo .gitattributes (text=auto eol=crlf) so git stops warning about LF-to-CRLF conversions on Windows, and keep the shell hooks .
|
|
73
|
+
- **0.2.21** (2026-08-31) Extract OpenCode and OMO string literals into documented per-domain constants (partType, eventType, toolName in core; planStatus, boulderStatus, backgroundTask,.
|
|
74
|
+
- **0.2.20** (2026-08-31) Reorganize the plugin source into pware.-prefixed layered modules (core, opencode, omo, runtime, perf, ui) with per-layer barrels and an ARCHITECTURE.md module map, rename the live-snapshot symbols to runtime naming (RuntimeSnapshot, readRuntimeSnapshot, resetRuntimeCache), move SPARK_FRAMES back into pulse to restore the core-never-imports-ui layer rule, mirror the test tree to the new layout, repoint the plugin entry export, and add an always-on architecture rule
|
|
75
|
+
- **0.2.19** (2026-08-31) Show the planner session state on pending-approval rows in My work (working/waiting/idle/archived/unknown) by enriching each approval via a new approvalState re.
|
|
76
|
+
- **0.2.18** (2026-08-31) Make My work questions project-wide so a restart or session switch can no longer hide an open question, and widen the Sessions list with a sessionFetch revealer.
|
|
77
|
+
- **0.2.17** (2026-08-31) Rename the pending-approval Continue row to Navigate to session and add an Approve row in its own category that sends an ok reply to the plan's writer session v.
|
|
78
|
+
- **0.2.16** (2026-08-31) Extract every status-to-character mapping into a single pware.oc.ui.glyphs module (workStatusGlyph, markGlyph with queued rendering as the ◷ clock instead of th.
|
|
79
|
+
- **0.2.15** (2026-08-31) Extract the resolution layer into src/resolvers: per-entity opencode (session/tool/file/question/todo) and omo (boulder/plan/approval/doc/config) resolver modul.
|
|
80
|
+
- **0.2.14** (2026-08-31) Add a Project tab rolling up tools and files across recent sessions (tab bar is now OES | Project | Session | Perf, old Current renamed to Session), show the wi.
|
|
81
|
+
- **0.2.13** (2026-08-31) Filter Files through `.oesignore` and `.gitignore` with the `ignore` package, exclude `question` from Perf timing, and add a `… N more` Files expander.
|
|
82
|
+
- **0.2.12** (2026-08-31) Add perf timing log feature and update project files.
|
|
83
|
+
- **0.2.11** (2026-08-31) Open a dated Perf timing log when you click a Time phase, Models header, or slow-tool row.
|
|
84
|
+
- **0.2.10** (2026-08-30) Show a success toast when the sidebar plugin loads.
|
|
85
|
+
- **0.2.9** (2026-08-30) Split OES and OMO into stacked groups with Works, Boulder, and Docs tabs plus height-aware row trimming.
|
|
86
|
+
- **0.2.8** (2026-08-30) Open OMO plan rows as a headed markdown preview and mark plan status with check glyphs.
|
|
87
|
+
- **0.2.7** (2026-08-30) Keep file previews inside a terminal-sized scrollbox so Copy and Close stay on screen.
|
|
88
|
+
- **0.2.6** (2026-08-30) Use a down-triangle glyph on Delegate group headers so they no longer look like rows.
|
|
89
|
+
- **0.2.5** (2026-08-30) Add click-for-detail dialogs with formatted Markdown preview and group Delegates by agent name.
|
|
90
|
+
- **0.2.4** (2026-08-30) Stop leftover Delegates spinners once the OpenCode session is idle, extract tool and file metadata in SQLite, and spawn git status off the TUI thread.
|
|
91
|
+
- **0.2.3** (2026-08-30) Add an OMO Plans tab, underline clickable chrome, and label task tools by their short description.
|
|
92
|
+
- **0.2.2** (2026-08-30) Speed up large-tree refresh and mark thinking with a therefore sign instead of a star.
|
|
93
|
+
- **0.2.1** (2026-08-30) Initial public release of the OpenCode Extended Sidebar TUI plugin.
|
|
94
|
+
One sentence per commit. The `commit-msg` hook bumps the patch in `package.json` and prepends a line here.
|
|
95
|
+
|
|
96
|
+
- **0.2.0** (2026-08-30) Session switcher, live tools, file diffs, and oes.json display options.
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 pware | pware.ai
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|