shahondin1624
  • Germay
  • Joined on 2026-01-30
bdfb0978bc refactor: deduplicate JSON_BLOCK_RE regex across parser and decomposer (issue #201)
shahondin1624 commented on issue llm-multiverse/llm-multiverse#192 2026-03-11 11:27:55 +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 pushed to main at llm-multiverse/llm-multiverse 2026-03-11 11:27:51 +01:00
79db20a5d8 Merge pull request 'Refactor: extract shared agent helpers to agent_utils (#192)' (#213) from refactor/issue-192-agent-utils into main
cfa76a32b9 refactor: extract shared agent helpers to agent_utils module (issue #192)
Compare 2 commits »
shahondin1624 deleted branch refactor/issue-192-agent-utils from llm-multiverse/llm-multiverse 2026-03-11 11:27:51 +01:00
shahondin1624 merged pull request llm-multiverse/llm-multiverse#213 2026-03-11 11:27:50 +01:00
Refactor: extract shared agent helpers to agent_utils (#192)
shahondin1624 closed issue llm-multiverse/llm-multiverse#192 2026-03-11 11:27:50 +01:00
Refactor: extract _format_memory and result builders to shared utils module
shahondin1624 created pull request llm-multiverse/llm-multiverse#213 2026-03-11 11:27:45 +01:00
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
cfa76a32b9 refactor: extract shared agent helpers to agent_utils module (issue #192)
shahondin1624 commented on issue llm-multiverse/llm-multiverse#181 2026-03-11 11:18:43 +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…

shahondin1624 commented on issue llm-multiverse/llm-multiverse#200 2026-03-11 11:18:16 +01:00
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 pushed to main at llm-multiverse/llm-multiverse 2026-03-11 11:18:12 +01:00
cbb2d4ce69 Merge pull request 'Refactor: consolidate agent type mappings (#200)' (#212) from refactor/issue-200-agent-type-constants into main
024c19e3f1 refactor: consolidate duplicated agent type mappings into shared module (issue #200)
Compare 2 commits »
shahondin1624 deleted branch refactor/issue-200-agent-type-constants from llm-multiverse/llm-multiverse 2026-03-11 11:18:12 +01:00
shahondin1624 closed issue llm-multiverse/llm-multiverse#200 2026-03-11 11:18:11 +01:00
Refactor: consolidate duplicated _AGENT_TYPE_NAMES mappings into shared module
shahondin1624 merged pull request llm-multiverse/llm-multiverse#212 2026-03-11 11:18:11 +01:00
Refactor: consolidate agent type mappings (#200)
shahondin1624 created pull request llm-multiverse/llm-multiverse#212 2026-03-11 11:18:07 +01:00
Refactor: consolidate agent type mappings (#200)
024c19e3f1 refactor: consolidate duplicated agent type mappings into shared module (issue #200)
shahondin1624 commented on issue llm-multiverse/llm-multiverse#191 2026-03-11 11:10:59 +01:00
Refactor: add audit logging to Tool Broker service

Fixed in PR #211 (merged).

  • Added AuditServiceClient to ToolBrokerServiceImpl with with_audit_client() builder
  • Audit logging at 4 points: ExecuteTool deny, ExecuteTool allow, tool…