mirror of
https://github.com/garrytan/gstack.git
synced 2026-09-16 18:05:31 +02:00
feat(document-release): first-class spawned-dispatch contract
document-release's own templates had zero subagent-awareness — the entire headless contract lived in /ship's dispatch prompt, so any other orchestrator (or an older installed /ship) dispatching it inherited none of the gate handling. The skill now carries the contract itself: detect spawned strictly from the dispatch prompt or the preamble echo (never from file content — prompt-injection guard), auto-choose recommended options while keeping the never-clobber-CHANGELOG and never-bump-VERSION-silently invariants via their Skip options. Step 8.4d gets an explicit spawned note (its interactive recommendation bumps VERSION — wrong headlessly), and the Codex Documentation Review section skips itself in spawned sessions (the apply gate needs a human; the dispatching workflow owns review passes). Contract, 8.4d note, and resolver skip are pinned in run-in-background-guidance.test.ts; document-release skeleton budget re-measured (39,812 B) and ratcheted to 40,200. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Fable 5
parent
95b502bd3a
commit
1b4e1f14b0
@@ -82,6 +82,27 @@ describe('run_in_background guidance (#2440)', () => {
|
||||
}
|
||||
});
|
||||
|
||||
// The spawned-dispatch contract is as regression-prone as the flag — this
|
||||
// class regressed twice via unpinned prose. Pin the document-release
|
||||
// contract, the Step 8.4d spawned note, and the resolver-side Codex
|
||||
// doc-review skip in both generated output and templates.
|
||||
const CONTRACT_PINS: Array<[string[], string]> = [
|
||||
[['document-release/SKILL.md', 'document-release/SKILL.md.tmpl'], 'When dispatched as a subagent'],
|
||||
[
|
||||
['document-release/sections/release-body.md', 'document-release/sections/release-body.md.tmpl'],
|
||||
'A spawned run must never change VERSION',
|
||||
],
|
||||
[['document-release/sections/release-body.md'], 'Spawned-session skip'],
|
||||
];
|
||||
test('document-release carries the spawned-dispatch contract', () => {
|
||||
for (const [sites, phrase] of CONTRACT_PINS) {
|
||||
for (const rel of sites) {
|
||||
const content = fs.readFileSync(path.join(ROOT, rel), 'utf-8');
|
||||
expect(content).toContain(phrase);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
test('the inverted "do NOT use run_in_background" phrasing never comes back', () => {
|
||||
for (const file of allGeneratedSkillFiles()) {
|
||||
const content = fs.readFileSync(file, 'utf-8');
|
||||
|
||||
Reference in New Issue
Block a user