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
New REES local analyzer that surfaces TODO/FIXME/HACK/XXX markers newly added in the diff, with the marker text and file:line — so a reviewer sees the PR is shipping known-incomplete work. Pure compute over added lines, no network.
Create review-enrichment/src/analyzers/todo-marker.ts: match a comment-anchored marker regex on added lines only (not existing markers), truncate note text, cap with maxFindings
Register a local descriptor (category 'quality', cost 'local', requires ['files']) in review-enrichment/src/analyzers/registry.ts with inline render()
Add review-enrichment/test/todo-marker.test.ts covering each tag, note truncation, added-only scoping, and the cap
New REES local analyzer that surfaces TODO/FIXME/HACK/XXX markers newly added in the diff, with the marker text and file:line — so a reviewer sees the PR is shipping known-incomplete work. Pure compute over added lines, no network.
Deliverables
TodoMarkerFinding({ file, line, tag: 'TODO'|'FIXME'|'HACK'|'XXX', note?: string }) +todoMarker?key to review-enrichment/src/types.tsReferences
review-enrichment/src/analyzers/actions-pin.ts (added-line scan template)review-enrichment/src/analyzers/registry.ts:158-175 (local descriptor template)review-enrichment/src/types.ts:289-311 (BriefFindings)Part of #1499.
size: XS · gittensor:bug