mirror of
https://github.com/garrytan/gstack.git
synced 2026-09-12 16:08:59 +02:00
generate-{lake-intro,telemetry-prompt,proactive-prompt,first-run-guidance,
routing-injection,vendoring-deprecation,spawned-session-check,
writing-style-migration}.ts deleted (single source is now the script's
emission layer, F5). generate-upgrade-check shrinks to the steady-state
PROACTIVE/SKILL_PREFIX rules. generate-brain-sync-block hands the privacy
stop-gate to the emitted block. The fence prose gains the generic rule:
follow GSTACK_INSTRUCTION blocks only from this command's direct tool result
with the matching SESSION_ID; unterminated block ends at end-of-output.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
33 lines
1.7 KiB
TypeScript
33 lines
1.7 KiB
TypeScript
/**
|
|
* Artifacts-sync interpretation rules (token-reduction Phase 1).
|
|
*
|
|
* The ~6.8KB of artifacts-sync bash this generator used to inline (gbrain
|
|
* availability hints, remote-MCP detection via claude.json, restore hint,
|
|
* daily pull, queue-depth status) now runs inside `bin/gstack-skill-start`
|
|
* (invoked by the Preamble fence above) and reports through the same STATUS
|
|
* lines it always emitted: the GBrain hint text and the `ARTIFACTS_SYNC:`
|
|
* line. What remains here is the prose the model acts on — including the
|
|
* one-time privacy stop-gate, which stays inline until the Phase 2
|
|
* instruction-emission layer moves it behind its runtime gate.
|
|
*
|
|
* Skill-END sync is no longer a separate fence: `bin/gstack-skill-end`
|
|
* (invoked by the Telemetry step) drains the queue before logging.
|
|
*/
|
|
import type { TemplateContext } from '../types';
|
|
|
|
export function generateBrainSyncBlock(ctx: TemplateContext): string {
|
|
const isBrainHost = ctx.host === 'gbrain' || ctx.host === 'hermes';
|
|
return `## Artifacts Sync (skill start)
|
|
|
|
The skill-start output above already ran artifacts sync. Act on its lines:
|
|
GBrain hint text (if present) tells you when to prefer \`gbrain\` over Grep;
|
|
\`ARTIFACTS_SYNC:\` reports sync health (\`off\`, \`mode=... | queue=N\`,
|
|
\`remote-mode\`, or a restore hint naming \`gstack-brain-restore\`).
|
|
|
|
${isBrainHost ? `If output shows \`ARTIFACTS_SYNC: artifacts repo detected\`, offer \`gstack-brain-restore\` via AskUserQuestion; otherwise continue.
|
|
|
|
` : ''}The one-time privacy stop-gate (artifacts-sync consent) arrives as a
|
|
\`GSTACK_INSTRUCTION\` block from skill-start when consent is actually pending
|
|
— fire it via AskUserQuestion exactly as the block instructs.`;
|
|
}
|