You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(miner): close two blind spots in the DEPLOYMENT.md docs-accuracy audit
Two real false positives, both currently red on main:
- The audit only scanned packages/gittensory-miner/lib and bin for env
var reads, missing packages/gittensory-engine/src/miner/ (a real
dependency the miner uses for coding-agent driver construction).
MINER_CODING_AGENT_CLAUDE_MODEL/CODEX_MODEL/TIMEOUT_MS are genuinely
read there (driver-factory.ts) but were flagged as undocumented-in-code.
- extractFilePathClaims recorded a markdown link's full target verbatim,
including any #anchor fragment, then checked that string against
existsSync -- so "README.md#coding-agent-driver-configuration" was
checked as a literal (nonexistent) filename instead of "README.md"
with a heading fragment.
Both were introduced by #5423/#5424 documenting real, working miner
config but tripping the audit's own scan gaps, not actual DEPLOYMENT.md
drift. Added a regression test for each, verified to fail on the prior
code and pass on the fix.
0 commit comments