Design and manage Harmonica deliberation sessions from your coding agent. Guided session design, template matching across the live platform library, full lifecycle commands (check, summary, edit, review, follow-up), and post-session facilitation-quality analysis.
Harmonica is a structured-conversations platform where groups align via AI-facilitated async conversations. You create a session with a topic and goal, share a link with participants, and each person has a private 1:1 chat with an AI facilitator. Responses are then synthesized into actionable insights. Learn more.
Unlike a one-shot session creator, harmonica-chat is a guided designer — it walks you through template selection, goal refinement, and context calibration, then handles the full lifecycle from creation through follow-up.
- Claude Code — fully supported today, via
~/.claude/skills/harmonica-chat/. Quick install below. - Cursor, Codex, Grok Build, OpenCode, … — the skill is plain Markdown using the Agent Skills format. Manual install (copy
SKILL.md+reference/to the agent's skills directory) should work; first-class installers for these are tracked in HAR-731 / HAR-1225 → multi-harness packaging.
- A Harmonica account — sign up free if you don't have one.
- An API key — generate at Profile > API Keys. You'll get a
hm_live_...value. - Node.js ≥18 on PATH (needed to run harmonica-mcp via npx).
- Claude Code on PATH (for the v3.1 installer; manual install works without it).
HARMONICA_API_KEY=hm_live_... bash <(curl -fsSL https://raw.githubusercontent.com/harmonicabot/harmonica-chat/master/install.sh)$env:HARMONICA_API_KEY = 'hm_live_...'
irm https://raw.githubusercontent.com/harmonicabot/harmonica-chat/master/install.ps1 | iex- Verifies
HARMONICA_API_KEYis set,claudeCLI is on PATH,nodeis available. - Configures the
harmonicaMCP server in Claude Code (claude mcp add-json harmonica … -s user) with your key — idempotent; skips if already configured. - Installs
SKILL.md+ 11reference/*.mdfiles to~/.claude/skills/harmonica-chat/. - Pre-approves the 6 read-only
mcp__harmonica__*tools (list_sessions,search_sessions,get_session,get_responses,get_summary,list_telegram_groups) by adding them to~/.claude/settings.jsonpermissions.allow— fewer prompts during use; mutations (create_session,update_session) still require confirmation. - Removes the legacy v2.x slash-command install at
~/.claude/commands/harmonica-chat.mdif present. - Verifies the MCP is registered.
Then restart Claude Code and you're done — invoke /harmonica-chat, or just describe what you want to facilitate.
If you can't run the script or are installing for a non-Claude-Code agent:
- Configure the MCP server:
(or the equivalent for your agent — see its docs for MCP configuration.)
claude mcp add-json harmonica '{"command":"npx","args":["-y","harmonica-mcp"],"env":{"HARMONICA_API_KEY":"hm_live_..."}}' -s user - Copy
SKILL.mdand thereference/directory to your agent's skills location (Claude Code:~/.claude/skills/harmonica-chat/). - Restart your agent.
v3.0.0 moved the install path from ~/.claude/commands/harmonica-chat.md to ~/.claude/skills/harmonica-chat/SKILL.md + reference/. The v3.1+ installer removes the legacy file automatically. Re-run the quick-install command.
The skill checks for updates on each run and suggests updating if a newer version is available. You can also update manually with the same quick-install command.
By default Claude Code prompts before running any MCP tool. For harmonica-chat that means a prompt every time it lists or fetches a session — fast to dismiss but death by paper cuts during a check / summary / review flow. The installer pre-approves the 6 read-only tools so you only get prompted for mutations (creating, updating, sending chat messages). To opt out: remove the entries from ~/.claude/settings.json permissions.allow after install.
Invoke as /harmonica-chat (the skill is exposed as a slash command). The entry router parses your input and loads the matching subcommand reference on demand.
/harmonica-chat
Walks you through the full design flow: intent, template matching, topic, goal, context, critical question, cross-pollination, results visibility, and confirmation. Each question asked one at a time.
/harmonica-chat "Q1 retrospective"
Topic upfront skips the intent / topic questions. Template suggestion + faster confirm flow.
/harmonica-chat "retro on the API redesign" --project harmonica-web-app
Reads the project's CLAUDE.md and recent git history to auto-generate session context. Suggests a session type based on recent activity patterns.
/harmonica-chat status # List your recent sessions
/harmonica-chat check "Q1 retro" # Check participant progress and themes
/harmonica-chat summary "Q1 retro" # Get the AI-generated synthesis
/harmonica-chat edit "Q1 retro" # Update topic / goal / context / prompt
/harmonica-chat review "Q1 retro" # Analyze transcripts + propose prompt fixes
/harmonica-chat follow-up "Q1 retro" # Design a follow-up session
v3.0.0 splits the skill into a thin entry router (SKILL.md, ~120 lines) plus 11 subcommand reference files in reference/ that load on demand. The router parses your input, decides which reference to load, and follows that reference's instructions.
harmonica-chat/
├── SKILL.md Entry router: prerequisites, design laws, routing, commands menu
└── reference/
├── design.md Guided session design (14 steps)
├── accelerated.md Topic-upfront flow + project-aware creation
├── status.md List recent sessions
├── check.md Thematic preview of responses
├── summary.md AI-generated synthesis
├── edit.md Update session metadata
├── review.md Facilitation quality analysis + prompt fixes
├── follow-up.md Design a next-step session
├── invitation.md Post-creation invitation flow
└── expertise.md Soft-nudge session design heuristics
Templates are NOT hardcoded — fetched at runtime via mcp__harmonica__list_templates (harmonica-mcp ≥ 0.11.0). The Harmonica admin panel is the single source of truth.
This keeps context lean — the router loads when you invoke the skill, references load only when you use the matching subcommand. Inspired by pbakaus/impeccable's architecture.
- Guided session design with template matching against the live Harmonica template library (fetched at runtime via
list_templates; whatever the platform admin panel publishes is what you'll see) - Session design expertise — goal quality nudges, context calibration, cross-pollination recommendations, constraint discovery
- Project-aware context — reads CLAUDE.md and git history to auto-fill session context
- Full session lifecycle — status, check, summary, edit, review, follow-up
- Facilitation quality review — analyzes transcripts across 5 dimensions, proposes specific prompt fixes with literal-quote citations (v2.11.0+)
- Telegram distribution — sessions can be announced to Telegram groups via the Harmonica bot
- Pre-session questions — configure what participants answer before the conversation; defaults are smart per distribution channel
- Invitation drafting with tone adapted to template type, plus integration with communication tools (Zapier, Slack) when available
- Community participation feed integration for publishing sessions to community dashboards
- harmonica-mcp — MCP server for full API access to Harmonica sessions
- Harmonica docs — Platform documentation
- Harmonica — Main website
MIT