Files
oh-my-opencode/dist/agents/sisyphus/gemini.d.ts
T
2026-03-14 04:56:50 +00:00

21 lines
973 B
TypeScript

/**
* Gemini-specific overlay sections for Sisyphus prompt.
*
* Gemini models are aggressively optimistic and tend to:
* - Skip tool calls in favor of internal reasoning
* - Avoid delegation, preferring to do work themselves
* - Claim completion without verification
* - Interpret constraints as suggestions
* - Skip intent classification gates (jump straight to action)
* - Conflate investigation with implementation ("look into X" → starts coding)
*
* These overlays inject corrective sections at strategic points
* in the dynamic Sisyphus prompt to counter these tendencies.
*/
export declare function buildGeminiToolMandate(): string;
export declare function buildGeminiToolGuide(): string;
export declare function buildGeminiToolCallExamples(): string;
export declare function buildGeminiDelegationOverride(): string;
export declare function buildGeminiVerificationOverride(): string;
export declare function buildGeminiIntentGateEnforcement(): string;