From 136135bc88c3436a749d9c5a576d348b13447757 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Tue, 6 Jan 2026 15:14:15 +0900 Subject: [PATCH] refactor(features): update init-deep template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update initialization template with latest configuration. πŸ€– GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode) --- .../builtin-commands/templates/init-deep.ts | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/features/builtin-commands/templates/init-deep.ts b/src/features/builtin-commands/templates/init-deep.ts index beb1be85..05f2dd11 100644 --- a/src/features/builtin-commands/templates/init-deep.ts +++ b/src/features/builtin-commands/templates/init-deep.ts @@ -45,12 +45,12 @@ Don't waitβ€”these run async while main session works. \`\`\` // Fire all at once, collect results later -background_task(agent="explore", prompt="Project structure: PREDICT standard patterns for detected language β†’ REPORT deviations only") -background_task(agent="explore", prompt="Entry points: FIND main files β†’ REPORT non-standard organization") -background_task(agent="explore", prompt="Conventions: FIND config files (.eslintrc, pyproject.toml, .editorconfig) β†’ REPORT project-specific rules") -background_task(agent="explore", prompt="Anti-patterns: FIND 'DO NOT', 'NEVER', 'ALWAYS', 'DEPRECATED' comments β†’ LIST forbidden patterns") -background_task(agent="explore", prompt="Build/CI: FIND .github/workflows, Makefile β†’ REPORT non-standard patterns") -background_task(agent="explore", prompt="Test patterns: FIND test configs, test structure β†’ REPORT unique conventions") +sisyphus_task(agent="explore", prompt="Project structure: PREDICT standard patterns for detected language β†’ REPORT deviations only") +sisyphus_task(agent="explore", prompt="Entry points: FIND main files β†’ REPORT non-standard organization") +sisyphus_task(agent="explore", prompt="Conventions: FIND config files (.eslintrc, pyproject.toml, .editorconfig) β†’ REPORT project-specific rules") +sisyphus_task(agent="explore", prompt="Anti-patterns: FIND 'DO NOT', 'NEVER', 'ALWAYS', 'DEPRECATED' comments β†’ LIST forbidden patterns") +sisyphus_task(agent="explore", prompt="Build/CI: FIND .github/workflows, Makefile β†’ REPORT non-standard patterns") +sisyphus_task(agent="explore", prompt="Test patterns: FIND test configs, test structure β†’ REPORT unique conventions") \`\`\` @@ -76,9 +76,9 @@ max_depth=$(find . -type d -not -path '*/node_modules/*' -not -path '*/.git/*' | Example spawning: \`\`\` // 500 files, 50k lines, depth 6, 15 large files β†’ spawn 5+5+2+1 = 13 additional agents -background_task(agent="explore", prompt="Large file analysis: FIND files >500 lines, REPORT complexity hotspots") -background_task(agent="explore", prompt="Deep modules at depth 4+: FIND hidden patterns, internal conventions") -background_task(agent="explore", prompt="Cross-cutting concerns: FIND shared utilities across directories") +sisyphus_task(agent="explore", prompt="Large file analysis: FIND files >500 lines, REPORT complexity hotspots") +sisyphus_task(agent="explore", prompt="Deep modules at depth 4+: FIND hidden patterns, internal conventions") +sisyphus_task(agent="explore", prompt="Cross-cutting concerns: FIND shared utilities across directories") // ... more based on calculation \`\`\` @@ -240,7 +240,7 @@ Launch document-writer agents for each location: \`\`\` for loc in AGENTS_LOCATIONS (except root): - background_task(agent="document-writer", prompt=\\\` + sisyphus_task(agent="document-writer", prompt=\\\` Generate AGENTS.md for: \${loc.path} - Reason: \${loc.reason} - 30-80 lines max