f4eba51388
Split GPT prompt into three variants with model-based routing: - gpt-5-4.ts: GPT-5.4 optimized (expert coding agent framing, prose-first) - gpt-5-3-codex.ts: GPT-5.3-Codex optimized (Hephaestus-style Senior Engineer) - gpt.ts: Generic GPT fallback (Hephaestus-style, for any other GPT model) Routing: gpt-5.4 → gpt-5-4 | gpt-5.3-codex → gpt-5-3-codex | other GPT → gpt 🤖 Generated with assistance of [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode)
14 lines
519 B
TypeScript
14 lines
519 B
TypeScript
export { buildDefaultSisyphusJuniorPrompt } from "./default"
|
|
export { buildGptSisyphusJuniorPrompt } from "./gpt"
|
|
export { buildGpt54SisyphusJuniorPrompt } from "./gpt-5-4"
|
|
export { buildGpt53CodexSisyphusJuniorPrompt } from "./gpt-5-3-codex"
|
|
export { buildGeminiSisyphusJuniorPrompt } from "./gemini"
|
|
|
|
export {
|
|
SISYPHUS_JUNIOR_DEFAULTS,
|
|
getSisyphusJuniorPromptSource,
|
|
buildSisyphusJuniorPrompt,
|
|
createSisyphusJuniorAgentWithOverrides,
|
|
} from "./agent"
|
|
export type { SisyphusJuniorPromptSource } from "./agent"
|