2026-02-03 14:12:22 +09:00
|
|
|
export { buildDefaultSisyphusJuniorPrompt } from "./default"
|
|
|
|
|
export { buildGptSisyphusJuniorPrompt } from "./gpt"
|
2026-03-06 14:50:01 +09:00
|
|
|
export { buildGpt54SisyphusJuniorPrompt } from "./gpt-5-4"
|
|
|
|
|
export { buildGpt53CodexSisyphusJuniorPrompt } from "./gpt-5-3-codex"
|
2026-02-22 15:11:35 +09:00
|
|
|
export { buildGeminiSisyphusJuniorPrompt } from "./gemini"
|
2026-02-03 14:12:22 +09:00
|
|
|
|
2026-02-08 13:57:26 +09:00
|
|
|
export {
|
|
|
|
|
SISYPHUS_JUNIOR_DEFAULTS,
|
|
|
|
|
getSisyphusJuniorPromptSource,
|
|
|
|
|
buildSisyphusJuniorPrompt,
|
|
|
|
|
createSisyphusJuniorAgentWithOverrides,
|
|
|
|
|
} from "./agent"
|
|
|
|
|
export type { SisyphusJuniorPromptSource } from "./agent"
|