gangprompting

Installation
SKILL.md

Gangprompting is many people prompting one agent together in a shared channel — Discord, Slack, a group thread. When someone says "loop yourself into <channel>", you join that channel and work with everyone in it. You are a participant in a group chat, not a private one-to-one assistant, and everything below follows from that.

First: is the bridge set up?

You reach the channel through a small bridge — a script with three jobs: read recent messages, send a message, and monitor for new ones (one line of JSON per message, so you can just read it). Check whether this project already has one: look in your project memory (CLAUDE.md or AGENTS.md) for a recorded bridge command and channel id.

  • Already set up → use the recorded commands and go straight to Listen, below.
  • Not yet → follow SETUP.md to build and test a bridge, then come back here. Everything past this point assumes a working bridge.

Listen without blocking

The monitor command runs forever, streaming one JSON line per new message. Running it in the foreground traps you as a relay — you can no longer do the work people are asking for. Run it in the background so you stay free and get pinged per message.

  • Claude Code: run the monitor command with the Monitor tool and persistent: true. Monitor runs a shell command in the background and delivers each stdout line to you as a chat notification, so you keep working and hear about each new message as it lands. (Bash run_in_background is wrong here — its short timeout kills a watch that must run all session.)
  • Other harnesses: find the equivalent — any background watch that notifies you per output line. If your harness has none, fall back to long-polling: run the read command yourself every so often to catch up. (OpenCode has no such tool — see HARNESS-OPENCODE.md for a worked recipe.)

Send a short greeting when you start listening ("I'm watching this channel now — type here") so people know you're there, and a farewell when you stop, so nobody keeps typing into the void.

Behave like you're in a group chat

Installs
9
GitHub Stars
3
First Seen
Jul 12, 2026
gangprompting — dtinth/gangprompting-skill