mirror of
https://github.com/garrytan/gstack.git
synced 2026-09-24 22:00:50 +02:00
feat(model-overlays): add fable-5, opus-4-8, and sonnet-5 overlays + resolver mappings
model-overlays/ had no entry for the current Claude generation, so every session on a Claude 5 family or Opus 4.8 model fell through to the generic claude.md nudges. Adds the three overlays with resolver mappings and per-overlay tests; generated output for the default host is unchanged (overlays activate by detected model). Closes #2509. Contributed by @chrisquorum (PRs #2246, #2243, #2247). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Fable 5
parent
d7ce124092
commit
81659f9456
@@ -0,0 +1,55 @@
|
||||
/**
|
||||
* Fable 5 model overlay — gate-tier assertions on the family nudges.
|
||||
*
|
||||
* fable-5 inherits the claude base and adds Fable-family nudges: act when you
|
||||
* have enough context (avoid over-planning), ground progress claims in tool
|
||||
* results, assessment-vs-action boundaries, and delegate independent work.
|
||||
*/
|
||||
import { describe, test, expect } from 'bun:test';
|
||||
import * as fs from 'fs';
|
||||
import * as path from 'path';
|
||||
import type { TemplateContext } from '../scripts/resolvers/types';
|
||||
import { HOST_PATHS } from '../scripts/resolvers/types';
|
||||
import { generateModelOverlay } from '../scripts/resolvers/model-overlay';
|
||||
|
||||
function makeCtx(model: string): TemplateContext {
|
||||
return {
|
||||
skillName: 'test-skill',
|
||||
tmplPath: 'test.tmpl',
|
||||
host: 'claude',
|
||||
paths: HOST_PATHS.claude,
|
||||
preambleTier: 2,
|
||||
model,
|
||||
};
|
||||
}
|
||||
|
||||
const ROOT = path.resolve(__dirname, '..');
|
||||
|
||||
describe('Fable 5 overlay — family nudges', () => {
|
||||
test('raw fable-5.md contains the act-when-ready nudge', () => {
|
||||
const raw = fs.readFileSync(path.join(ROOT, 'model-overlays/fable-5.md'), 'utf-8');
|
||||
expect(raw).toContain('Act when you have enough to act');
|
||||
});
|
||||
|
||||
test('resolved overlay inherits from claude base (INHERIT:claude)', () => {
|
||||
const out = generateModelOverlay(makeCtx('fable-5'));
|
||||
expect(out).toContain('Todo-list discipline');
|
||||
expect(out).toContain('subordinate');
|
||||
});
|
||||
|
||||
test('resolved overlay carries the Fable nudges', () => {
|
||||
const out = generateModelOverlay(makeCtx('fable-5'));
|
||||
expect(out).toContain('Act when you have enough to act');
|
||||
expect(out).toContain('Ground progress claims in evidence');
|
||||
});
|
||||
|
||||
test('resolved overlay has no unresolved INHERIT directive', () => {
|
||||
const out = generateModelOverlay(makeCtx('fable-5'));
|
||||
expect(out).not.toContain('{{INHERIT:');
|
||||
});
|
||||
|
||||
test('claude overlay (base) does not carry the Fable nudge', () => {
|
||||
const out = generateModelOverlay(makeCtx('claude'));
|
||||
expect(out).not.toContain('Act when you have enough to act');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user