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.
Files changed (108) hide show
  1. package/.oesignore +17 -17
  2. package/CHANGELOG.md +96 -95
  3. package/LICENSE +21 -21
  4. package/README.md +150 -235
  5. package/oes.json +13 -11
  6. package/package.json +100 -100
  7. package/scripts/install-git-hooks.mjs +29 -29
  8. package/src/pware.oc.core/constants/index.ts +18 -18
  9. package/src/pware.oc.core/constants/pware.oc.core.constants.eventKind.ts +29 -29
  10. package/src/pware.oc.core/constants/pware.oc.core.constants.eventName.ts +15 -13
  11. package/src/pware.oc.core/constants/pware.oc.core.constants.eventType.ts +241 -241
  12. package/src/pware.oc.core/constants/pware.oc.core.constants.myWork.ts +55 -55
  13. package/src/pware.oc.core/constants/pware.oc.core.constants.partType.ts +65 -65
  14. package/src/pware.oc.core/constants/pware.oc.core.constants.phase.ts +58 -58
  15. package/src/pware.oc.core/constants/pware.oc.core.constants.pulse.ts +63 -63
  16. package/src/pware.oc.core/constants/pware.oc.core.constants.rowKind.ts +34 -34
  17. package/src/pware.oc.core/constants/pware.oc.core.constants.status.ts +74 -74
  18. package/src/pware.oc.core/constants/pware.oc.core.constants.toolName.ts +69 -69
  19. package/src/pware.oc.core/git/index.ts +7 -7
  20. package/src/pware.oc.core/git/pware.oc.core.git.ts +237 -237
  21. package/src/pware.oc.core/git/pware.oc.core.gitignore.ts +87 -87
  22. package/src/pware.oc.core/index.ts +19 -18
  23. package/src/pware.oc.core/pware.oc.core.bus.ts +42 -42
  24. package/src/pware.oc.core/pware.oc.core.cache.ts +48 -48
  25. package/src/pware.oc.core/pware.oc.core.clipboard.ts +97 -97
  26. package/src/pware.oc.core/pware.oc.core.debug.ts +280 -280
  27. package/src/pware.oc.core/pware.oc.core.events.ts +79 -79
  28. package/src/pware.oc.core/pware.oc.core.glyph.ts +135 -135
  29. package/src/pware.oc.core/pware.oc.core.layout.ts +234 -234
  30. package/src/pware.oc.core/pware.oc.core.oes.ts +99 -89
  31. package/src/pware.oc.core/pware.oc.core.paths.ts +240 -240
  32. package/src/pware.oc.core/pware.oc.core.preview.ts +74 -74
  33. package/src/pware.oc.core/pware.oc.core.pulse.ts +726 -726
  34. package/src/pware.oc.core/pware.oc.core.runtimeConfig.ts +41 -0
  35. package/src/pware.oc.core/pware.oc.core.sqlite.ts +164 -175
  36. package/src/pware.oc.core/pware.oc.core.sqliteGateway.ts +89 -0
  37. package/src/pware.oc.core/pware.oc.core.status.ts +214 -214
  38. package/src/pware.oc.core/pware.oc.core.timing.ts +63 -63
  39. package/src/pware.oc.core/pware.oc.core.width.ts +215 -215
  40. package/src/pware.oc.omo/constants/index.ts +15 -15
  41. package/src/pware.oc.omo/constants/pware.oc.omo.constants.backgroundTask.ts +18 -18
  42. package/src/pware.oc.omo/constants/pware.oc.omo.constants.boulderStatus.ts +49 -49
  43. package/src/pware.oc.omo/constants/pware.oc.omo.constants.docKind.ts +29 -29
  44. package/src/pware.oc.omo/constants/pware.oc.omo.constants.eventName.ts +11 -11
  45. package/src/pware.oc.omo/constants/pware.oc.omo.constants.planStatus.ts +60 -60
  46. package/src/pware.oc.omo/constants/pware.oc.omo.constants.reviewStatus.ts +49 -49
  47. package/src/pware.oc.omo/constants/pware.oc.omo.constants.startWork.ts +25 -25
  48. package/src/pware.oc.omo/constants/pware.oc.omo.constants.verdict.ts +38 -38
  49. package/src/pware.oc.omo/index.ts +7 -7
  50. package/src/pware.oc.omo/resolver/index.ts +19 -19
  51. package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.approval.ts +179 -179
  52. package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.approvalGroup.ts +116 -116
  53. package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.approvalState.ts +34 -34
  54. package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.boulder.ts +503 -503
  55. package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.config.ts +40 -40
  56. package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.doc.ts +269 -269
  57. package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.draftFile.ts +18 -18
  58. package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.notepadsFile.ts +18 -18
  59. package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.plan.ts +155 -155
  60. package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.planFile.ts +363 -361
  61. package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.proofFile.ts +18 -18
  62. package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.rulesFile.ts +11 -11
  63. package/src/pware.oc.omo/resolver/pware.oc.omo.resolver.runContinuationFile.ts +14 -14
  64. package/src/pware.oc.opencode/constants/index.ts +10 -10
  65. package/src/pware.oc.opencode/constants/pware.oc.opencode.constants.eventName.ts +15 -15
  66. package/src/pware.oc.opencode/constants/pware.oc.opencode.constants.fileTouch.ts +18 -18
  67. package/src/pware.oc.opencode/constants/pware.oc.opencode.constants.questionKind.ts +45 -45
  68. package/src/pware.oc.opencode/constants/pware.oc.opencode.constants.sessionStatus.ts +58 -58
  69. package/src/pware.oc.opencode/index.ts +8 -8
  70. package/src/pware.oc.opencode/pware.oc.opencode.events.ts +182 -182
  71. package/src/pware.oc.opencode/pware.oc.opencode.files.ts +399 -399
  72. package/src/pware.oc.opencode/resolver/index.ts +223 -170
  73. package/src/pware.oc.opencode/resolver/pware.oc.opencode.resolver.file.ts +150 -162
  74. package/src/pware.oc.opencode/resolver/pware.oc.opencode.resolver.question.ts +149 -185
  75. package/src/pware.oc.opencode/resolver/pware.oc.opencode.resolver.session.ts +248 -211
  76. package/src/pware.oc.opencode/resolver/pware.oc.opencode.resolver.todo.ts +22 -26
  77. package/src/pware.oc.opencode/resolver/pware.oc.opencode.resolver.tool.ts +224 -236
  78. package/src/pware.oc.perf/index.ts +14 -14
  79. package/src/pware.oc.perf/pware.oc.perf.asciichart.d.ts +15 -15
  80. package/src/pware.oc.perf/pware.oc.perf.charts.ts +284 -284
  81. package/src/pware.oc.perf/pware.oc.perf.reader.ts +962 -927
  82. package/src/pware.oc.perf/pware.oc.perf.realtime.ts +88 -88
  83. package/src/pware.oc.perf/pware.oc.perf.realtimeBlock.ts +118 -118
  84. package/src/pware.oc.perf/pware.oc.perf.realtimeCpuRam.ts +79 -79
  85. package/src/pware.oc.perf/pware.oc.perf.realtimeSampler.ts +71 -71
  86. package/src/pware.oc.perf/pware.oc.perf.realtimeTimeline.ts +214 -214
  87. package/src/pware.oc.perf/pware.oc.perf.self.ts +179 -179
  88. package/src/pware.oc.perf/pware.oc.perf.view.tsx +463 -462
  89. package/src/pware.oc.runtime/index.ts +13 -13
  90. package/src/pware.oc.runtime/pware.oc.runtime.monitor.ts +142 -142
  91. package/src/pware.oc.runtime/pware.oc.runtime.mywork-enrich.ts +87 -79
  92. package/src/pware.oc.runtime/pware.oc.runtime.mywork.ts +282 -253
  93. package/src/pware.oc.runtime/pware.oc.runtime.omoRead.ts +37 -0
  94. package/src/pware.oc.runtime/pware.oc.runtime.questions.ts +83 -95
  95. package/src/pware.oc.runtime/pware.oc.runtime.snapshotClient.ts +130 -129
  96. package/src/pware.oc.runtime/pware.oc.runtime.source.ts +105 -105
  97. package/src/pware.oc.runtime/pware.oc.runtime.worker.ts +44 -43
  98. package/src/pware.oc.runtime/resolver/index.ts +268 -224
  99. package/src/pware.oc.runtime/resolver/pware.oc.runtime.resolver.delegate.ts +146 -146
  100. package/src/pware.oc.ui/index.ts +12 -12
  101. package/src/pware.oc.ui/pware.oc.ui.chrome.tsx +381 -339
  102. package/src/pware.oc.ui/pware.oc.ui.glyphs.tsx +144 -144
  103. package/src/pware.oc.ui/pware.oc.ui.host.tsx +111 -111
  104. package/src/pware.oc.ui/pware.oc.ui.live.tsx +82 -82
  105. package/src/pware.oc.ui/pware.oc.ui.menudialogs.tsx +843 -843
  106. package/src/pware.oc.ui/pware.oc.ui.sections.tsx +552 -526
  107. package/src/pware.oc.ui/pware.oc.ui.sidebar.tsx +1718 -1629
  108. package/src/pware.oc.ui.tsx +98 -98
@@ -1,29 +1,29 @@
1
- /**
2
- * pware.oc.omo.constants.dockind
3
- *
4
- * OMO document kinds: the plan, drafts, notepads and evidence under `.omo/`.
5
- * Indexed in `pware.oc.omo/resolver/pware.oc.omo.resolver.doc.ts`.
6
- */
7
-
8
- /** Doc kind: the active plan. */
9
- export const DOC_KIND_PLAN = "plan"
10
-
11
- /** Doc kind: a draft plan still being written. */
12
- export const DOC_KIND_DRAFT = "draft"
13
-
14
- /** Doc kind: a notepad. */
15
- export const DOC_KIND_NOTEPAD = "notepad"
16
-
17
- /** Doc kind: evidence (proof) files. */
18
- export const DOC_KIND_PROOF = "proof"
19
-
20
- /** Every OMO document kind. */
21
- export const DOC_KINDS = [
22
- DOC_KIND_PLAN,
23
- DOC_KIND_DRAFT,
24
- DOC_KIND_NOTEPAD,
25
- DOC_KIND_PROOF,
26
- ] as const
27
-
28
- /** An OMO document kind. */
29
- export type DocKind = (typeof DOC_KINDS)[number]
1
+ /**
2
+ * pware.oc.omo.constants.dockind
3
+ *
4
+ * OMO document kinds: the plan, drafts, notepads and evidence under `.omo/`.
5
+ * Indexed in `pware.oc.omo/resolver/pware.oc.omo.resolver.doc.ts`.
6
+ */
7
+
8
+ /** Doc kind: the active plan. */
9
+ export const DOC_KIND_PLAN = "plan"
10
+
11
+ /** Doc kind: a draft plan still being written. */
12
+ export const DOC_KIND_DRAFT = "draft"
13
+
14
+ /** Doc kind: a notepad. */
15
+ export const DOC_KIND_NOTEPAD = "notepad"
16
+
17
+ /** Doc kind: evidence (proof) files. */
18
+ export const DOC_KIND_PROOF = "proof"
19
+
20
+ /** Every OMO document kind. */
21
+ export const DOC_KINDS = [
22
+ DOC_KIND_PLAN,
23
+ DOC_KIND_DRAFT,
24
+ DOC_KIND_NOTEPAD,
25
+ DOC_KIND_PROOF,
26
+ ] as const
27
+
28
+ /** An OMO document kind. */
29
+ export type DocKind = (typeof DOC_KINDS)[number]
@@ -1,11 +1,11 @@
1
- export const EV_OMO_BOULDER_CHANGED = "pware.omo.boulder.changed"
2
- export const EV_OMO_DOCS_CHANGED = "pware.omo.docs.changed"
3
- export const EV_OMO_CONFIG_CHANGED = "pware.omo.config.changed"
4
-
5
- export const OMO_EVENT_NAMES = [
6
- EV_OMO_BOULDER_CHANGED,
7
- EV_OMO_DOCS_CHANGED,
8
- EV_OMO_CONFIG_CHANGED,
9
- ] as const
10
-
11
- export type OmoEventName = (typeof OMO_EVENT_NAMES)[number]
1
+ export const EV_OMO_BOULDER_CHANGED = "pware.omo.boulder.changed"
2
+ export const EV_OMO_DOCS_CHANGED = "pware.omo.docs.changed"
3
+ export const EV_OMO_CONFIG_CHANGED = "pware.omo.config.changed"
4
+
5
+ export const OMO_EVENT_NAMES = [
6
+ EV_OMO_BOULDER_CHANGED,
7
+ EV_OMO_DOCS_CHANGED,
8
+ EV_OMO_CONFIG_CHANGED,
9
+ ] as const
10
+
11
+ export type OmoEventName = (typeof OMO_EVENT_NAMES)[number]
@@ -1,60 +1,60 @@
1
- /**
2
- * pware.oc.omo.constants.planstatus
3
- *
4
- * OMO plan/draft markdown frontmatter `status:` values that mean "waiting for
5
- * user sign-off" (the PENDING_STATUS set currently private in the approval
6
- * resolver), plus the terminal states of the plan lifecycle
7
- * `drafting → awaiting-approval → approved → done`.
8
- */
9
-
10
- /** Plan status: awaiting the user's approval. */
11
- export const PLAN_STATUS_AWAITING_APPROVAL = "awaiting-approval"
12
-
13
- /** Plan status: pending approval (hyphenated spelling). */
14
- export const PLAN_STATUS_PENDING_APPROVAL = "pending-approval"
15
-
16
- /** Plan status: pending approval (underscore spelling). */
17
- export const PLAN_STATUS_PENDING_APPROVAL_UNDERSCORE = "pending_approval"
18
-
19
- /** Plan status: pending (bare spelling). */
20
- export const PLAN_STATUS_PENDING = "pending"
21
-
22
- /** Plan status: draft still being written — not yet awaiting approval. */
23
- export const PLAN_STATUS_DRAFTING = "drafting"
24
-
25
- /** Plan status: the user approved the plan. */
26
- export const PLAN_STATUS_APPROVED = "approved"
27
-
28
- /** Plan status: the plan finished execution. */
29
- export const PLAN_STATUS_DONE = "done"
30
-
31
- /** Plan `status:` values that mean the plan is waiting for user sign-off. */
32
- export const PLAN_PENDING_STATUSES = [
33
- PLAN_STATUS_AWAITING_APPROVAL,
34
- PLAN_STATUS_PENDING_APPROVAL,
35
- PLAN_STATUS_PENDING_APPROVAL_UNDERSCORE,
36
- PLAN_STATUS_PENDING,
37
- ] as const
38
-
39
- /** A plan `status:` value that counts as pending user approval. */
40
- export type PlanPendingStatus = (typeof PLAN_PENDING_STATUSES)[number]
41
-
42
- /** Work state: a boulder work for this plan finished. */
43
- export const WORK_STATE_COMPLETED = "completed"
44
-
45
- /** Work state: a boulder work exists but did not finish. */
46
- export const WORK_STATE_NOT_COMPLETED = "not-completed"
47
-
48
- /** Work state: no boulder work for this plan (or no boulder.json). */
49
- export const WORK_STATE_ABSENT = "absent"
50
-
51
- /**
52
- * How the plan's boulder work relates to "finished", for the My-work
53
- * reconciliation. `completed` = a boulder work for this plan finished;
54
- * `not-completed` = a work exists but did not finish (running / error / paused /
55
- * abandoned); `absent` = no boulder work for this plan (or no boulder.json).
56
- */
57
- export type WorkState =
58
- | typeof WORK_STATE_COMPLETED
59
- | typeof WORK_STATE_NOT_COMPLETED
60
- | typeof WORK_STATE_ABSENT
1
+ /**
2
+ * pware.oc.omo.constants.planstatus
3
+ *
4
+ * OMO plan/draft markdown frontmatter `status:` values that mean "waiting for
5
+ * user sign-off" (the PENDING_STATUS set currently private in the approval
6
+ * resolver), plus the terminal states of the plan lifecycle
7
+ * `drafting → awaiting-approval → approved → done`.
8
+ */
9
+
10
+ /** Plan status: awaiting the user's approval. */
11
+ export const PLAN_STATUS_AWAITING_APPROVAL = "awaiting-approval"
12
+
13
+ /** Plan status: pending approval (hyphenated spelling). */
14
+ export const PLAN_STATUS_PENDING_APPROVAL = "pending-approval"
15
+
16
+ /** Plan status: pending approval (underscore spelling). */
17
+ export const PLAN_STATUS_PENDING_APPROVAL_UNDERSCORE = "pending_approval"
18
+
19
+ /** Plan status: pending (bare spelling). */
20
+ export const PLAN_STATUS_PENDING = "pending"
21
+
22
+ /** Plan status: draft still being written — not yet awaiting approval. */
23
+ export const PLAN_STATUS_DRAFTING = "drafting"
24
+
25
+ /** Plan status: the user approved the plan. */
26
+ export const PLAN_STATUS_APPROVED = "approved"
27
+
28
+ /** Plan status: the plan finished execution. */
29
+ export const PLAN_STATUS_DONE = "done"
30
+
31
+ /** Plan `status:` values that mean the plan is waiting for user sign-off. */
32
+ export const PLAN_PENDING_STATUSES = [
33
+ PLAN_STATUS_AWAITING_APPROVAL,
34
+ PLAN_STATUS_PENDING_APPROVAL,
35
+ PLAN_STATUS_PENDING_APPROVAL_UNDERSCORE,
36
+ PLAN_STATUS_PENDING,
37
+ ] as const
38
+
39
+ /** A plan `status:` value that counts as pending user approval. */
40
+ export type PlanPendingStatus = (typeof PLAN_PENDING_STATUSES)[number]
41
+
42
+ /** Work state: a boulder work for this plan finished. */
43
+ export const WORK_STATE_COMPLETED = "completed"
44
+
45
+ /** Work state: a boulder work exists but did not finish. */
46
+ export const WORK_STATE_NOT_COMPLETED = "not-completed"
47
+
48
+ /** Work state: no boulder work for this plan (or no boulder.json). */
49
+ export const WORK_STATE_ABSENT = "absent"
50
+
51
+ /**
52
+ * How the plan's boulder work relates to "finished", for the My-work
53
+ * reconciliation. `completed` = a boulder work for this plan finished;
54
+ * `not-completed` = a work exists but did not finish (running / error / paused /
55
+ * abandoned); `absent` = no boulder work for this plan (or no boulder.json).
56
+ */
57
+ export type WorkState =
58
+ | typeof WORK_STATE_COMPLETED
59
+ | typeof WORK_STATE_NOT_COMPLETED
60
+ | typeof WORK_STATE_ABSENT
@@ -1,49 +1,49 @@
1
- /**
2
- * pware.oc.omo.constants.reviewstatus
3
- *
4
- * OMO `ulw-plan` review-lifecycle status values — the state machine that runs
5
- * a plan through the review lanes (momus / independent). Transitions:
6
- * `pending -> launching -> in_flight -> approved | changes_requested |
7
- * inconclusive`; `round_status` is `active` while a round is live.
8
- */
9
-
10
- /** Review status: lane created, waiting to be launched. */
11
- export const REVIEW_STATUS_PENDING = "pending"
12
-
13
- /** Review status: reviewer process spawned, no receipt yet. */
14
- export const REVIEW_STATUS_LAUNCHING = "launching"
15
-
16
- /** Review status: reviewer process has a receipt and is working. */
17
- export const REVIEW_STATUS_IN_FLIGHT = "in_flight"
18
-
19
- /** Review status: reviewer approved the plan. */
20
- export const REVIEW_STATUS_APPROVED = "approved"
21
-
22
- /** Review status: reviewer requested changes. */
23
- export const REVIEW_STATUS_CHANGES_REQUESTED = "changes_requested"
24
-
25
- /** Review status: reviewer could not reach a verdict. */
26
- export const REVIEW_STATUS_INCONCLUSIVE = "inconclusive"
27
-
28
- /** Review status: a review round is live. */
29
- export const ROUND_STATUS_ACTIVE = "active"
30
-
31
- /** Every `ulw-plan` review-lifecycle status value. */
32
- export const REVIEW_STATUSES = [
33
- REVIEW_STATUS_PENDING,
34
- REVIEW_STATUS_LAUNCHING,
35
- REVIEW_STATUS_IN_FLIGHT,
36
- REVIEW_STATUS_APPROVED,
37
- REVIEW_STATUS_CHANGES_REQUESTED,
38
- REVIEW_STATUS_INCONCLUSIVE,
39
- ] as const
40
-
41
- /** A single `ulw-plan` review-lifecycle status value. */
42
- export type ReviewStatus = (typeof REVIEW_STATUSES)[number]
43
-
44
- /** Terminal review statuses — a lane ends here, never resumes. */
45
- export const TERMINAL_REVIEW_STATUSES = [
46
- REVIEW_STATUS_APPROVED,
47
- REVIEW_STATUS_CHANGES_REQUESTED,
48
- REVIEW_STATUS_INCONCLUSIVE,
49
- ] as const
1
+ /**
2
+ * pware.oc.omo.constants.reviewstatus
3
+ *
4
+ * OMO `ulw-plan` review-lifecycle status values — the state machine that runs
5
+ * a plan through the review lanes (momus / independent). Transitions:
6
+ * `pending -> launching -> in_flight -> approved | changes_requested |
7
+ * inconclusive`; `round_status` is `active` while a round is live.
8
+ */
9
+
10
+ /** Review status: lane created, waiting to be launched. */
11
+ export const REVIEW_STATUS_PENDING = "pending"
12
+
13
+ /** Review status: reviewer process spawned, no receipt yet. */
14
+ export const REVIEW_STATUS_LAUNCHING = "launching"
15
+
16
+ /** Review status: reviewer process has a receipt and is working. */
17
+ export const REVIEW_STATUS_IN_FLIGHT = "in_flight"
18
+
19
+ /** Review status: reviewer approved the plan. */
20
+ export const REVIEW_STATUS_APPROVED = "approved"
21
+
22
+ /** Review status: reviewer requested changes. */
23
+ export const REVIEW_STATUS_CHANGES_REQUESTED = "changes_requested"
24
+
25
+ /** Review status: reviewer could not reach a verdict. */
26
+ export const REVIEW_STATUS_INCONCLUSIVE = "inconclusive"
27
+
28
+ /** Review status: a review round is live. */
29
+ export const ROUND_STATUS_ACTIVE = "active"
30
+
31
+ /** Every `ulw-plan` review-lifecycle status value. */
32
+ export const REVIEW_STATUSES = [
33
+ REVIEW_STATUS_PENDING,
34
+ REVIEW_STATUS_LAUNCHING,
35
+ REVIEW_STATUS_IN_FLIGHT,
36
+ REVIEW_STATUS_APPROVED,
37
+ REVIEW_STATUS_CHANGES_REQUESTED,
38
+ REVIEW_STATUS_INCONCLUSIVE,
39
+ ] as const
40
+
41
+ /** A single `ulw-plan` review-lifecycle status value. */
42
+ export type ReviewStatus = (typeof REVIEW_STATUSES)[number]
43
+
44
+ /** Terminal review statuses — a lane ends here, never resumes. */
45
+ export const TERMINAL_REVIEW_STATUSES = [
46
+ REVIEW_STATUS_APPROVED,
47
+ REVIEW_STATUS_CHANGES_REQUESTED,
48
+ REVIEW_STATUS_INCONCLUSIVE,
49
+ ] as const
@@ -1,25 +1,25 @@
1
- /**
2
- * pware.oc.omo.constants.startwork
3
- *
4
- * Delivery modes for the OMO `start work` command. Built into the exact
5
- * command text in `pware.oc.runtime/pware.oc.runtime.mywork.ts`.
6
- */
7
-
8
- /** Start-work mode: plain `start work <plan>`. */
9
- export const START_WORK_PLAIN = "plain"
10
-
11
- /** Start-work mode: `start work <plan> --make-pr`. */
12
- export const START_WORK_MAKE_PR = "make-pr"
13
-
14
- /** Start-work mode: `start work <plan> --ship`. */
15
- export const START_WORK_SHIP = "ship"
16
-
17
- /** Every start-work delivery mode. */
18
- export const START_WORK_MODES = [
19
- START_WORK_PLAIN,
20
- START_WORK_MAKE_PR,
21
- START_WORK_SHIP,
22
- ] as const
23
-
24
- /** A start-work delivery mode. */
25
- export type StartWorkMode = (typeof START_WORK_MODES)[number]
1
+ /**
2
+ * pware.oc.omo.constants.startwork
3
+ *
4
+ * Delivery modes for the OMO `start work` command. Built into the exact
5
+ * command text in `pware.oc.runtime/pware.oc.runtime.mywork.ts`.
6
+ */
7
+
8
+ /** Start-work mode: plain `start work <plan>`. */
9
+ export const START_WORK_PLAIN = "plain"
10
+
11
+ /** Start-work mode: `start work <plan> --make-pr`. */
12
+ export const START_WORK_MAKE_PR = "make-pr"
13
+
14
+ /** Start-work mode: `start work <plan> --ship`. */
15
+ export const START_WORK_SHIP = "ship"
16
+
17
+ /** Every start-work delivery mode. */
18
+ export const START_WORK_MODES = [
19
+ START_WORK_PLAIN,
20
+ START_WORK_MAKE_PR,
21
+ START_WORK_SHIP,
22
+ ] as const
23
+
24
+ /** A start-work delivery mode. */
25
+ export type StartWorkMode = (typeof START_WORK_MODES)[number]
@@ -1,38 +1,38 @@
1
- /**
2
- * pware.oc.omo.constants.verdict
3
- *
4
- * OMO review lane verdicts — the outcome a reviewer lane reports at the end of
5
- * a `ulw-plan` review round (`review-work` / `visual-qa` lane protocol: one
6
- * verdict per lane, one-shot; a re-review after fixes is a fresh round).
7
- */
8
-
9
- /** Verdict: the review passed. */
10
- export const VERDICT_PASS = "pass"
11
-
12
- /** Verdict: the review found blocking problems. */
13
- export const VERDICT_FAIL = "fail"
14
-
15
- /** Verdict: the reviewer could not reach a conclusion. */
16
- export const VERDICT_INCONCLUSIVE = "inconclusive"
17
-
18
- /** Verdict: approved with or without notes. */
19
- export const VERDICT_APPROVED = "approved"
20
-
21
- /** Verdict: blocked, needs changes before a re-review. */
22
- export const VERDICT_BLOCKED = "blocked"
23
-
24
- /** Verdict: reviewer working on a long pass (progress signal). */
25
- export const VERDICT_WORKING = "working"
26
-
27
- /** Every review lane verdict value. */
28
- export const VERDICTS = [
29
- VERDICT_PASS,
30
- VERDICT_FAIL,
31
- VERDICT_INCONCLUSIVE,
32
- VERDICT_APPROVED,
33
- VERDICT_BLOCKED,
34
- VERDICT_WORKING,
35
- ] as const
36
-
37
- /** A single review lane verdict value. */
38
- export type Verdict = (typeof VERDICTS)[number]
1
+ /**
2
+ * pware.oc.omo.constants.verdict
3
+ *
4
+ * OMO review lane verdicts — the outcome a reviewer lane reports at the end of
5
+ * a `ulw-plan` review round (`review-work` / `visual-qa` lane protocol: one
6
+ * verdict per lane, one-shot; a re-review after fixes is a fresh round).
7
+ */
8
+
9
+ /** Verdict: the review passed. */
10
+ export const VERDICT_PASS = "pass"
11
+
12
+ /** Verdict: the review found blocking problems. */
13
+ export const VERDICT_FAIL = "fail"
14
+
15
+ /** Verdict: the reviewer could not reach a conclusion. */
16
+ export const VERDICT_INCONCLUSIVE = "inconclusive"
17
+
18
+ /** Verdict: approved with or without notes. */
19
+ export const VERDICT_APPROVED = "approved"
20
+
21
+ /** Verdict: blocked, needs changes before a re-review. */
22
+ export const VERDICT_BLOCKED = "blocked"
23
+
24
+ /** Verdict: reviewer working on a long pass (progress signal). */
25
+ export const VERDICT_WORKING = "working"
26
+
27
+ /** Every review lane verdict value. */
28
+ export const VERDICTS = [
29
+ VERDICT_PASS,
30
+ VERDICT_FAIL,
31
+ VERDICT_INCONCLUSIVE,
32
+ VERDICT_APPROVED,
33
+ VERDICT_BLOCKED,
34
+ VERDICT_WORKING,
35
+ ] as const
36
+
37
+ /** A single review lane verdict value. */
38
+ export type Verdict = (typeof VERDICTS)[number]
@@ -1,7 +1,7 @@
1
- /**
2
- * pware.oc.omo
3
- *
4
- * oh-my-openagent domain: boulder, plans, approvals, docs index and config.
5
- * Imports core only.
6
- */
7
- export * from "./resolver/index.js"
1
+ /**
2
+ * pware.oc.omo
3
+ *
4
+ * oh-my-openagent domain: boulder, plans, approvals, docs index and config.
5
+ * Imports core only.
6
+ */
7
+ export * from "./resolver/index.js"
@@ -1,19 +1,19 @@
1
- /**
2
- * pware.oc.core.omo.resolver
3
- *
4
- * Aggregate of the omo resolvers: boulder/works/tasks/delegates, plan parsing,
5
- * the approval queue, the docs index and the omo config. Re-exports the entity
6
- * resolvers so consumers import from one module.
7
- */
8
- export * from "./pware.oc.omo.resolver.boulder.js"
9
- export * from "./pware.oc.omo.resolver.plan.js"
10
- export * from "./pware.oc.omo.resolver.planFile.js"
11
- export * from "./pware.oc.omo.resolver.draftFile.js"
12
- export * from "./pware.oc.omo.resolver.notepadsFile.js"
13
- export * from "./pware.oc.omo.resolver.proofFile.js"
14
- export * from "./pware.oc.omo.resolver.rulesFile.js"
15
- export * from "./pware.oc.omo.resolver.runContinuationFile.js"
16
- export * from "./pware.oc.omo.resolver.approval.js"
17
- export * from "./pware.oc.omo.resolver.approvalState.js"
18
- export * from "./pware.oc.omo.resolver.doc.js"
19
- export * from "./pware.oc.omo.resolver.config.js"
1
+ /**
2
+ * pware.oc.core.omo.resolver
3
+ *
4
+ * Aggregate of the omo resolvers: boulder/works/tasks/delegates, plan parsing,
5
+ * the approval queue, the docs index and the omo config. Re-exports the entity
6
+ * resolvers so consumers import from one module.
7
+ */
8
+ export * from "./pware.oc.omo.resolver.boulder.js"
9
+ export * from "./pware.oc.omo.resolver.plan.js"
10
+ export * from "./pware.oc.omo.resolver.planFile.js"
11
+ export * from "./pware.oc.omo.resolver.draftFile.js"
12
+ export * from "./pware.oc.omo.resolver.notepadsFile.js"
13
+ export * from "./pware.oc.omo.resolver.proofFile.js"
14
+ export * from "./pware.oc.omo.resolver.rulesFile.js"
15
+ export * from "./pware.oc.omo.resolver.runContinuationFile.js"
16
+ export * from "./pware.oc.omo.resolver.approval.js"
17
+ export * from "./pware.oc.omo.resolver.approvalState.js"
18
+ export * from "./pware.oc.omo.resolver.doc.js"
19
+ export * from "./pware.oc.omo.resolver.config.js"