mirror of
https://github.com/garrytan/gstack.git
synced 2026-09-15 01:15:29 +02:00
fix: repair frontier eval budgets and workflow instructions
Preserve frontier models and quality thresholds while fixing truncated judge output, ordered section expansion, consent checks, QA scoring, and ship audit gates. Add regression coverage and refresh generated docs. Co-Authored-By: OpenAI Codex <noreply@openai.com>
This commit is contained in:
co-authored by
OpenAI Codex
parent
0cbccc1c6c
commit
a9f9ec5f08
@@ -51,6 +51,15 @@ describe('plan-ceo-review carve — static ordering', () => {
|
||||
expect(stop).toBeGreaterThan(step0); // STOP fires only after Step 0
|
||||
});
|
||||
|
||||
test('mode selection precedes mode-specific analysis after approach approval', () => {
|
||||
const approach = at('### 0C-bis.');
|
||||
const mode = at('### 0F. Mode Selection');
|
||||
const analysis = at('### 0D. Mode-Specific Analysis');
|
||||
expect(approach).toBeGreaterThan(-1);
|
||||
expect(mode).toBeGreaterThan(approach);
|
||||
expect(analysis).toBeGreaterThan(mode);
|
||||
});
|
||||
|
||||
test('the heavy review body (Sections 1-11) is NOT in the skeleton', () => {
|
||||
expect(skeleton).not.toContain('### Section 1: Architecture Review');
|
||||
expect(skeleton).not.toContain('### Section 11:');
|
||||
|
||||
Reference in New Issue
Block a user