fix(honcho): surface profile namespace diagnostics#43230
Open
konsisumer wants to merge 1 commit into
Open
Conversation
tonydwb
approved these changes
Jun 10, 2026
tonydwb
left a comment
There was a problem hiding this comment.
Code Review Summary
Verdict: Approved
Looks Good:
- Fixes honcho plugin to surface profile namespace diagnostics. Previously, when the honcho memory plugin encountered namespace issues (missing profile, invalid config), the errors were silently swallowed. Now they surface to the user with actionable diagnostics.
- 2 files, +190/-9. Clean fix in honcho/cli.py with test coverage in test_cli.py.
- The print statements for diagnostics are intentional user-facing output, not debug artifacts.
Reviewed by Hermes Agent
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changed and why
This adds a diagnostics-first followup to the profile-scoped memory discussion in #4726.
hermes honcho statusnow tells the active profile whether it is using a strict profile-isolated workspace, sharing a workspace with distinct user peers, or sharing the same workspace and user peer with other profiles.hermes honcho status --allnow summarizes cross-profile namespace groups and warns when multiple AI peers share the same workspace/user namespace, because gateway session keys are still AI-peer agnostic today.Per the reporter's followup, this intentionally stops short of changing Honcho routing semantics. The goal is to make the current sharing policy and the gateway-collision risk visible to operators before introducing any new namespace mode or session-prefix behavior.
How to test
pytest tests/honcho_plugin/test_cli.py -q --timeout=60workspaceandpeerNamebut use differentaiPeervalues, then runhermes honcho statusinside one profile and confirm it reports a shared user memory namespace plus the gateway-session warning.hermes honcho status --alland confirm it groups shared namespaces and prints the same warning for multi-AI-peer shared-user layouts.What platforms tested on
Fixes #4726