feat(honcho): --target-profile flag + peer card display in status

- hermes honcho --target-profile <name> <command>: target another
  profile's Honcho config without switching profiles. Works with all
  subcommands (status, peer, mode, tokens, enable, disable, etc.)
- hermes honcho status now shows user peer card and AI peer
  representation when connected (fetched live from Honcho API)
This commit is contained in:
Erosika 2026-03-30 16:52:45 -04:00 committed by Teknium
parent 5f6bf2a473
commit 89eab74c67
2 changed files with 54 additions and 3 deletions

View file

@ -4519,6 +4519,10 @@ For more help on a command:
),
formatter_class=__import__("argparse").RawDescriptionHelpFormatter,
)
honcho_parser.add_argument(
"--target-profile", metavar="NAME", dest="target_profile",
help="Target a specific profile's Honcho config without switching",
)
honcho_subparsers = honcho_parser.add_subparsers(dest="honcho_command")
honcho_subparsers.add_parser("setup", help="Interactive setup wizard for Honcho integration")