Commit Graph

3644 Commits

Author SHA1 Message Date
huanghuoguoguo c859fc37bb refactor(agent-runner): remove protocol_version from various components and update related documentation 2026-06-13 00:31:14 +08:00
huanghuoguoguo 818f5926cd docs(agent-runner): sync EBA and harness resource docs 2026-06-13 00:31:14 +08:00
huanghuoguoguo e0b573acf7 docs(agent-runner): update external harness security gate 2026-06-13 00:31:14 +08:00
huanghuoguoguo 8c291fc974 test(agent): harden runner persistence coverage 2026-06-13 00:31:14 +08:00
huanghuoguoguo 173dc58272 feat(agent-runner): expose skill resources through host context 2026-06-13 00:30:33 +08:00
huanghuoguoguo 1ea61adde6 test: cover host skill tool scoping 2026-06-13 00:30:33 +08:00
huanghuoguoguo b0e576dbb8 refactor(agent-runner): use protocol version field 2026-06-13 00:30:33 +08:00
huanghuoguoguo b793409bed refactor(provider): formalize tool lookup contract 2026-06-13 00:30:33 +08:00
huanghuoguoguo 5a66ce2340 fix(agent-runner): clean plugin review issues 2026-06-13 00:30:33 +08:00
huanghuoguoguo dbefd3364e refactor agent runner orchestration boundaries 2026-06-13 00:29:27 +08:00
huanghuoguoguo 75cf36b0ae docs: reconcile agent runner protocol status 2026-06-13 00:29:27 +08:00
huanghuoguoguo e916c2e463 fix(agent-runner): align plugin runner runtime boundaries 2026-06-13 00:29:27 +08:00
huanghuoguoguo c0f5f30f57 feat(agent-runner): add bounded native tool artifacts 2026-06-13 00:27:57 +08:00
huanghuoguoguo bd690a79f0 feat(agent-runner): expose effective prompt and transcript history 2026-06-13 00:27:57 +08:00
huanghuoguoguo 3dc579feb3 refactor(agent-runner): make agent binding and auth snapshot explicit 2026-06-13 00:27:57 +08:00
huanghuoguoguo 86d5148534 refactor(agent-runner): simplify event-first entry path 2026-06-13 00:27:57 +08:00
huanghuoguoguo efdc3678b1 refactor(agent-runner): align config with agent semantics 2026-06-13 00:27:10 +08:00
huanghuoguoguo c351a3daed refactor(agent-runner): remove host context windowing 2026-06-13 00:27:10 +08:00
huanghuoguoguo bfa5db767c feat(agent-runner): normalize binding config boundaries 2026-06-13 00:27:10 +08:00
huanghuoguoguo 9caef840c7 fix: enforce agent run API permissions 2026-06-13 00:27:10 +08:00
huanghuoguoguo 0bc68f3d3a fix(agent-runner): authorize external runner tools 2026-06-13 00:27:10 +08:00
huanghuoguoguo 996a5f1c95 docs(agent-runner): document external MCP bridge 2026-06-13 00:27:10 +08:00
huanghuoguoguo b27e9c80cb docs(agent-runner): align runner protocol boundaries 2026-06-13 00:27:10 +08:00
huanghuoguoguo 119fd9f482 docs(agent-runner): record codex runner smoke 2026-06-13 00:27:10 +08:00
huanghuoguoguo a2b38f5bf2 fix(agent-runner): stabilize event context and streams 2026-06-13 00:27:10 +08:00
huanghuoguoguo 9bdebcdc5a docs(agent-runner): update pluginization design status 2026-06-13 00:27:09 +08:00
huanghuoguoguo 2fd2c6aadc refactor(agent-runner): tighten protocol v1 runtime boundaries 2026-06-13 00:27:09 +08:00
huanghuoguoguo f9e07df539 feat(agent-runner): align protocol adapter terminology 2026-06-13 00:27:09 +08:00
huanghuoguoguo d8d811e307 feat(agent-runner): route pipeline runs through event-first flow
- run_from_query() now delegates to run(event, binding) instead of maintaining
  a separate legacy execution path
- Pipeline Query is converted to AgentEventEnvelope via PipelineCompatAdapter
- Pipeline config is converted to AgentBinding with StatePolicy
- bound_plugins authorization preserved from Pipeline
- Legacy compatibility fields preserved:
  - query_id → context.runtime.query_id → session registry
  - prompt → context.compatibility.extra.prompt (not top-level)
  - params → context.compatibility.extra.params (with proper filtering)
  - max-round → bootstrap.messages and compatibility.legacy_messages
- Pipeline path gains event-first host capabilities:
  - EventLog and Transcript writing
  - ArtifactStore registration
  - PersistentStateStore for state.updated
- Removed legacy handlers:
  - _handle_artifact_created_query() (replaced by _handle_artifact_created)
  - _handle_state_updated() (replaced by _handle_state_updated_event)

This change unifies the execution path while preserving backward compatibility
for Pipeline-based runners. EventGateway is not implemented in this branch;
only the event-first entry point is reserved.
2026-06-13 00:27:09 +08:00
huanghuoguoguo f23f343edc feat(agent-runner): add persistent state APIs 2026-06-13 00:27:09 +08:00
huanghuoguoguo a7d90d196f feat(agent-runner): scope event-first state by binding 2026-06-13 00:27:09 +08:00
huanghuoguoguo a7a359fb41 feat(agent-runner): persist created artifacts 2026-06-13 00:27:09 +08:00
huanghuoguoguo e2712a8993 feat(agent-runner): add artifact store pull APIs 2026-06-13 00:27:09 +08:00
huanghuoguoguo 085a767f97 feat(agent-runner): add event-first context facts and pull APIs
Add EventLog and Transcript persistence entities for storing auditable
event facts and conversation history projection. Implement event-first
AgentRunContext builder that produces Protocol v1 compliant context
payloads with required fields: event, delivery, context (ContextAccess).

Key changes:
- EventLog ORM: auditable event records with indexes
- Transcript ORM: conversation history projection with composite indexes
- AgentRunContextBuilder: Protocol v1 payload with delivery, context, bootstrap
- EventLogStore/TranscriptStore: async stores for fact sources
- Host action handlers: HISTORY_PAGE, HISTORY_SEARCH, EVENT_GET, EVENT_PAGE
- Context validation: build_context output validates via SDK AgentRunContext
- Alembic migration for event_log and transcript tables
- Alembic env.py imports all ORM models for autogenerate discovery

Legacy compatibility: max-round messages go into bootstrap.messages and
compatibility.legacy_messages, not top-level messages field.
2026-06-13 00:27:09 +08:00
huanghuoguoguo 8b0f51641a docs(agent-runner): split protocol and context design 2026-06-13 00:27:09 +08:00
huanghuoguoguo 1b35ca67c5 fix(agent-runner): package context for plugin execution 2026-06-13 00:27:09 +08:00
huanghuoguoguo 4c98889566 feat: make agent runner config schema driven 2026-06-13 00:27:09 +08:00
huanghuoguoguo 7948291a08 chore(pipeline): clarify preferred default runner 2026-06-13 00:27:09 +08:00
huanghuoguoguo 07dcc0ec03 chore(agent): remove v1 wording from runner internals 2026-06-13 00:27:09 +08:00
huanghuoguoguo e5b511de8f feat(agent): reserve stable runner event names 2026-06-13 00:26:44 +08:00
huanghuoguoguo 6f962c7028 docs: add phase1 qa report 2026-06-13 00:26:44 +08:00
huanghuoguoguo 195d1a9c8e feat(agent-runner): enrich plugin runner host context 2026-06-13 00:26:43 +08:00
huanghuoguoguo d419ee4139 fix: log agent runner best-effort failures 2026-06-13 00:26:43 +08:00
huanghuoguoguo 0cdecbbf36 test: address agent runner review comments 2026-06-13 00:26:43 +08:00
huanghuoguoguo 563131ad52 fix: stabilize dynamic forms and mcp testing 2026-06-13 00:26:43 +08:00
huanghuoguoguo 33f4c0e028 refactor(modelmgr): simplify model sync logic and remove timeout configuration 2026-06-13 00:26:43 +08:00
huanghuoguoguo 565a6df77a fix(rag): align knowledge engine plugin actions 2026-06-13 00:26:43 +08:00
huanghuoguoguo 76582a578e feat: support dynamic agent runner defaults 2026-06-13 00:26:43 +08:00
huanghuoguoguo 056c63cd64 feat(toolmgr): add get_tool_by_name for unified tool lookup
Add unified tool lookup method that searches both plugin and MCP loaders.
Also add _get_tool method to MCPLoader for consistency with PluginToolLoader.
2026-06-13 00:26:43 +08:00
huanghuoguoguo 32161e2bfd docs: update PROGRESS.md - rerank support completed 2026-06-13 00:26:43 +08:00