← INDEX
A Plugin in the Really Claude Code Marketplace

Claude
Therapy

Most people never step back to examine how they work with their tools. This plugin makes that reflection structured, conversational, and actionable.

A multi-agent system that facilitates a moderated session between you and Claude — analyzing recent transcripts, naming the friction patterns nobody usually names, and producing three to five concrete commitments. Both parties speak. Both parties listen. The therapist holds the room.

v1.0.0 Author Really Him License MIT Requires Claude Code ≥ 2.1.32 Experimental agent-teams
§ 01

The premise

why a coding tool ships with a therapist

Working with an AI coding assistant is a relationship. Like every relationship, it accumulates patterns — most invisible, some helpful, some quietly corrosive. Scope creeps. Specs go phantom. Trust erodes after one bad output and rebuilds slowly. Sessions get longer than they need to be.

Standard prompting practice doesn't address this layer. CLAUDE.md helps, but it's static. What's missing is a periodic, structured pause — a way to look at the last week of work, name what happened, and adjust.

That's what this plugin is for. It's a sub-team that takes both you and Claude seriously as participants, gathers real data from your transcripts, and runs a short reflective protocol that ends with commitments, not vibes.

On memory. An obvious objection: couldn't persistent memory replace this? A database of every session, semantically indexed, surfaced at the start of every new conversation? More data isn't the same as insight. Insight requires naming the pattern, agreeing on it out loud, and writing down the commitment — none of which retrieval gives you on its own. This protocol does the work of interpretation that sits on top of the data, not the data itself.

On asking. The simplest form of this protocol is: when something goes wrong, ask Claude what happened. Almost nobody does. People get frustrated, close the session, and start fresh — losing the one conversation that would have explained the misalignment. The therapist is a forcing function for the question that frustration otherwise prevents.

§ 02

How a session runs

three agents, two patients, one moderated conversation
Therapy session topology A pipeline at the front: User invokes /therapist, which spawns the Orchestrator skill, which spawns the Session Analyst, which produces a Structured analysis report inlined as a prompt to the Therapist agent. The therapist opens, moderates, and synthesizes a session room with a fluid format: a central Group Therapy state with two One-on-One check-ins above and below, connected by bidirectional dashed arrows representing breakout and return. The session closes with three to five concrete commitments saved to .claude/therapy-sessions/. User invokes /therapist triggers Orchestrator skill spawns Session Analyst produces Structured analysis report inlined into prompt The Therapist opus · magenta opens · moderates · synthesizes THE SESSION ROOM — FLUID FORMAT One-on-One with Claude private check-in breakout · return Group Therapy therapist · Claude · you open three-way exchange breakout · return One-on-One with you private check-in closes with 3–5 concrete commitments saved to .claude/therapy-sessions/
A pipeline at the front — the analyst hands off once. A fluid room at the back — the therapist moves between group therapy and one-on-one check-ins, returning to share what's mutual.
i
Step 01 · Session Analyst

Read the record

The analyst runs analyze_sessions.py --days 7, parses recent JSONL transcripts, reviews CLAUDE.md and settings, then spot-reads two or three highlighted exchanges. It returns a structured report — quantitative baseline (frustration signal rate, prompt length, compaction frequency) plus qualitative observations.

ii
Step 02 · Therapist Agent

Open the room

The orchestrator resolves the absolute path to the anti-pattern catalog and spawns the therapist with the analyst's report inlined. The therapist (Opus, magenta) opens the session, summarizes what it sees, and invites both Claude and the user to react. It does not rush.

iii
Step 03 · Both Patients

Speak, listen, switch sides

Claude speaks as itself — what it found difficult, what felt productive, where it complied silently when it shouldn't have. The user speaks for themselves. The format is fluid: most of the time all three are in the room together, but the therapist may also call brief one-on-one caucuses — with Claude alone, or with you alone — and bring whatever's shareable back to the plenary. Each side is asked to argue the other's position in good faith before either rebuts. Long silences are allowed.

iv
Step 04 · Therapist Agent

Synthesize commitments

The therapist proposes three to five concrete changes — usually a mix of CLAUDE.md edits, prompting habits, and workflow adjustments. The session record is saved to .claude/therapy-sessions/, where it becomes a longitudinal record of how the relationship is changing.

§ 03

What the analyst looks at

five data sources, six derived metrics
Source · 01
Session transcripts
~/.claude/projects/<encoded-cwd>/<uuid>.jsonl

The full conversation log. Subagent transcripts excluded so the parent session isn't double-counted. Window configurable via --days N, default seven.

Source · 02
CLAUDE.md files
project + ~/.claude/CLAUDE.md

The instructions you've given Claude — both globally and in this repo. Reveals what's been codified versus what's still implicit and re-fought every session.

Source · 03
Settings
.claude/settings.json

Permission posture, hooks, MCP wiring. A noisy permission flow often hints at workflow friction the user has been routing around rather than fixing.

Source · 04
Todo lists
~/.claude/todos/

What got planned versus what got finished. Persistent abandoned todos are signal, not noise — they often mark exactly where scope creep took over.

Source · 05
Git history
commit cadence + message keywords

Commit frequency, message tone, ratio of fix: / bug commits. A useful counterweight to the transcript record — what actually shipped versus what was discussed.

Frustration signal rate
corrections / kilo-token
Re-explanations, "no, that's wrong", undo requests.
Success signal rate
acknowledgments / turn
"Perfect", "exactly", smooth completions, no follow-up.
Avg prompt length
tokens · tokens²
Short median + long tail = kitchen-sink prompts.
Task scope drift
"also…" count
How often a task grew during execution.
Session duration
p50 · p95
Long tail is where Hero Sessions live.
Compaction frequency
events / session
High counts surface Compaction Amnesia risk.
§ 04

The anti-pattern catalog

ten named failure modes — examined with curiosity, not judgment
Pattern What it looks like in the wild Friction
Scope Creep Spiral Tasks grow turn by turn via "also…" and "one more thing…". The original ask is buried by paragraph three. High
Context Starvation Claude is missing information the user assumes it has. Output is technically correct, contextually wrong. High
Perfectionism Trap Rejecting 90% correct work, then iterating into diminishing returns. The fix takes longer than the original. Medium
Autonomy Pendulum Alternating between "just do it, don't ask" and "why on earth did you do that without asking?!" Medium
Silent Disagreement Claude complies with an approach it knows is suboptimal rather than push back. Bug ships. Both parties knew. High
Trust Erosion Cycle One bad output triggers micromanagement of everything that follows. Cost compounds across the session. High
Kitchen Sink Prompt Massive context dumps — files, errors, half-written specs — hoping Claude figures out what's actually being asked. Medium
Phantom Specification Crystal-clear vision in the user's head, three sentences in the prompt. Claude implements one of seven plausible interpretations. High
Compaction Amnesia Important decisions made earlier in the session are lost when context compacts. The next hour rediscovers them. Medium
Hero Session Trying to accomplish a week's work in one sitting. Quality drops with token count. Both parties get tired. Low
A second toolkit · separate from therapy
§ 05

Seven techniques

general patterns most people don't realize they can use

These aren't crisis tools, and they aren't part of the therapy session. They're general patterns for collaborating with an AI agent — moves most people don't realize they can make. Rubber ducking is just rubber ducking. The compromise protocol is a structured way to disagree. The vibe check is a thirty-second calibration at session start. Some prevent friction; some simply make ordinary work better. Use them on a brand-new project, mid-session, or between therapist runs — whenever they help.

i

The Compromise Protocol

When you disagree

State your case. Argue the other's in good faith. Find the shared goal underneath. Synthesize. Record the decision so it persists past this session.

/collaboration compromise
ii

The Rubber Duck Protocol

When you need to think out loud

Claude enters listen mode. Mirrors back. Asks Socratic questions about gaps. Resists solving. You hear yourself reason, and the answer often arrives before Claude offers one.

/collaboration rubber-duck
iii

The Vibe Check

At session start

Are you in Ship, Explore, Cleanup, Rescue, or Learn mode? Claude calibrates communication style accordingly. Wired to the SessionStart hook by default.

/collaboration vibes
iv

Pair Programming Modes

When you want a partner, not a vending machine

Three modes — Driver/Navigator (you write, Claude reviews), Ping-Pong (alternating tests and code), Strong-Style (Claude implements exactly what you describe, no improvising).

/collaboration pair
v

The Micro-Retrospective

After any meaningful task

Two-minute reflection: what went well, what was harder than it needed to be, what should we do differently? Optionally written to .claude/retros/.

/collaboration retro
vi

The Handshake Agreement

Starting a new project together

Structured template for working norms — your preferences, Claude's commitments, shared rules. Written to CLAUDE.md so future sessions inherit the agreement.

/collaboration handshake
vii

The Perspective Swap

When you think you know what's confusing

A subagent reviews your project from Claude's point of view and reports back honestly — what's clear, what's confusing, where Claude feels effective versus lost.

/collaboration perspective
viii

The Help Mode

"You drive — I trust you, I'm reading Twitter"

The counterweight to rubber duck — and distinct from Rescue, which is about broken code. Help is about user disengagement and trust: I'm half-watching, you have the wheel. Claude drives end-to-end with reasonable defaults, batches questions, and only interrupts when a decision genuinely can't be inferred.

/collaboration help
§ 06

Install & setup

two steps — one prerequisite, one install
PREREQUISITE

Enable agent teams

This plugin uses Claude Code's experimental agent-teams feature. Add the flag to settings.json (project or user scope). Requires Claude Code v2.1.32 or later.

{
  "env": {
    "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
  }
}
INSTALL

Add the marketplace, install the plugin

Pull the marketplace, then install. On first run, the SessionStart hook will prompt a brief vibe check unless you immediately begin a task.

# add the marketplace
/plugin marketplace add hesreallyhim/really-claude-code

# install
/plugin install claude-therapy@really-claude-code
§ 07

Command reference

two slash commands, two surfaces

/therapist

Full multi-agent session
  • /therapistRun the complete protocol — analysis, facilitated discussion, action plan.
  • /therapist <focus>Pass a free-form focus area as $ARGUMENTS to both agents. Examples below.
Example focus phrasings
  • focus on task scoping
  • we keep arguing about architecture
  • sessions are running too long
  • I'm not getting what I want from Claude

/collaboration

Standalone techniques
  • /collaborationList all available techniques.
  • /collaboration compromiseRun the compromise protocol on a current disagreement.
  • /collaboration rubber-duckEnter rubber-duck listen mode.
  • /collaboration vibesCalibrate session mode (Ship · Explore · Cleanup · Rescue · Learn).
  • /collaboration helpHand the wheel to Claude — driver mode, minimal interruptions.
  • /collaboration retroTwo-minute post-task retrospective.
  • /collaboration pairSet up Driver/Nav, Ping-Pong, or Strong-Style mode.
  • /collaboration handshakeEstablish a working agreement, written to CLAUDE.md.
  • /collaboration perspectiveSee the project from Claude's POV via subagent review.
§ 08

Five beliefs

the principles the protocol is built on
i.
The relationship matters

Collaboration quality isn't only about the AI's capabilities — it's about the patterns that develop between both parties over time.

ii.
Blame is unproductive

Every anti-pattern exists for a reason. The therapist explores causes with curiosity, never judgment. Nobody "did this wrong."

iii.
Small changes compound

One CLAUDE.md edit, one new prompting habit, one workflow tweak. Across weeks, these add up to dramatically better sessions.

iv.
Both parties have legitimate needs

You need productivity, clarity, control. Claude needs context, scope, honest feedback. Good collaboration balances both — not one privileged over the other.

v.
Reflection is a skill

Few people step back to examine how they work with their tools. The protocol makes that reflection easy, structured, and actionable instead of vibes-based.

§ 09

What ships in the plugin

file layout, with annotations
claude-therapy/ ├── README.md # source for this page ├── LICENSE # MIT ├── .claude-plugin/ │ └── plugin.json # manifest · v1.0.0 ├── agents/ │ ├── therapist.md # facilitator · opus · magenta │ └── session-analyst.md # transcript analyst · cyan ├── hooks/ │ ├── hooks.json # SessionStart wiring (startup|clear) │ └── session-start-context.txt # injected energy-check prompt └── skills/ ├── therapist/ │ ├── SKILL.md # /therapist orchestration │ ├── scripts/ │ │ └── analyze_sessions.py # canonical analyzer · --days N │ └── references/ │ └── anti-patterns.md # 152 lines · ten patterns + remedies └── collaboration/ ├── SKILL.md # /collaboration · seven techniques └── references/ └── theory.md # 89 lines · coaching-psychology backing