5.8 KiB
5.8 KiB
[2026-05-20T15:04:52Z] Task 1 baseline
- Total tests: 7315
- Pass: 7312, Fail: 2, Skip: 1
- Build exit code: 0 (dist/ size: 13M, 1456 files)
- Typecheck exit code: 0
- Packages: 15 package.json files under packages/, 3 private (ast-grep-mcp, rules-core, web)
- Anomalies observed: 2 pre-existing test failures in
src/features/opencode-skill-loader/skill-content.test.ts— ambiguous short name resolution returns 2 resolved skills instead of 1 when "debugging" + "playwright" are queried together. This is a REAL baseline failure; do not fix as part of this refactor plan unless explicitly directed.
[2026-05-20T15:12:12Z] Task 2 pre-flight
src/shared/deep-merge.ts: pure, zero imports.src/shared/snake-case.ts: imports./deep-mergeonly (moved together) — pure after extraction.src/shared/record-type-guard.ts: pure, zero imports.src/shared/extract-semver.ts: pure, zero imports.src/shared/frontmatter.ts: importsjs-yamlonly.src/shared/file-utils.ts: importsfsonly.src/shared/contains-path.ts: importsfsandpathonly.src/shared/port-utils.ts: importsnode:netonly.src/shared/tool-name.ts: pure, zero imports.src/shared/replace-tool-args.ts: pure, zero imports.src/features/boulder-state/format-duration.ts: pure, zero imports.src/shared/jsonc-parser.ts: coupled to plugin basenames; decoupled via parameterizeddetectPluginConfigFile(dir, options).src/shared/write-file-atomically.ts: depends on omo-specific./tolerant-fsync; extraction deferred by scope decision (kept in-place).
[2026-05-21T00:00:00Z] Task 7 (worktree)
- Pre-flight import audit (
packages/ast-grep-mcp/src/*.ts) shows onlymcp.ts,runner.ts, andcli-binary-path-resolution.tstouch adapter/runtime-specific concerns. - Candidate extracted files are pure from MCP perspective:
types.ts: type-only, currently coupled only byCliLanguagesource (CLI_LANGUAGES).language-support.ts: CLI language enum + numeric defaults; no MCP/Bun coupling.pattern-hints.ts: pure heuristics; no runtime coupling (intended identical behavior for pi/codex parity).result-formatter.ts: pure string formatter overSgResult.sg-compact-json-output.ts: pure JSON parsing/truncation logic; depends only on constants/types.
runner.tssplit requirement confirmed:- Core should own
buildSgArgs()+runSg()orchestration and error mapping. - OMO-specific binary resolution stays adapter-side (
getAstGrepPathincli-binary-path-resolution.ts). - OMO-specific process spawn stays adapter-side (
bun-spawn-shim.ts), injected via core deps (spawnProcess).
- Core should own
[2026-05-21T00:00:00Z] Task 8 (worktree)
- Created
packages/comment-checker-core/withpackage.json,tsconfig.json,index.d.ts, andsrc/barrel. - Moved pure apply-patch parser + metadata parsing into
packages/comment-checker-core/src/apply-patch-edits.ts. - Moved shared comment-checker types into
packages/comment-checker-core/src/types.ts. - Added injectable pure runner in
packages/comment-checker-core/src/runner.ts:resolveCommentCheckerBinary()runCommentChecker()with injectedspawn,existsSync, and timer functions.
- Kept OMO-specific adapter pieces in place (
hook.ts,pending-calls.ts,initialization-gate.ts,downloader.ts). - Added per-file shims at original locations:
src/hooks/comment-checker/apply-patch-edits.tssrc/hooks/comment-checker/types.ts
- Updated
src/hooks/comment-checker/cli.tsto keep Bun spawn glue locally while delegating pure runner + resolver to core package. - Updated
src/hooks/comment-checker/hook.tsto importextractApplyPatchEditsfrom@oh-my-opencode/comment-checker-core. - Updated root workspace wiring (
package.jsonworkspaces, devDependency, typecheck:packages) and ranbun install. - Verification:
bun run typecheckexit 0bun test7312/1/2/7315 (baseline-matching drift)bun run buildexit 0
[2026-05-21T00:00:00Z] Task 3 retry (worktree)
- Extracted model resolution pipeline surface into
packages/model-core/with moved sources/tests and package scaffold (package.json,tsconfig.json, barrelsrc/index.ts). - Added ProviderCache DI seam in model-core:
model-resolution-pipeline.tsacceptsproviderCache.model-error-classifier.tsexposes cache-injected provider selector.
- Kept OMO runtime cache implementation in
src/shared/connected-providers-cache.tsand wired injections through shared shims. - Recreated per-file
src/sharedshims with explicit symbol re-exports (noexport *in shims). - Moved
src/shared/model-capabilities/subtree into model-core and kept shared adapter entry viasrc/shared/model-capabilities/index.tswrapper. - Verification pass:
bun run typecheck=0,bun test=7312/1/2/7315 baseline,bun run build=0.
[2026-05-20T18:37:22Z] W2-QA gate
- Verdict: REJECT. T6
lsp-coredeferral accepted and not considered. - Evidence written under
.omo/evidence/w2-qa-*.txtfor all 10 requested checks. - Blocking failures:
- Test delta drifted from baseline:
bun testproduced 7311 pass / 1 skip / 3 fail / 1 error / 7315 tests; extra failure issrc/shared/tmux/runner.test.ts:202after timeout atsrc/shared/tmux/runner.test.ts:199. /tmp/w2-qa-equiv.tscould not resolve@oh-my-opencode/utilsfrom/private/tmp/w2-qa-equiv.ts:1.- Dependency DAG violation:
packages/agents-md-core/package.json:19depends on@oh-my-opencode/rules-engine, a cross-Wave-2 internal dependency beyond utils. packages/rules-core/still exists, although onlynode_modules/remains inside.
- Test delta drifted from baseline:
- Passing blocking checks: package symlinks/LSP references, OpenCode coupling sweep, build exit 0, and
dist/remained 13M. - Informational coverage concerns:
ast-grep-core,comment-checker-core,boulder-state, andagents-md-corehave zero co-located package tests;boulder-statehas no critical-path test files.