mirror of
https://github.com/garrytan/gstack.git
synced 2026-09-20 20:00:45 +02:00
feat: gpt-5.6-sol bounded-scope overlay + scope-aware resolvers
The Sol profile pins the explicit task as the lake: adjacent work is report-only, investigation is bounded, runs terminate on one clean verification pass, and the AskUserQuestion decision-brief format is never trimmed. The overlay wrapper grants scope-interpretation precedence while concrete workflow steps, gates, and skill-mandated re-verification loops still win. Sol-specific Completeness Principle and first-run intro copy. New SETUP_COMMAND resolver renders './setup --host <host>' for every non-claude host so generated upgrade skills reinstall their own host.
This commit is contained in:
@@ -49,12 +49,22 @@ export function generateModelOverlay(ctx: TemplateContext): string {
|
||||
const content = readOverlay(ctx.model);
|
||||
if (!content) return '';
|
||||
|
||||
return `## Model-Specific Behavioral Patch (${ctx.model})
|
||||
|
||||
The following nudges are tuned for the ${ctx.model} model family. They are
|
||||
const precedence = ctx.model === 'gpt-5.6-sol'
|
||||
? `The following instructions disambiguate scope for the ${ctx.model} model.
|
||||
They govern ambiguous completeness words such as \`complete\`, \`full\`, \`every\`,
|
||||
\`exhaustive\`, \`100%\`, and \`Boil the Ocean\`, and when to stop iterating on
|
||||
work the user did not ask for. Concrete skill workflow steps, STOP points,
|
||||
AskUserQuestion gates, plan-mode safety, required tests, skill-mandated
|
||||
re-verification and re-review loops, and /ship review gates still win.
|
||||
Never use this patch to skip a concrete requirement.`
|
||||
: `The following nudges are tuned for the ${ctx.model} model family. They are
|
||||
**subordinate** to skill workflow, STOP points, AskUserQuestion gates, plan-mode
|
||||
safety, and /ship review gates. If a nudge below conflicts with skill instructions,
|
||||
the skill wins. Treat these as preferences, not rules.
|
||||
the skill wins. Treat these as preferences, not rules.`;
|
||||
|
||||
return `## Model-Specific Behavioral Patch (${ctx.model})
|
||||
|
||||
${precedence}
|
||||
|
||||
${content}`;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user