opencode-plugin-flow 4.1.11 → 4.1.14

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/dist/cli.js CHANGED
@@ -1,11 +1,20 @@
1
1
  #!/usr/bin/env node
2
- import{createHash as qe}from"node:crypto";import{mkdir as Pe,readdir as te,readFile as Te,rm as De,writeFile as y}from"node:fs/promises";import{createRequire as je}from"node:module";import{dirname as Be,join as l,normalize as We,sep as Se}from"node:path";var j=`# Flow worker handoff contract
2
+ import{createHash as De}from"node:crypto";import{mkdir as Te,readdir as oe,readFile as Pe,rm as je,writeFile as b}from"node:fs/promises";import{createRequire as Se}from"node:module";import{dirname as We,join as u,normalize as Oe,sep as Be}from"node:path";var S=`# Flow worker handoff contract
3
3
 
4
4
  Flow managers merge only the worker's final response. Treat that response as the
5
5
  worker report of record: it must include the assigned scope, what was actually
6
6
  covered, the evidence for each useful claim, and the remaining gaps. End worker
7
7
  prompts with "Return only this Flow handoff."
8
8
 
9
+ Status meanings:
10
+
11
+ - \`success\`: the assigned scope was covered, or any skipped items are explicitly
12
+ immaterial to the assigned question.
13
+ - \`partial\`: useful evidence was gathered, but material assigned scope remains
14
+ unchecked or unresolved.
15
+ - \`blocked\`: the worker cannot answer the assigned question without missing
16
+ access, input, dependencies, or manager clarification.
17
+
9
18
  ## Evidence, review, validation, or audit worker report
10
19
 
11
20
  Use this for \`flow-evidence-worker\`, \`flow-reviewer\`,
@@ -47,7 +56,17 @@ success | partial | blocked
47
56
  Validation workers must include exact command names and raw outcome summaries
48
57
  for commands they actually ran. Audit workers must include guards checked for
49
58
  any blocking-severity candidate. Review workers must separate blocking findings
50
- from advisory notes.
59
+ from advisory notes. In the shared \`Findings or facts\` section, review workers
60
+ should prefix review items with \`blocking:\` or \`advisory:\` before the claim.
61
+
62
+ Example evidence quality:
63
+
64
+ - Good fact: \`[high] public Flow command prompts include bundled instructions;
65
+ evidence: src/config-shared.ts:135; corroboration: single source\`.
66
+ - Weak fact: \`[high] prompts look self-contained; evidence: read the config\`.
67
+ - Good validation: \`bun test tests/distribution-and-surface.test.ts\`, status
68
+ passed, summary \`surface tests passed and covered bundled command prompts\`.
69
+ - Weak validation: \`tests pass\`, with no command, status, or raw outcome.
51
70
 
52
71
  ## Verifier worker report
53
72
 
@@ -118,7 +137,7 @@ live-verified | test-verified | type-check-only | not-verified
118
137
 
119
138
  The manager must inspect and validate any candidate patch before recording Flow
120
139
  completion.
121
- `;var B=`# Parallel orchestration
140
+ `;var W=`# Parallel orchestration
122
141
 
123
142
  Use fan-out when Flow work is broad enough that independent workers can gather
124
143
  evidence faster than one linear pass. The manager still owns the Flow session:
@@ -131,6 +150,26 @@ Read these companion references before a broad wave:
131
150
  - \`verification-gates.md\` for coverage checks, handoff acceptance, verifier
132
151
  triggers, and synthesis rules.
133
152
 
153
+ ## Operational defaults
154
+
155
+ - Prefer serial work when the scope is small, tightly coupled, or blocked by one
156
+ decision that must be made before slices are meaningful.
157
+ - A normal first wave is two to five workers with independent slices. Use more
158
+ only when the coverage gate is countable and the slices remain non-overlapping.
159
+ - Run at most one routine follow-up wave. Extra waves need an explicit manager
160
+ reason, such as a high-stakes verifier check or a newly discovered bounded
161
+ slice.
162
+ - Do not fan out just to keep agents busy. Every worker should reduce a known
163
+ planning, validation, review, audit, or implementation uncertainty.
164
+
165
+ Skip fan-out when:
166
+
167
+ - one file, command, or design question determines the next step.
168
+ - slices would share the same contracts, fixtures, or edit targets.
169
+ - the manager can inspect the full scope faster than writing and checking
170
+ worker prompts.
171
+ - the result would still need the same manual synthesis with no time saved.
172
+
134
173
  ## Manager sequence
135
174
 
136
175
  1. Call \`flow_status\` if a Flow session may already exist.
@@ -154,9 +193,10 @@ Read these companion references before a broad wave:
154
193
  claims to \`flow-verifier-worker\`.
155
194
  9. Run second waves only for material gaps, conflicts, narrowed scope, or
156
195
  verification needs.
157
- 10. Synthesize one Flow artifact: plan fields, completion evidence, review
158
- payload, audit report, or candidate patch decision. Do not paste worker
159
- handoffs as the user-facing result.
196
+ 10. Apply the manager synthesis barrier: keep only distilled, evidence-backed
197
+ claims and synthesize one Flow artifact, such as plan fields, completion
198
+ evidence, review payload, audit report, or candidate patch decision. Do not
199
+ paste worker handoffs as the user-facing result.
160
200
 
161
201
  ## Modes
162
202
 
@@ -174,6 +214,36 @@ carry the permission boundaries for each mode.
174
214
  | \`verifier\` | \`flow-verifier-worker\` | Per-claim verdicts against cited evidence or commands | No | \`flow_status\` only if needed |
175
215
  | \`candidate-implementation\` | \`flow-candidate-worker\` | Candidate patch summary from an isolated worktree or exact path-owned slice | Only with explicit user authorization plus isolation or exact non-overlapping path ownership | No state-changing Flow tools |
176
216
 
217
+ Mode examples:
218
+
219
+ - Use \`flow-evidence-worker\` when the repo shape is unclear and the output will
220
+ become plan requirements, decisions, targets, or validation entries.
221
+ - Use \`flow-reviewer\` when changed files or risk lenses can be reviewed
222
+ independently before the manager returns one review payload.
223
+ - Use \`flow-validation-worker\` when the manager needs command options or raw
224
+ output from an explicitly authorized command.
225
+ - Use \`flow-audit-worker\` when candidate findings must be refuted before they
226
+ can become a report or follow-up feature.
227
+ - Use \`flow-verifier-worker\` for atomic claims that are contested,
228
+ single-sourced, high-stakes, or destined for a Flow payload.
229
+ - Use \`flow-candidate-worker\` only after explicit user authorization and only
230
+ with an isolated worktree or exact non-overlapping path ownership.
231
+
232
+ ## Permission contract
233
+
234
+ The plugin injects these hidden workers with the following permission values.
235
+ \`Flow state tools\` means the \`flow_*\` rule, while \`Flow status\` documents the
236
+ explicit \`flow_status\` exception.
237
+
238
+ | Worker | Edit | Bash | Task | Skill | Flow state tools | Flow status |
239
+ | --- | --- | --- | --- | --- | --- | --- |
240
+ | \`flow-reviewer\` | deny | deny | deny | deny | deny | allow |
241
+ | \`flow-evidence-worker\` | deny | deny | deny | deny | deny | allow |
242
+ | \`flow-validation-worker\` | deny | ask | deny | deny | deny | allow |
243
+ | \`flow-audit-worker\` | deny | ask | deny | deny | deny | allow |
244
+ | \`flow-candidate-worker\` | ask | ask | deny | deny | deny | allow |
245
+ | \`flow-verifier-worker\` | deny | ask | deny | deny | deny | allow |
246
+
177
247
  Do not fan out parallel \`flow_plan_save\`, \`flow_plan_approve\`,
178
248
  \`flow_run_start\`, \`flow_feature_complete\`, \`flow_feature_reset\`, or
179
249
  \`flow_session_close\` calls. Runtime locking protects files, but Flow accepts only
@@ -209,7 +279,7 @@ Mode: evidence | review | validation | audit | verifier | candidate-implementati
209
279
  Your exact slice: <paths, modules, command, claim ids, risk lens, or worktree>
210
280
  Expected coverage: <count, paths, range, or complete question set>
211
281
  Do: <bounded actions>
212
- Do not: call Flow state tools, edit .flow/**, own sibling slices, or make the final Flow verdict.
282
+ Do not: call state-changing Flow tools, edit .flow/**, own sibling slices, or make the final Flow verdict.
213
283
  Return exactly the matching handoff shape from handoff-format.md.
214
284
  \`\`\`
215
285
 
@@ -217,6 +287,71 @@ For research or current-doc slices, require source checks for versioned or
217
287
  time-sensitive facts. For implementation candidates, remind workers that other
218
288
  work may be active and that they must not revert unrelated changes.
219
289
 
290
+ ## Full-wave example
291
+
292
+ Goal: review whether bundled Flow command guidance is self-contained and aligned
293
+ with hidden worker permissions.
294
+
295
+ Serial orientation: the manager reads \`src/config-shared.ts\` enough to identify
296
+ five public command templates and six hidden worker configs. The manager keeps
297
+ \`flow-status\` local because it is one line and does not need a worker.
298
+
299
+ Coverage gate: ten countable items remain after the local check.
300
+
301
+ - Slice A: \`flow-auto\`, \`flow-plan\`, and \`flow-run\` templates, expected 3/10.
302
+ - Slice B: \`flow-review\` template plus \`flow-reviewer\` config, expected 2/10.
303
+ - Slice C: remaining hidden worker permission blocks, expected 5/10 after
304
+ excluding the reviewer already covered by Slice B.
305
+
306
+ Worker prompts:
307
+
308
+ \`\`\`text
309
+ Overall goal, context only: confirm Flow public commands are self-contained.
310
+ Mode: evidence
311
+ Your exact slice: flow-auto, flow-plan, and flow-run templates in src/config-shared.ts.
312
+ Expected coverage: 3/3 templates.
313
+ Do: report bundled sections, setup preflight coverage, and any gaps with file:line evidence.
314
+ Do not: call state-changing Flow tools, edit .flow/**, own sibling slices, or make the final Flow verdict.
315
+ Return exactly the matching handoff shape from handoff-format.md.
316
+ \`\`\`
317
+
318
+ \`\`\`text
319
+ Overall goal, context only: confirm Flow review command and hidden reviewer behavior.
320
+ Mode: review
321
+ Your exact slice: flow-review command template and flow-reviewer config in src/config-shared.ts.
322
+ Expected coverage: 2/2 surfaces.
323
+ Do: separate blocking findings from advisory notes and cite file:line evidence.
324
+ Do not: call state-changing Flow tools, edit .flow/**, own sibling slices, or make the final Flow verdict.
325
+ Return exactly the matching handoff shape from handoff-format.md.
326
+ \`\`\`
327
+
328
+ \`\`\`text
329
+ Overall goal, context only: confirm hidden worker permissions match the orchestration model.
330
+ Mode: audit
331
+ Your exact slice: flow-evidence-worker, flow-validation-worker, flow-audit-worker, flow-candidate-worker, and flow-verifier-worker permissions in src/config-shared.ts.
332
+ Expected coverage: 5/5 worker permission blocks.
333
+ Do: report edit, bash, task, skill, flow_*, and flow_status permissions with evidence.
334
+ Do not: call state-changing Flow tools, edit .flow/**, own sibling slices, or make the final Flow verdict.
335
+ Return exactly the matching handoff shape from handoff-format.md.
336
+ \`\`\`
337
+
338
+ Handoff checks: the manager accepts only reports with terminal status, matching
339
+ coverage counts, concrete file:line evidence, confidence tags, and claims inside
340
+ the assigned slice. A claim such as \`[high] validation workers may run commands;
341
+ evidence: src/config-shared.ts:281-288; corroboration: single source\` is usable.
342
+ A claim such as \`[high] permissions look safe; evidence: config reviewed\` is
343
+ dropped or retasked.
344
+
345
+ Verifier pass: the manager sends any single-source claim that will enter the
346
+ Flow payload to \`flow-verifier-worker\`, for example: \`C1: validation, audit,
347
+ candidate, and verifier workers have bash ask while evidence and review workers
348
+ have bash deny; sources: src/config-shared.ts worker permission blocks\`.
349
+
350
+ Final synthesis: the manager re-reads the relevant config lines, keeps only
351
+ verified or clearly labeled claims, and records one artifact such as a plan
352
+ decision, review payload, or docs patch. Raw handoffs and unverified suggestions
353
+ do not move into the next wave or user-facing answer.
354
+
220
355
  ## Where handoffs go
221
356
 
222
357
  - Planning evidence becomes \`requirements\`, \`decisions\`, feature \`targets\`,
@@ -235,6 +370,10 @@ work may be active and that they must not revert unrelated changes.
235
370
  When worker results conflict, inspect the underlying artifact directly and rerun
236
371
  the smallest check that can settle the disagreement.
237
372
 
373
+ The manager synthesis barrier means raw handoffs do not move forward by default.
374
+ Only claims that survived coverage, evidence, confidence, and verifier checks may
375
+ enter the next wave, Flow payload, patch decision, or user-facing answer.
376
+
238
377
  ## Second waves
239
378
 
240
379
  Start a follow-up wave when first-wave handoffs reveal:
@@ -247,7 +386,7 @@ Start a follow-up wave when first-wave handoffs reveal:
247
386
 
248
387
  Do not recurse by default. If a worker says it needs another worker, the manager
249
388
  decides whether that is a second wave and writes the next bounded prompt.
250
- `;var W='# Recovery playbook\n\nUse this when a Flow tool returns `status: "error"`, a blocker, or a `nextAction` that conflicts with memory.\n\n## First response\n\n1. Re-anchor with `flow_status`.\n2. Read the returned `summary`, `recovery`, `lastError`, and active feature.\n3. Fix the cause, then retry the smallest valid Flow action.\n\n## Common cases\n\n- `missing_session`: start with `flow_plan_save` using the user\'s goal.\n- `missing_goal`: ask for a concrete goal before planning.\n- `Approved plans cannot be changed`: use `flow_feature_reset` when only affected features need another pass; otherwise close and start a new goal.\n- `No feature is currently running`: call `flow_run_start` before completing.\n- `already in progress`: finish, reset, or block the active feature before starting another.\n- `Completion requires recorded validation evidence`: run real validation and include at least one passing `validationRun`.\n- `Completion requires all recorded validation to pass`: fix failures and rerun. Do not relabel failed checks as passed.\n- `Non-final feature completion requires targeted validation`: use `validationScope: "targeted"` for ordinary features.\n- `Final feature completion requires broad validation`: run the project-level gate and use `validationScope: "broad"`.\n- `Completion requires a passing featureReview`: run or request a real review and include a passing `featureReview` only when there are no blocking findings.\n- `Final feature completion requires a finalReview`: perform final review and include `finalReview`.\n- `Final review depth must match the plan policy`: use `reviewDepth` equal to the approved plan\'s `finalReviewPolicy`; valid final-review values are `broad` and `detailed`.\n- `Cannot close ... unfinished features`: complete, reset, defer, or abandon honestly. Do not mark completed while work remains.\n\n## Reset guidance\n\nUse `flow_feature_reset` when the active or completed work was built on the wrong assumption, validation revealed a design issue, dependencies need to be rerun, or dependent features must be invalidated. Resetting a feature also resets its dependents.\n\n## Closure guidance\n\nUse `flow_session_close`:\n\n- `completed`: only after all planned features are complete.\n- `deferred`: the user intentionally postpones unfinished work.\n- `abandoned`: the session should be archived without claiming delivery.\n\nAfter closure, the active `.flow/session.json` is removed and the archived JSON is stored under `.flow/history/`.\n';var S=`# Verification gates
389
+ `;var O='# Recovery playbook\n\nUse this when a Flow tool returns `status: "error"`, a blocker, or a `nextAction` that conflicts with memory.\n\n## First response\n\n1. Re-anchor with `flow_status`.\n2. Read the returned `summary`, `recovery`, `lastError`, and active feature.\n3. Fix the cause, then retry the smallest valid Flow action.\n\n## Common cases\n\n- `missing_session`: start with `flow_plan_save` using the user\'s goal.\n- `missing_goal`: ask for a concrete goal before planning.\n- `Approved plans cannot be changed`: use `flow_feature_reset` when only affected features need another pass; otherwise close and start a new goal.\n- `No feature is currently running`: call `flow_run_start` before completing.\n- `already in progress`: finish, reset, or block the active feature before starting another.\n- `Completion requires recorded validation evidence`: run real validation and include at least one passing `validationRun`.\n- `Completion requires all recorded validation to pass`: fix failures and rerun. Do not relabel failed checks as passed.\n- `Non-final feature completion requires targeted validation`: use `validationScope: "targeted"` for ordinary features.\n- `Final feature completion requires broad validation`: run the project-level gate and use `validationScope: "broad"`.\n- `Completion requires a passing featureReview`: run or request a real review and include a passing `featureReview` only when there are no blocking findings.\n- `Final feature completion requires a finalReview`: perform final review and include `finalReview`.\n- `Final review depth must match the plan policy`: use `reviewDepth` equal to the approved plan\'s `finalReviewPolicy`; valid final-review values are `broad` and `detailed`.\n- `Cannot close ... unfinished features`: complete, reset, defer, or abandon honestly. Do not mark completed while work remains.\n\n## Reset guidance\n\nUse `flow_feature_reset` when the active or completed work was built on the wrong assumption, validation revealed a design issue, dependencies need to be rerun, or dependent features must be invalidated. Resetting a feature also resets its dependents.\n\n## Closure guidance\n\nUse `flow_session_close`:\n\n- `completed`: only after all planned features are complete.\n- `deferred`: the user intentionally postpones unfinished work.\n- `abandoned`: the session should be archived without claiming delivery.\n\nAfter closure, the active `.flow/session.json` is removed and the archived JSON is stored under `.flow/history/`.\n';var B=`# Verification gates
251
390
 
252
391
  Verification is how Flow keeps parallel work from turning into parallel
253
392
  guesswork. Worker handoffs are candidate evidence; the manager decides what can
@@ -322,7 +461,7 @@ Candidate implementation patches are not Flow evidence until the manager
322
461
  inspects, merges or rejects them, and runs suitable validation in the main
323
462
  Flow-managed workspace.
324
463
 
325
- ## Final synthesis
464
+ ## Manager synthesis barrier
326
465
 
327
466
  Before presenting or recording the result:
328
467
 
@@ -332,6 +471,8 @@ Before presenting or recording the result:
332
471
  instead of arbitrating from summaries.
333
472
  - Run the strongest practical local check for the deliverable.
334
473
  - Re-read critical files or docs that will be cited in the final decision.
474
+ - Move only distilled, evidence-backed claims forward; raw handoffs remain
475
+ candidate evidence, not a plan, review, completion payload, or final answer.
335
476
  - Record gaps honestly instead of converting missing evidence into success
336
477
  language.
337
478
 
@@ -350,10 +491,11 @@ Use Flow as a minimal state ledger, not as a framework. Skills provide judgment;
350
491
 
351
492
  1. Call \`flow_status\` first. Trust its active session and next action over conversation memory.
352
493
  If the result includes \`setup.skills\`, report that setup status and do not
353
- load Flow skills in this startup. A just-synced skill can be on disk while
354
- unavailable to the running OpenCode process.
494
+ native-load Flow skills in this startup. Public bundled Flow commands may
495
+ continue with their embedded instructions, but a just-synced native skill can
496
+ be on disk while unavailable to the running OpenCode process.
355
497
  2. If there is no active session and the user gave a goal, load \`flow-plan\`, save a plan with \`flow_plan_save\`, then approve it with \`flow_plan_approve\` only after explicit user approval or prior authorization for autonomous implementation. If there is no goal, ask for one.
356
- 3. Load \`flow-run\`, call \`flow_run_start\`, implement exactly one feature, validate it, and prepare a \`flow_feature_complete\` payload. For validation-heavy, regression-sensitive, or browser/UI work, use \`flow-test\` to choose and summarize evidence before completion.
498
+ 3. Load \`flow-run\`, call \`flow_run_start\`, implement exactly one feature, validate it, and prepare a \`flow_feature_complete\` payload. For validation-heavy, regression-sensitive, browser QA, route QA, or failure-prone work, use \`flow-test\` to choose and summarize evidence before completion.
357
499
  4. Load \`flow-review\` for the required feature review. The reviewer reports a \`featureReview\` payload; the manager records it inside \`flow_feature_complete\`.
358
500
  5. On the final feature, run broad validation and include \`finalReview\` in the same \`flow_feature_complete\` call. Its \`reviewDepth\` must match the plan's \`finalReviewPolicy\`.
359
501
  6. After all features are complete, archive the session with \`flow_session_close\` using \`kind: "completed"\`.
@@ -367,9 +509,11 @@ commit preparation or commit creation.
367
509
  ## Skill Availability
368
510
 
369
511
  If \`flow_status\` returns \`setup.skills\`, report that setup status and stop
370
- loading Flow skills in the current OpenCode startup. Missing, incomplete, or
371
- outdated managed skills require a sync/restart cycle before their instructions
372
- can be trusted by the running process.
512
+ native-loading Flow skills in the current OpenCode startup. Missing, incomplete,
513
+ or outdated managed skills require a sync/restart cycle before their native skill
514
+ instructions can be trusted by the running process. Public command bundles are
515
+ self-contained and may continue when the command prompt already embeds the
516
+ required Flow instructions.
373
517
 
374
518
  If optional helper skills such as \`flow-test\`, \`flow-deslop\`, or
375
519
  \`flow-ui-quality\` are unavailable, continue only with explicit coverage gaps. Do
@@ -409,7 +553,7 @@ Planning and running require loaded Flow tools; do not simulate plan approval or
409
553
  - Unknown runtime error: read \`summary\` and \`recovery\`; see \`references/recovery-playbook.md\` for common cases.
410
554
 
411
555
  Never fabricate validation output, backfill review approval you did not perform, or close as \`deferred\`/\`abandoned\` merely to avoid an unfinished-work blocker.
412
- `;var O=`---
556
+ `;var E=`---
413
557
  name: flow-commit
414
558
  description: Prepare safe Git commits and commit messages. Use only when the user asks to inspect, stage, validate, write a commit message, or create a commit; preserves unrelated work and never pushes, amends, rebases, or publishes without explicit authorization.
415
559
  ---
@@ -482,21 +626,23 @@ Before commit creation, check the staged diff for:
482
626
  - Package or version metadata drift unrelated to the requested change.
483
627
 
484
628
  When this repository-local contribution preflight exists, defer to it for staged
485
- and outgoing validation instead of duplicating its checks:
629
+ or outgoing validation instead of duplicating its checks:
486
630
 
487
631
  \`\`\`bash
488
632
  .agents/skills/flow-contribution-check/scripts/preflight.sh commit
489
633
  \`\`\`
490
634
 
491
- Run it after staging and rerun it after any staging change. The preflight
492
- validates staged or outgoing work; it does not choose commit boundaries or write
493
- commit messages. If the script is absent, use the repository's documented commit
635
+ Run it after staging and rerun it after any staging change. Commit mode validates
636
+ the staged boundary for diff hygiene, staged review, and staged secret screening;
637
+ it does not run a whole-worktree gate, choose commit boundaries, or write commit
638
+ messages. If the script is absent, use the repository's documented commit
494
639
  preflight from package scripts, AGENTS/docs, or CI guidance.
495
640
 
496
641
  Use the repository's documented broad validation gate when a full local check is
497
- appropriate, such as package scripts, AGENTS/docs, or CI guidance. Use narrower
498
- tests only when the user has asked for a lighter pass or when the change is
499
- intentionally not ready for the broad gate.
642
+ appropriate, such as package scripts, AGENTS/docs, or CI guidance. Treat broad
643
+ checks as whole-worktree evidence unless the repository explicitly provides a
644
+ staged-content runner. Use narrower tests only when the user has asked for a
645
+ lighter pass or when the change is intentionally not ready for the broad gate.
500
646
 
501
647
  ## Message
502
648
 
@@ -523,7 +669,7 @@ Before running \`git commit\`, report:
523
669
 
524
670
  After a successful commit, report the commit hash and leave push or release
525
671
  actions for a separate explicit request.
526
- `;var E=`# Safe refactor workflow
672
+ `;var N=`# Safe refactor workflow
527
673
 
528
674
  Refactoring is a behavior-preserving sequence of small changes. This workflow keeps cleanup from becoming an unreviewable rewrite.
529
675
 
@@ -565,7 +711,7 @@ Weak evidence includes:
565
711
  - Public contracts and compatibility shims remain intact or were explicitly planned.
566
712
  - Deleted code is actually unreachable or obsolete.
567
713
  - Validation can catch a realistic mistake in the refactor.
568
- `;var N=`# Deslop smell rubric
714
+ `;var G=`# Deslop smell rubric
569
715
 
570
716
  Use this rubric to turn vague cleanup instincts into reviewable findings.
571
717
 
@@ -641,7 +787,7 @@ For each claimed smell removal, verify:
641
787
  - **blast radius** — public contracts and downstream callers still work.
642
788
 
643
789
  Never approve cleanup because it "looks cleaner" without evidence. Tests passing is necessary but not sufficient when the refactor changes structure across files.
644
- `;var G=`# Parallel discovery
790
+ `;var M=`# Parallel discovery
645
791
 
646
792
  Use this only after a serial orientation pass has identified the repo shape and the likely slices. Workers are read-only evidence gatherers; the planner owns the plan.
647
793
 
@@ -674,6 +820,10 @@ For this repository, good first-wave slices are:
674
820
  \`bun.lock\`, \`README.md\`, and \`CHANGELOG.md\`.
675
821
  - Docs and operator contract: \`docs/**\`, \`README.md\`, and skill references.
676
822
 
823
+ Treat these as starting points, not a simultaneous coverage map. Before fan-out,
824
+ choose the relevant entries and de-overlap shared docs, skills, or release
825
+ surfaces in the coverage gate.
826
+
677
827
  ## Coverage gate
678
828
 
679
829
  Before spawning workers, state the total discovery scope and one line per slice.
@@ -684,17 +834,19 @@ state the completeness rule, such as "all changed files plus callers."
684
834
  ## Worker prompt
685
835
 
686
836
  \`\`\`text
687
- Inspect <slice> for <goal>. Read-only. Do not edit files or call Flow tools.
688
- Return the evidence/review/validation/audit handoff shape from ../../flow/references/handoff-format.md.
837
+ Inspect <slice> for <goal>. Read-only. Do not edit files or call
838
+ state-changing Flow tools. Return the evidence/review/validation/audit handoff
839
+ shape from ../../flow/references/handoff-format.md.
689
840
  \`\`\`
690
841
 
691
842
  For validation-oriented discovery:
692
843
 
693
844
  \`\`\`text
694
- Inspect <slice> for validation risk. Read-only. Do not edit files or call Flow
695
- tools. You may report commands that should be run, and include raw output only
696
- for commands you actually ran. Return the evidence/review/validation/audit
697
- handoff shape from ../../flow/references/handoff-format.md.
845
+ Inspect <slice> for validation risk. Read-only. Do not edit files or call
846
+ state-changing Flow tools. You may report commands that should be run, and
847
+ include raw output only for commands you actually ran. Return the
848
+ evidence/review/validation/audit handoff shape from
849
+ ../../flow/references/handoff-format.md.
698
850
  \`\`\`
699
851
 
700
852
  ## Synthesis
@@ -707,6 +859,10 @@ Convert only evidence-backed work into plan fields:
707
859
  - feature \`validation\`: checks expected to prove the feature.
708
860
 
709
861
  If workers disagree, inspect the source artifact yourself. If a candidate finding lacks a concrete citation or refutation pass, make it a review-first deliverable rather than a fix feature.
862
+
863
+ Apply the manager synthesis barrier from
864
+ \`../../flow/references/verification-gates.md\`: only distilled, evidence-backed
865
+ claims become plan fields.
710
866
  `;var L=`# Planning examples
711
867
 
712
868
  ## Rate limiting feature set
@@ -792,7 +948,7 @@ Better plan:
792
948
  - Validation that only says "manual testing".
793
949
  - Targets that name the entire repo.
794
950
  - Features with hidden dependencies instead of \`dependsOn\`.
795
- `;var M=`---
951
+ `;var $=`---
796
952
  name: flow-plan
797
953
  description: Plan Flow work for the v4 skills-first runtime: inspect the repo, decompose a user goal into right-sized features, save a draft with flow_plan_save, and approve it with flow_plan_approve.
798
954
  ---
@@ -807,9 +963,9 @@ If \`flow_plan_save\` or \`flow_plan_approve\` is unavailable, stop and tell the
807
963
 
808
964
  - Read the files, docs, tests, package scripts, and local conventions that determine the work.
809
965
  - For broad discovery, read \`references/parallel-discovery.md\` after a serial orientation pass. Use \`../flow/references/parallel-orchestration.md\` when discovery needs multiple workers, and apply its coverage gate before fan-out.
810
- - For complex validation, regression-sensitive changes, browser/UI workflows,
811
- or uncertain test strategy, load \`flow-test\`. If it is unavailable, record a
812
- planning gap and keep validation claims conservative.
966
+ - For complex validation, regression-sensitive changes, browser QA, route QA,
967
+ failure-prone checks, or uncertain test strategy, load \`flow-test\`. If it is
968
+ unavailable, record a planning gap and keep validation claims conservative.
813
969
  - For cleanup/refactor goals, load \`flow-deslop\`. If it is unavailable, record
814
970
  a planning gap and keep cleanup claims conservative.
815
971
  - For UI/frontend goals, load \`flow-ui-quality\`. If it is unavailable, record a
@@ -862,7 +1018,7 @@ Use only \`finalReviewPolicy: "broad"\` or \`"detailed"\`. These are the canonic
862
1018
  After saving, summarize the plan to the user. Call \`flow_plan_approve\` only after explicit user approval, unless the user already authorized autonomous implementation. Approved plans are immutable; changing them later requires reset/closure rather than silent edits.
863
1019
 
864
1020
  See \`references/planning-examples.md\` for payload examples and decomposition anti-patterns.
865
- `;var K=`# Review rubric
1021
+ `;var Q=`# Review rubric
866
1022
 
867
1023
  Use this to decide whether a \`featureReview\` or \`finalReview\` payload may pass.
868
1024
 
@@ -950,7 +1106,7 @@ When reviewing a findings report, verify findings adversarially:
950
1106
  - Downgrade or reject findings that do not survive refutation.
951
1107
 
952
1108
  Approve only on evidence actually inspected. A review is a claim of coverage, not a courtesy stamp.
953
- `;var $=`---
1109
+ `;var K=`---
954
1110
  name: flow-review
955
1111
  description: Review Flow work in the v4 runtime: inspect feature or final-session changes, classify findings, and return featureReview or finalReview payloads for flow_feature_complete.
956
1112
  ---
@@ -969,7 +1125,7 @@ recorded.
969
1125
  - Identify whether this is a feature review or final review.
970
1126
  - Read the approved plan fields relevant to the work: \`requirements\`, \`decisions\`, feature \`targets\`, feature \`validation\`, and dependencies.
971
1127
  - Inspect the actual diff, changed files, tests, and validation output. Do not review only the completion summary.
972
- - Load \`flow-test\` for validation-heavy, regression-sensitive, browser/UI, or
1128
+ - Load \`flow-test\` for validation-heavy, regression-sensitive, browser QA, or
973
1129
  unclear coverage reviews. If it is unavailable, record a coverage gap and
974
1130
  treat missing validation evidence as a gap or blocker based on user impact.
975
1131
  - Load \`references/review-rubric.md\` for severity, depth, and payload shape.
@@ -1011,7 +1167,7 @@ Use \`status: "failed"\` when any blocking finding remains. Advisory findings ma
1011
1167
 
1012
1168
  - Cleanup/refactor: load \`flow-deslop\`; verify the smell was real, refutation paths were checked, and behavior was preserved. If unavailable, record a coverage gap instead of approving cleanup claims.
1013
1169
  - UI/frontend: load \`flow-ui-quality\`; verify state coverage and visual evidence when a local target was available. If unavailable, record a coverage gap and do not claim visual polish was verified.
1014
- - Audit reports: use \`flow-run/references/audit-rubric.md\`; findings must survive refutation before they can drive fix features.
1170
+ - Audit reports: use \`../flow-run/references/audit-rubric.md\`; findings must survive refutation before they can drive fix features.
1015
1171
  - Large reviews: use \`../flow/references/parallel-orchestration.md\` for
1016
1172
  read-only slices by changed-file group, risk lens, or validation surface.
1017
1173
  Use the named review, audit, evidence, or validation agents from that
@@ -1020,7 +1176,7 @@ Use \`status: "failed"\` when any blocking finding remains. Advisory findings ma
1020
1176
  \`finalReview\` payload.
1021
1177
 
1022
1178
  Never approve to unblock completion, fix findings in the review pass, or vouch for validation you did not inspect.
1023
- `;var Q=`# Audit findings rubric
1179
+ `;var Y=`# Audit findings rubric
1024
1180
 
1025
1181
  What counts as a valid finding when the feature's deliverable is a findings report: a codebase audit, a review-first feature, or any report whose findings a later feature will fix. The commands you run are still governed by \`validation-rubric.md\`; this rubric governs the findings themselves.
1026
1182
 
@@ -1130,7 +1286,7 @@ Broad validation usually means the repo's full check command, full relevant test
1130
1286
  - If validation needs external access, missing credentials, or ambiguous user input, record \`status: "needs_input"\` with an honest \`outcome\`.
1131
1287
 
1132
1288
  Never trim failing output, relabel a failed command as passed, or use "not run" as completion evidence.
1133
- `;var Y=`---
1289
+ `;var J=`---
1134
1290
  name: flow-run
1135
1291
  description: Execute one approved Flow feature in the v4 runtime: start a feature with flow_run_start, make scoped changes, gather real validation evidence, obtain review payloads, and complete with flow_feature_complete.
1136
1292
  ---
@@ -1164,8 +1320,8 @@ If \`flow_run_start\` is unavailable, stop and tell the user to check that \`ope
1164
1320
 
1165
1321
  ## Validate
1166
1322
 
1167
- - For complex validation, regression-sensitive changes, browser/UI workflows,
1168
- failure-prone checks, unclear coverage, route QA, exploratory QA, or
1323
+ - For complex validation, regression-sensitive changes, browser QA, route QA,
1324
+ failure-prone checks, unclear coverage, exploratory QA, or
1169
1325
  \`validationRun\` summarization, load \`flow-test\`. If it is unavailable, record
1170
1326
  the coverage gap and keep validation claims conservative.
1171
1327
  - Read \`references/validation-rubric.md\` before completing.
@@ -1217,7 +1373,7 @@ Complete with:
1217
1373
  \`\`\`
1218
1374
 
1219
1375
  If genuinely blocked, call \`flow_feature_complete\` with \`status: "needs_input"\` and an \`outcome\` that explains the blocker and next step. Never fabricate validation or review evidence to force progress.
1220
- `;var J=`---
1376
+ `;var Z=`---
1221
1377
  name: flow-test
1222
1378
  description: Test, validate, make test plans, triage failures, and gather Flow validation evidence. Use when selecting checks, running tests, running browser QA for UI changes, classifying failures, or preparing validationRun evidence for flow_feature_complete.
1223
1379
  ---
@@ -1341,7 +1497,7 @@ covered. Static inspection alone is a gap for behavioral changes.
1341
1497
 
1342
1498
  Never relabel a failed command as passed, invent output, or use "not run" as
1343
1499
  completion evidence.
1344
- `;var Z=`# UI quality rubric
1500
+ `;var H=`# UI quality rubric
1345
1501
 
1346
1502
  Use this rubric for frontend planning, implementation, and review.
1347
1503
 
@@ -1385,7 +1541,7 @@ class; severity; location or screenshot area; evidence inspected; user impact; f
1385
1541
  \`\`\`
1386
1542
 
1387
1543
  Blocking UI findings are issues that prevent task completion, hide required information, break accessibility basics, create incoherent layout at supported sizes, or make the visual success claim unverifiable.
1388
- `;var H=`# Visual verification workflow
1544
+ `;var ee=`# Visual verification workflow
1389
1545
 
1390
1546
  Use this workflow when UI changes can be run locally. Flow execution may create visual evidence; Flow review usually assesses recorded evidence because the reviewer is read-only.
1391
1547
 
@@ -1425,7 +1581,7 @@ Record the reason and use the strongest available substitute:
1425
1581
  - code inspection against existing component patterns.
1426
1582
 
1427
1583
  Do not claim visual polish was verified if no visual artifact was inspected.
1428
- `;var ee=`---
1584
+ `;var ae=`---
1429
1585
  name: flow-ui-quality
1430
1586
  description: Review and improve frontend UI quality for Flow work. Use for UX/UI design, frontend polish, visual quality review, responsive and accessible interfaces, interaction states, screenshots, browser-verified UI work, and avoiding generic AI-generated UI.
1431
1587
  ---
@@ -1473,16 +1629,23 @@ Approve only when the interface is both useful and inspectable:
1473
1629
  - Screenshot/browser evidence supports the claim whenever feasible.
1474
1630
 
1475
1631
  Never approve a UI change based only on code shape. If users will judge it visually, Flow evidence should include visual inspection.
1476
- `;var w=[{name:"flow",files:[{relativePath:"SKILL.md",content:z},{relativePath:"references/recovery-playbook.md",content:W},{relativePath:"references/parallel-orchestration.md",content:B},{relativePath:"references/handoff-format.md",content:j},{relativePath:"references/verification-gates.md",content:S}]},{name:"flow-plan",files:[{relativePath:"SKILL.md",content:M},{relativePath:"references/planning-examples.md",content:L},{relativePath:"references/parallel-discovery.md",content:G}]},{name:"flow-run",files:[{relativePath:"SKILL.md",content:Y},{relativePath:"references/validation-rubric.md",content:X},{relativePath:"references/audit-rubric.md",content:Q}]},{name:"flow-test",files:[{relativePath:"SKILL.md",content:J}]},{name:"flow-review",files:[{relativePath:"SKILL.md",content:$},{relativePath:"references/review-rubric.md",content:K}]},{name:"flow-deslop",files:[{relativePath:"SKILL.md",content:V},{relativePath:"references/smell-rubric.md",content:N},{relativePath:"references/refactor-workflow.md",content:E}]},{name:"flow-ui-quality",files:[{relativePath:"SKILL.md",content:ee},{relativePath:"references/ui-rubric.md",content:Z},{relativePath:"references/visual-verification.md",content:H}]},{name:"flow-commit",files:[{relativePath:"SKILL.md",content:O}]}];var C=".flow-skill-version";function x(){return process.env.HOME??process.env.USERPROFILE??""}function A(e=x()){return l(e,".config","opencode","skills")}function _(e){return qe("sha256").update(e).digest("hex")}function b(e,a){return[`version=${a}`,...e.files.map((t)=>`file=${t.relativePath} sha256=${_(t.content)}`),""].join(`
1477
- `)}async function f(e){try{return await Te(e,"utf8")}catch(a){if(a.code==="ENOENT")return null;throw a}}function q(e){let a=new Map;if(!e)return a;for(let t of e.split(/\r?\n/)){let r=/^file=(.+) sha256=([a-f0-9]{64})$/.exec(t)??/^file=(.+)=sha256:([a-f0-9]{64})$/.exec(t);if(r?.[1]&&r[2])a.set(r[1],r[2]);let s=/^hash=sha256:([a-f0-9]{64})$/.exec(t);if(s?.[1]&&!a.has("SKILL.md"))a.set("SKILL.md",s[1])}return a}function ze(e){if(!e)return null;for(let a of e.split(/\r?\n/)){let t=/^version=(.+)$/.exec(a);if(t?.[1])return t[1]}return null}function k(e,a){let t=We(l(e,...a.split("/")));if(t!==e&&t.startsWith(`${e}${Se}`))return t;throw Error(`Unsafe skill file path '${a}'.`)}async function Oe(e,a,t){let r=l(t,e.name),s=l(r,C),n=await f(s),d=q(n);if(await f(l(r,"SKILL.md"))!==null&&n===null)return{name:e.name,action:"skipped_foreign"};let p=!1,m=!1;for(let o of e.files){let i=k(r,o.relativePath),u=await f(i);if(u===o.content)continue;p=!0;let v=d.get(o.relativePath);if(u!==null&&(v?_(u)!==v:n!==null))await y(`${i}.backup`,u,"utf8"),m=!0}if(!p&&n===b(e,a))return{name:e.name,action:"unchanged"};if(!p)return await y(s,b(e,a),"utf8"),{name:e.name,action:"marker_updated"};let g=n!==null;for(let o of e.files){let i=k(r,o.relativePath);await Pe(Be(i),{recursive:!0}),await y(i,o.content,"utf8")}return await y(s,b(e,a),"utf8"),{name:e.name,action:m?"updated_with_backup":g?"updated":"installed"}}function Ee(){return w.map((e)=>e.name)}function Ne(e){return`npx -y opencode-plugin-flow@${e} doctor`}function P(){if(process.env.npm_package_version)return process.env.npm_package_version;try{let e=je(import.meta.url);for(let a of["../package.json","../../package.json"])try{let t=e(a);if(t.version)return t.version}catch{}}catch{}return"0.0.0"}async function oe(e,a=x()){let t=A(a);return Promise.all(w.map((r)=>Oe(r,e,t)))}async function re(e=P(),a=x()){let t=A(a),r=new Set(Ee()),s=await Promise.all(w.map(async(o)=>{let i=l(t,o.name),u=await f(l(i,C)),v=ze(u),T=q(u);if(await f(l(i,"SKILL.md"))===null)return{name:o.name,path:i,status:"missing",markerVersion:v,missingFiles:o.files.map((h)=>h.relativePath),editedFiles:[],outdatedFiles:[]};if(u===null)return{name:o.name,path:i,status:"foreign",markerVersion:v,missingFiles:[],editedFiles:[],outdatedFiles:[]};let I=[],R=[],F=[];for(let h of o.files){let U=await f(k(i,h.relativePath));if(U===null){I.push(h.relativePath);continue}if(U===h.content)continue;let D=T.get(h.relativePath);if(D&&_(U)!==D){R.push(h.relativePath);continue}F.push(h.relativePath)}let ie=u!==b(o,e),ce=I.length>0?"incomplete":R.length>0?"edited":ie||F.length>0?"outdated":"ok";return{name:o.name,path:i,status:ce,markerVersion:v,missingFiles:I,editedFiles:R,outdatedFiles:F}})),n=[];try{n=await te(t)}catch(o){if(o.code!=="ENOENT")throw o}let d=n.filter((o)=>(o==="flow"||o.startsWith("flow-"))&&!r.has(o)).map((o)=>l(t,o)),c=s.filter((o)=>["missing","incomplete","outdated"].includes(o.status)).map((o)=>o.name),p=s.filter((o)=>["foreign","edited"].includes(o.status)).map((o)=>o.name),m=p.length>0,g=c.length>0;return{status:m?"action_required":g?"sync_required":"ok",version:e,root:t,expectedSkills:[...r],skills:s,syncRequiredSkills:c,actionRequiredSkills:p,unmanagedFlowSkills:d}}function ae(e,a,t){if(t.length===0)return;e.push(`- ${a}: ${t.join(", ")}`)}function se(e){let a=["Flow doctor",`- status: ${e.status}`,`- plugin version: ${e.version}`,`- skills root: ${e.root}`,`- expected skills: ${e.expectedSkills.join(", ")}`];ae(a,"startup sync can install/update",e.syncRequiredSkills),ae(a,"needs user decision",e.actionRequiredSkills),a.push("","Skills:");for(let t of e.skills){if(a.push(`- ${t.name}: ${t.status} (${t.path})${t.markerVersion?` marker=${t.markerVersion}`:""}`),t.missingFiles.length>0)a.push(` missing: ${t.missingFiles.join(", ")}`);if(t.editedFiles.length>0)a.push(` edited: ${t.editedFiles.join(", ")}`);if(t.outdatedFiles.length>0)a.push(` outdated: ${t.outdatedFiles.join(", ")}`)}if(e.unmanagedFlowSkills.length>0){a.push("","Unmanaged Flow-like skill folders:");for(let t of e.unmanagedFlowSkills)a.push(`- ${t}`)}if(a.push("","Recommendation:"),e.status==="ok")a.push("- Flow skills are present and current.");else if(e.status==="sync_required")a.push("- Start or restart OpenCode with opencode-plugin-flow enabled so startup sync can install or update the listed skills. If Flow then reports restart_required, restart OpenCode once more so the refreshed skill registry is used.");else a.push("- Resolve user-owned or edited managed skill folders, then restart OpenCode. Move a folder aside to let Flow recreate it, or keep it intentionally as a local override.");return a.push(`- Details command: ${Ne(e.version)}`),`${a.join(`
1632
+ `;var y=[{name:"flow",files:[{relativePath:"SKILL.md",content:z},{relativePath:"references/recovery-playbook.md",content:O},{relativePath:"references/parallel-orchestration.md",content:W},{relativePath:"references/handoff-format.md",content:S},{relativePath:"references/verification-gates.md",content:B}]},{name:"flow-plan",files:[{relativePath:"SKILL.md",content:$},{relativePath:"references/planning-examples.md",content:L},{relativePath:"references/parallel-discovery.md",content:M}]},{name:"flow-run",files:[{relativePath:"SKILL.md",content:J},{relativePath:"references/validation-rubric.md",content:X},{relativePath:"references/audit-rubric.md",content:Y}]},{name:"flow-test",files:[{relativePath:"SKILL.md",content:Z}]},{name:"flow-review",files:[{relativePath:"SKILL.md",content:K},{relativePath:"references/review-rubric.md",content:Q}]},{name:"flow-deslop",files:[{relativePath:"SKILL.md",content:V},{relativePath:"references/smell-rubric.md",content:G},{relativePath:"references/refactor-workflow.md",content:N}]},{name:"flow-ui-quality",files:[{relativePath:"SKILL.md",content:ae},{relativePath:"references/ui-rubric.md",content:H},{relativePath:"references/visual-verification.md",content:ee}]},{name:"flow-commit",files:[{relativePath:"SKILL.md",content:E}]}];var q=".flow-skill-version";function _(){return process.env.HOME??process.env.USERPROFILE??""}function D(e=_()){return u(e,".config","opencode","skills")}function g(e){return De("sha256").update(e).digest("hex")}function k(e,a){return[`version=${a}`,...e.files.map((t)=>`file=${t.relativePath} sha256=${g(t.content)}`),""].join(`
1633
+ `)}async function m(e){try{return await Pe(e,"utf8")}catch(a){if(a.code==="ENOENT")return null;throw a}}function T(e){let a=new Map;if(!e)return a;for(let t of e.split(/\r?\n/)){let r=/^file=(.+) sha256=([a-f0-9]{64})$/.exec(t)??/^file=(.+)=sha256:([a-f0-9]{64})$/.exec(t);if(r?.[1]&&r[2])a.set(r[1],r[2]);let n=/^hash=sha256:([a-f0-9]{64})$/.exec(t);if(n?.[1]&&!a.has("SKILL.md"))a.set("SKILL.md",n[1])}return a}function ze(e){if(!e)return null;for(let a of e.split(/\r?\n/)){let t=/^version=(.+)$/.exec(a);if(t?.[1])return t[1]}return null}function x(e,a){let t=Oe(u(e,...a.split("/")));if(t!==e&&t.startsWith(`${e}${Be}`))return t;throw Error(`Unsafe skill file path '${a}'.`)}async function Ee(e,a){let t=`${e}.backup.${g(a).slice(0,12)}`;for(let r=0;;r+=1){let n=r===0?t:`${t}.${r}`;try{return await b(n,a,{encoding:"utf8",flag:"wx"}),n}catch(s){if(s.code==="EEXIST")continue;throw s}}}async function Ne(e,a,t){let r=u(t,e.name),n=u(r,q),s=await m(n),d=T(s);if(await m(u(r,"SKILL.md"))!==null&&s===null)return{name:e.name,action:"skipped_foreign"};let i=!1,l=[];for(let o of e.files){let c=x(r,o.relativePath),h=await m(c);if(h===o.content)continue;i=!0;let v=d.get(o.relativePath);if(h!==null&&(v?g(h)!==v:s!==null))l.push(await Ee(c,h))}if(!i&&s===k(e,a))return{name:e.name,action:"unchanged"};if(!i)return await b(n,k(e,a),"utf8"),{name:e.name,action:"marker_updated"};let w=s!==null;for(let o of e.files){let c=x(r,o.relativePath);await Te(We(c),{recursive:!0}),await b(c,o.content,"utf8")}return await b(n,k(e,a),"utf8"),{name:e.name,action:l.length>0?"updated_with_backup":w?"updated":"installed",...l.length>0?{backupPaths:l}:{}}}function Ge(){return y.map((e)=>e.name)}function Ve(e){return`npx -y opencode-plugin-flow@${e} doctor`}function I(){if(process.env.npm_package_version)return process.env.npm_package_version;try{let e=Se(import.meta.url);for(let a of["../package.json","../../package.json"])try{let t=e(a);if(t.version)return t.version}catch{}}catch{}return"0.0.0"}async function re(e,a=_()){let t=D(a);return Promise.all(y.map((r)=>Ne(r,e,t)))}async function se(e=I(),a=_()){let t=D(a),r=new Set(Ge()),n=await Promise.all(y.map(async(o)=>{let c=u(t,o.name),h=await m(u(c,q)),v=ze(h),P=T(h);if(await m(u(c,"SKILL.md"))===null)return{name:o.name,path:c,status:"missing",markerVersion:v,missingFiles:o.files.map((f)=>f.relativePath),editedFiles:[],outdatedFiles:[]};if(h===null)return{name:o.name,path:c,status:"foreign",markerVersion:v,missingFiles:[],editedFiles:[],outdatedFiles:[]};let R=[],U=[],C=[];for(let f of o.files){let A=await m(x(c,f.relativePath));if(A===null){R.push(f.relativePath);continue}if(A===f.content)continue;let j=P.get(f.relativePath);if(j&&g(A)!==j){U.push(f.relativePath);continue}C.push(f.relativePath)}let ce=h!==k(o,e),de=R.length>0?"incomplete":U.length>0?"edited":ce||C.length>0?"outdated":"ok";return{name:o.name,path:c,status:de,markerVersion:v,missingFiles:R,editedFiles:U,outdatedFiles:C}})),s=[];try{s=await oe(t)}catch(o){if(o.code!=="ENOENT")throw o}let d=s.filter((o)=>(o==="flow"||o.startsWith("flow-"))&&!r.has(o)).map((o)=>u(t,o)),p=n.filter((o)=>["missing","incomplete","outdated"].includes(o.status)).map((o)=>o.name),i=n.filter((o)=>["foreign","edited"].includes(o.status)).map((o)=>o.name),l=i.length>0,w=p.length>0;return{status:l?"action_required":w?"sync_required":"ok",version:e,root:t,expectedSkills:[...r],skills:n,syncRequiredSkills:p,actionRequiredSkills:i,unmanagedFlowSkills:d}}function te(e,a,t){if(t.length===0)return;e.push(`- ${a}: ${t.join(", ")}`)}function ne(e){let a=["Flow doctor",`- status: ${e.status}`,`- plugin version: ${e.version}`,`- skills root: ${e.root}`,`- expected skills: ${e.expectedSkills.join(", ")}`];te(a,"startup sync can install/update",e.syncRequiredSkills),te(a,"needs user decision",e.actionRequiredSkills),a.push("","Skills:");for(let t of e.skills){if(a.push(`- ${t.name}: ${t.status} (${t.path})${t.markerVersion?` marker=${t.markerVersion}`:""}`),t.missingFiles.length>0)a.push(` missing: ${t.missingFiles.join(", ")}`);if(t.editedFiles.length>0)a.push(` edited: ${t.editedFiles.join(", ")}`);if(t.outdatedFiles.length>0)a.push(` outdated: ${t.outdatedFiles.join(", ")}`)}if(e.unmanagedFlowSkills.length>0){a.push("","Unmanaged Flow-like skill folders:");for(let t of e.unmanagedFlowSkills)a.push(`- ${t}`)}if(a.push("","Recommendation:"),e.status==="ok")a.push("- Flow skills are present and current.");else if(e.status==="sync_required")a.push("- Start or restart OpenCode with opencode-plugin-flow enabled so startup sync can install or update the listed skills. If Flow then reports restart_required, restart OpenCode once more so the refreshed skill registry is used.");else a.push("- Resolve user-owned or edited managed skill folders, then restart OpenCode. Move a folder aside to let Flow recreate it, or keep it intentionally as a local override.");return a.push(`- Details command: ${Ve(e.version)}`),`${a.join(`
1478
1634
  `)}
1479
- `}async function ne(e=x()){let a=A(e),t=[],r=[],s;try{s=await te(a)}catch(n){if(n.code==="ENOENT")return{removed:t,kept:r};throw n}for(let n of s){if(n!=="flow"&&!n.startsWith("flow-"))continue;let d=l(a,n),c=await f(l(d,C));if(c===null){r.push(d);continue}let p=q(c),m=!1;for(let[g,o]of p){let i=await f(k(d,g));if(i!==null&&_(i)!==o){m=!0;break}}if(m){r.push(d);continue}await De(d,{recursive:!0,force:!0}),t.push(d)}return{removed:t,kept:r}}async function Ve(e){let a=e[2];if(a!=="uninstall"&&a!=="doctor"&&a!=="sync"){process.stderr.write(`usage: opencode-plugin-flow <doctor|sync|uninstall>
1480
- `),process.exitCode=2;return}if(a==="doctor"){process.stdout.write(se(await re()));return}if(a==="sync"){let r=P(),s=await oe(r),n=s.filter((c)=>["installed","updated","updated_with_backup"].includes(c.action)),d=s.filter((c)=>c.action==="skipped_foreign");process.stdout.write(`Flow skill sync (${r})
1481
- `);for(let c of s)process.stdout.write(`- ${c.name}: ${c.action}
1482
- `);if(n.length>0)process.stdout.write(`Restart OpenCode so the refreshed skill registry is used.
1483
- `);if(d.length>0)process.stdout.write(`Some managed skill folders are user-owned or edited; run doctor for repair guidance.
1484
- `);return}let t=await ne();for(let r of t.removed)process.stdout.write(`Removed Flow skill: ${r}
1485
- `);for(let r of t.kept)process.stdout.write(`Kept non-Flow or user-edited skill: ${r}
1635
+ `}async function ie(e=_()){let a=D(e),t=[],r=[],n;try{n=await oe(a)}catch(s){if(s.code==="ENOENT")return{removed:t,kept:r};throw s}for(let s of n){if(s!=="flow"&&!s.startsWith("flow-"))continue;let d=u(a,s),p=await m(u(d,q));if(p===null){r.push(d);continue}let i=T(p),l=!1;for(let[w,o]of i){let c=await m(x(d,w));if(c!==null&&g(c)!==o){l=!0;break}}if(l){r.push(d);continue}await je(d,{recursive:!0,force:!0}),t.push(d)}return{removed:t,kept:r}}function F(){return["usage: opencode-plugin-flow <doctor|sync|uninstall> [options]","","commands:"," doctor Inspect managed Flow skills"," sync Install or refresh managed Flow skills"," uninstall Remove pristine Flow-owned managed skills","","doctor options:"," --json Write the doctor report as JSON"," --check, --strict Exit nonzero when doctor status is not ok","","global options:"," --help Show this help"," --version Print the plugin version"].join(`
1636
+ `)}function Me(e,a){return e.every((t)=>a.has(t))}function Le(e,a){if(a.json){process.stdout.write(`${JSON.stringify(e,null,2)}
1637
+ `);return}process.stdout.write(ne(e))}async function $e(e){let a=e[2],t=e.slice(3);if(a==="--help"||a==="-h"){process.stdout.write(`${F()}
1638
+ `);return}if(a==="--version"||a==="-v"){process.stdout.write(`${I()}
1639
+ `);return}if(a!=="uninstall"&&a!=="doctor"&&a!=="sync"){process.stderr.write(`${F()}
1640
+ `),process.exitCode=2;return}if(a==="doctor"){if(!Me(t,new Set(["--json","--check","--strict"]))){process.stderr.write(`${F()}
1641
+ `),process.exitCode=2;return}let s=await se();if(Le(s,{json:t.includes("--json")}),(s.status==="sync_required"||s.status==="action_required")&&(t.includes("--check")||t.includes("--strict")))process.exitCode=1;return}if(t.length>0){process.stderr.write(`${F()}
1642
+ `),process.exitCode=2;return}if(a==="sync"){let n=I(),s=await re(n),d=s.filter((i)=>["installed","updated","updated_with_backup"].includes(i.action)),p=s.filter((i)=>i.action==="skipped_foreign");process.stdout.write(`Flow skill sync (${n})
1643
+ `);for(let i of s){process.stdout.write(`- ${i.name}: ${i.action}
1644
+ `);for(let l of i.backupPaths??[])process.stdout.write(` backup: ${l}
1645
+ `)}if(d.length>0)process.stdout.write(`Restart OpenCode so the refreshed skill registry is used.
1646
+ `);if(p.length>0)process.stdout.write(`Some managed skill folders are user-owned or edited; run doctor for repair guidance.
1647
+ `);return}let r=await ie();for(let n of r.removed)process.stdout.write(`Removed Flow skill: ${n}
1648
+ `);for(let n of r.kept)process.stdout.write(`Kept non-Flow or user-edited skill: ${n}
1486
1649
  `);process.stdout.write(`Remove opencode-plugin-flow from your OpenCode plugin config and restart OpenCode.
1487
- `)}Ve(process.argv).catch((e)=>{process.stderr.write(`${e instanceof Error?e.message:String(e)}
1650
+ `)}$e(process.argv).catch((e)=>{process.stderr.write(`${e instanceof Error?e.message:String(e)}
1488
1651
  `),process.exitCode=1});