fix(03-03): fix type compatibility and cleanup unused imports

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Shirone
2026-01-27 17:01:17 +01:00
parent 927ae5e21c
commit 23d36c03de
2 changed files with 2 additions and 9 deletions

View File

@@ -83,7 +83,7 @@ export interface AgentExecutionOptions {
sdkOptions?: {
maxTurns?: number;
allowedTools?: string[];
systemPrompt?: string;
systemPrompt?: string | { type: 'preset'; preset: 'claude_code'; append?: string };
settingSources?: Array<'user' | 'project' | 'local'>;
};
/** Provider instance to use */

View File

@@ -83,14 +83,7 @@ import {
getPhaseModelWithOverrides,
} from '../lib/settings-helpers.js';
import { getNotificationService } from './notification-service.js';
import {
parseTasksFromSpec,
detectTaskStartMarker,
detectTaskCompleteMarker,
detectPhaseCompleteMarker,
detectSpecFallback,
extractSummary,
} from './spec-parser.js';
import { extractSummary } from './spec-parser.js';
import { AgentExecutor } from './agent-executor.js';
const execAsync = promisify(exec);