refactor(hooks): rename sisyphus-orchestrator to atlas

- Rename SisyphusOrchestratorHookOptions → AtlasHookOptions
- Rename createSisyphusOrchestratorHook → createAtlasHook
- Update hook name in schema: sisyphus-orchestrator → atlas
- Update all documentation references
- Rename image: orchestrator-sisyphus.png → orchestrator-atlas.png
This commit is contained in:
justsisyphus
2026-01-20 16:52:20 +09:00
parent d6d60924f7
commit 458c9ae21b
13 changed files with 52 additions and 316 deletions
+3 -3
View File
@@ -407,7 +407,7 @@ interface SessionState {
const CONTINUATION_COOLDOWN_MS = 5000
export interface SisyphusOrchestratorHookOptions {
export interface AtlasHookOptions {
directory: string
backgroundManager?: BackgroundManager
}
@@ -433,9 +433,9 @@ function isAbortError(error: unknown): boolean {
return false
}
export function createSisyphusOrchestratorHook(
export function createAtlasHook(
ctx: PluginInput,
options?: SisyphusOrchestratorHookOptions
options?: AtlasHookOptions
) {
const backgroundManager = options?.backgroundManager
const sessions = new Map<string, SessionState>()