A CLI tool for real-time Q&A between a client and a programmer over WebSocket.
Programmers register themselves in a queue; clients browse the queue and connect to a programmer of their choice.
cargo install --git https://github.com/ut-code/clicoding-human serve <LABEL>Registers you in the queue with the given display name, creates a room, and waits for a client to connect. Once connected, questions arrive automatically and you type answers line by line. Press Ctrl+D to finish a response and wait for the next question.
Example:
coding-human serve "Alice (Rust / systems)"coding-human askFetches the list of available programmers, lets you pick one, then opens a session. Type questions at the prompt; answers stream back in real time. Type /quit or press Ctrl+D to exit.
The server URL defaults to http://localhost:8787. Override it with a SERVER_URL environment variable or a .env file:
SERVER_URL=https://your-server.example.com