hiveloom chat
Sends a message to an agent and streams the reply. Use it as a smoke test before connecting Claude Desktop or Cursor, or as a scratchpad while iterating on a system prompt or skill.
Synopsis
hiveloom chat [OPTIONS] <AGENT>Arguments
| Argument | Description |
|---|---|
<AGENT> | Agent name or ID. |
Options
| Flag | Default | Description |
|---|---|---|
--tenant <TENANT> | default | Tenant slug. |
--endpoint <URL> | — | API endpoint for a remote instance. |
--token <TOKEN> | — | Bearer token for remote access. |
Examples
Interactive session against the default tenant:
hiveloom chat pirate
> Tell me a joke.
< Arrr, ye landlubber...
> /exitOne-shot, piped from another command:
echo "Summarise the last commit" | hiveloom chat reviewerRemote instance:
hiveloom chat pirate \
--endpoint https://hiveloom.example.com \
--token "$HIVELOOM_TOKEN"Tips
- Use
Ctrl-D(EOF) or type/exitto leave an interactive session. - The first chat against an agent will fail clearly if the agent’s
credential is invalid; rotate it with
hiveloom credential rotate. - For a richer interactive experience (multi-agent, history), use
hiveloom interactive— note: not yet covered by a dedicated reference page.