merge: integrate test-fail-ownership into test-coverage-catalog

Combines two complementary test infrastructure features:
- Coverage audit (proactive: "what's untested?") from test-coverage-catalog
- Failure triage (reactive: "whose bug is this?") from test-fail-ownership

Resolved 3 conflicts: CHANGELOG.md (merged entries), gen-skill-docs.ts
RESOLVERS (kept all 4 entries), touchfiles.ts (merged both dependency sets).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Garry Tan
2026-03-21 09:28:35 -07:00
42 changed files with 944 additions and 14 deletions
+2 -2
View File
@@ -691,11 +691,11 @@ describe('Codex generation (--host codex)', () => {
test('Codex review step stripped from Codex-host ship and review', () => {
const shipContent = fs.readFileSync(path.join(AGENTS_DIR, 'gstack-ship', 'SKILL.md'), 'utf-8');
expect(shipContent).not.toContain('codex review --base');
expect(shipContent).not.toContain('Investigate and fix');
expect(shipContent).not.toContain('CODEX_REVIEWS');
const reviewContent = fs.readFileSync(path.join(AGENTS_DIR, 'gstack-review', 'SKILL.md'), 'utf-8');
expect(reviewContent).not.toContain('codex review --base');
expect(reviewContent).not.toContain('Investigate and fix');
expect(reviewContent).not.toContain('CODEX_REVIEWS');
});
test('--host codex --dry-run freshness', () => {