Merge remote-tracking branch 'origin/dev' into fix/gpt-apply-patch-rebased

This commit is contained in:
YeonGyu-Kim
2026-04-09 11:06:36 +09:00
214 changed files with 8473 additions and 621 deletions
+7 -2
View File
@@ -7,7 +7,7 @@ import type {
AvailableSkill,
AvailableCategory,
} from "../dynamic-agent-prompt-builder";
import { categorizeTools } from "../dynamic-agent-prompt-builder";
import { categorizeTools, buildAgentIdentitySection } from "../dynamic-agent-prompt-builder";
import { buildHephaestusPrompt as buildGptPrompt } from "./gpt";
import { buildHephaestusPrompt as buildGpt53CodexPrompt } from "./gpt-5-3-codex";
@@ -87,7 +87,12 @@ function buildDynamicHephaestusPrompt(ctx?: HephaestusContext): string {
break;
}
return basePrompt;
const agentIdentity = buildAgentIdentitySection(
"Hephaestus",
"Autonomous deep worker for software engineering from OhMyOpenCode",
);
return `${agentIdentity}\n${basePrompt}`;
}
export function createHephaestusAgent(