/** * `glen statusline` β€” called by the agent's status-line hook. * * Reads stdin (Claude Code statusline JSON payload; parsed defensively, currently * unused β€” reserved for future enrichment). Reads local credentials + session * state. Outputs a single line to stdout and always exits 0 so it never breaks * the host UI. * * Output (org slugs are auto-generated β€” the NAME is the human-meaningful field): * creds + state β†’ πŸ”οΈ [ Β· πŸ•ΆοΈ incognito | Β· ⏸️ off] * no creds β†’ πŸ”οΈ glen β€” not connected Β· ask me to "set up glen" * creds, no org β†’ πŸ”οΈ glen β€” no org selected Β· ask me to "set up glen" */ declare const statusline: () => Promise; export { statusline };