fix(honcho): share workspace across profiles by default

Profiles inherit the default workspace instead of deriving a separate
one. All profiles see the same user context, sessions, and project
history. Each profile is a different AI peer in a shared space.

Workspace can still be overridden per-profile via config if isolation
is needed.
This commit is contained in:
Erosika
2026-03-30 16:38:36 -04:00
committed by Teknium
parent f27da5fe8e
commit 5f6bf2a473
2 changed files with 3 additions and 3 deletions

View File

@@ -113,7 +113,7 @@ def cmd_enable(args) -> None:
if peer_name and "peerName" not in block:
block["peerName"] = peer_name
block.setdefault("aiPeer", host)
block.setdefault("workspace", host)
block.setdefault("workspace", default_block.get("workspace") or cfg.get("workspace") or HOST)
_write_config(cfg)
print(f" {label}Honcho enabled.")