Block a user
shahondin1624
pushed to refactor/issue-201-json-block-re at llm-multiverse/llm-multiverse
2026-03-11 11:30:01 +01:00
shahondin1624
created branch refactor/issue-201-json-block-re in llm-multiverse/llm-multiverse
2026-03-11 11:30:01 +01:00
Refactor: extract _format_memory and result builders to shared utils module
Implemented in PR #213 (merged).
Created agent_utils.py with shared helpers: format_memory, build_success_result, build_partial_result, build_failed_result, determine_source, and…
shahondin1624
deleted branch refactor/issue-192-agent-utils from llm-multiverse/llm-multiverse
2026-03-11 11:27:51 +01:00
Refactor: extract shared agent helpers to agent_utils (#192)
Refactor: extract _format_memory and result builders to shared utils module
Refactor: extract shared agent helpers to agent_utils (#192)
shahondin1624
created branch refactor/issue-192-agent-utils in llm-multiverse/llm-multiverse
2026-03-11 11:27:38 +01:00
shahondin1624
pushed to refactor/issue-192-agent-utils at llm-multiverse/llm-multiverse
2026-03-11 11:27:38 +01:00
Tech debt: deduplicate agent type name strings across manifest and config
Partially resolved by #200 (PR #212): all Python-side agent type mappings are now consolidated into agent_types.py. The Rust/TOML manifest side still uses hardcoded strings — leaving open for…
Refactor: consolidate duplicated _AGENT_TYPE_NAMES mappings into shared module
Implemented in PR #212 (merged).
Created agent_types.py shared module with three canonical dicts (AGENT_TYPE_NAMES, AGENT_TYPE_SHORT_NAMES, AGENT_TYPE_FROM_NAME). All 4 consumer files now…
shahondin1624
deleted branch refactor/issue-200-agent-type-constants from llm-multiverse/llm-multiverse
2026-03-11 11:18:12 +01:00
Refactor: consolidate duplicated _AGENT_TYPE_NAMES mappings into shared module
Refactor: consolidate agent type mappings (#200)
Refactor: consolidate agent type mappings (#200)
shahondin1624
created branch refactor/issue-200-agent-type-constants in llm-multiverse/llm-multiverse
2026-03-11 11:17:57 +01:00
shahondin1624
pushed to refactor/issue-200-agent-type-constants at llm-multiverse/llm-multiverse
2026-03-11 11:17:57 +01:00
Refactor: add audit logging to Tool Broker service
Fixed in PR #211 (merged).
- Added
AuditServiceClienttoToolBrokerServiceImplwithwith_audit_client()builder - Audit logging at 4 points: ExecuteTool deny, ExecuteTool allow, tool…