#!/usr/bin/env node /** * Forgen — Auto Compound Runner * * Detached process로 실행. 이전 세션의 transcript를 분석하여: * 1. 재사용 가능한 솔루션 추출 (compound --solution) * 2. 사용자 패턴을 USER.md에 축적 * * 호출: session-recovery hook 또는 spawn.ts에서 detached spawn * 인자: [cwd] [transcriptPath] [sessionId] */ import { type ExecFileOptions } from 'node:child_process'; export declare function execClaudeRetryAsync(args: string[], opts: ExecFileOptions): Promise;