Merge remote-tracking branch 'origin/master' into codex/project-instruction-files

# Conflicts:
#	docs/event-producer-consumer.md
#	docs/rfc/README.md
#	packages/core/agent-core/src/index.ts
#	packages/ui/acp-agent/src/index.ts
This commit is contained in:
Yichen Jiang
2026-07-06 10:14:47 +08:00
207 changed files with 2754 additions and 1290 deletions
@@ -36,7 +36,7 @@ async function harness(): Promise<{ ctx: Context; agent: Agent }> {
ctx = new Context()
await ctx.plugin(LlmService)
await ctx.plugin(SessionStore)
await ctx.plugin(SystemPrompt)
await ctx.plugin(SystemPrompt, { persona: 'Answer the user exactly and concisely.' })
await ctx.plugin(ToolRegistry)
await ctx.plugin(AgentRegistry)
await ctx.plugin(LocalFileSystem, { cwd: '/' })
@@ -48,10 +48,7 @@ async function harness(): Promise<{ ctx: Context; agent: Agent }> {
agentId: AgentId('project-instructions-e2e'),
sessionId: SessionId('project-instructions-e2e-session'),
meta: { cwd: workdir },
agentOptions: {
model: 'deepseek-v4-flash',
systemPrompt: 'Answer the user exactly and concisely.',
},
agentOptions: { model: 'deepseek-v4-flash' },
})
return { ctx, agent: handle.agent }
}