huanghuoguoguo
5831198f38
refactor(agent-runner): remove protocol_version from various components and update related documentation
2026-06-13 17:46:31 +08:00
huanghuoguoguo
058721cca3
feat(agent-runner): expose effective prompt and transcript history
2026-06-13 17:45:53 +08:00
huanghuoguoguo
dc4cf5711e
refactor(agent-runner): simplify event-first entry path
2026-06-13 17:45:53 +08:00
huanghuoguoguo
819a2843e7
refactor(agent-runner): tighten protocol v1 runtime boundaries
2026-06-13 17:44:44 +08:00
huanghuoguoguo
96fa9e1eeb
feat(agent-runner): align protocol adapter terminology
2026-06-13 17:44:44 +08:00
huanghuoguoguo
a31f910f10
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 17:44:44 +08:00
huanghuoguoguo
c97ea27d42
chore(agent): remove v1 wording from runner internals
2026-06-13 17:42:59 +08:00
huanghuoguoguo
752ac6e9d2
feat(agent-runner): enrich plugin runner host context
2026-06-13 17:42:59 +08:00
huanghuoguoguo
6ef40fbd68
perf(agent-runner): improve session registry and orchestrator efficiency
...
- Add pre-computed _authorized_ids (frozenset) at session registration for O(1) lookup
- Refactor is_resource_allowed() from linear search to set membership check
- Add thread-safe locking to get_session_registry() singleton
- Cache _session_registry and _state_store references in orchestrator __init__
- Add asyncio.gather() for parallel resource building in AgentResourceBuilder
- Create shared test fixtures in tests/unit_tests/agent/conftest.py
- Update test files to import from shared conftest.py
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com >
2026-06-13 17:41:37 +08:00