Dear User
Tells you how you and your Claude agent actually work together. Local-only, no API keys.
Ask AI about Dear User
Powered by Claude Β· Grounded in docs
I know everything about Dear User. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
Dear User
Your AI agent works for you β but how well do you work together?
Dear User is an open-source tool that audits your Claude Code setup and tells you exactly what to fix. It scores your collaboration, finds leaked secrets and config conflicts, and checks system health β all locally, nothing uploaded unless you explicitly share your Wrapped card.
claude mcp add --scope user dearuser -- npx -y @poisedhq/dearuser-mcp@latestThen ask Claude: "Analyze my collaboration with Claude"
Landing: dearuser.ai Β· Feedback: use the feedback tool in Claude, or open an issue
What it does
Dear User is an MCP server (Model Context Protocol β the plugin system Claude Code and Claude Desktop use). Once installed, it shows up as a set of tools your agent can call. No GUI, no sign-up, no cloud account.
Three local reports, one shareable Wrapped card, one feedback channel:
| Tool | What it does | Example prompt |
|---|---|---|
collab | Full collaboration report β persona, 0-100 score, friction patterns, specific recommendations | "How good is my Claude setup?" |
security | Leaked secrets, prompt-injection surfaces, rule conflicts in your agent contract (CLAUDE.md or AGENTS.md) | "Check my config for leaked API keys" |
health | Structural coherence β orphan scheduled tasks, overlapping skills, dead hooks | "Is anything broken in my setup?" |
wrapped | Spotify-style shareable stats card β scores + counts + persona. Opt-in public URL via share_report. | "Give me my Dear User Wrapped" |
feedback | Send a note to the Dear User inbox | "Send feedback: the health report could be shorter" |
Plus helpers: onboard (7-step guided setup), history (trend without re-scanning), help (menu), implement_recommendation, dismiss_recommendation, share_report (Wrapped-only upload).
Launch highlights
- Shareable Wrapped β run
wrapped, thenshare_reportto get adearuser.ai/r/<token>URL for your stats card. Anonymized before upload (paths collapsed to basenames, emails stripped, secrets redacted). Collab/security/health reports stay local β findings can carry business context that isn't safe to auto-share. - 12-category secret scanner β OpenAI, Anthropic, GitHub, AWS, Stripe, Slack, Google, Supabase, Vercel, private keys, generic env secrets, bearer tokens. Scans CLAUDE.md / AGENTS.md, memory files, skills, hooks.
- AGENTS.md native support β first-class input alongside CLAUDE.md. Works out of the box for Cursor, Codex, Aider, Cline, Zed and anyone following the Linux Foundation cross-tool standard. Both files in the same directory? We merge them.
- Semantic conflict detection (new) β finds rules that contradict each other even when they don't share keywords. "Commit often" vs. "ask before commit" gets flagged.
- Score calibrated against reality β two studies: 988 public Claude Code setups with substrate committed (median 32/100, max 63) and 2,895 standalone CLAUDE.md files (median 18, max 60). The substrate corpus is the apples-to-apples benchmark for live scores. See
research/calibration/for both studies.
Install
One command per client. Full guide: docs/install.md.
Claude Code (CLI)
claude mcp add --scope user dearuser -- npx -y @poisedhq/dearuser-mcp@latest
Restart Claude Code afterwards so the tools appear.
Claude Desktop β add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"dearuser": {
"command": "npx",
"args": ["@poisedhq/dearuser-mcp"]
}
}
}
Cursor, Windsurf, Cline, Zed β see docs/install.md.
Optional: install the slash commands (see Commands for the full list) so you can type /dearuser-collab instead of asking in prose:
npx -p @poisedhq/dearuser-mcp dearuser-install-skills
Your first 5 minutes
After installing, restart your client and try these in order:
-
Baseline scan:
Run Dear User collab on this projectYou'll get a persona (Vibe Coder / Senior Developer / Indie Hacker / Venture Studio / Team Lead), a 0-100 score across 7 categories, and 3-10 concrete recommendations.
-
Security sweep:
Run Dear User securityChecks your agent contract (CLAUDE.md or AGENTS.md), memory, skills and hooks for leaked tokens, injection surfaces and rule conflicts.
-
Share the result (optional):
Share my collab reportReturns a
dearuser.ai/r/<token>link. Anonymized before upload. You choose whether to paste it anywhere.
Example output from collab:
Persona: Indie Hacker (87% confidence)
Score: 73 / 100
Top friction:
β’ Quality Standards β no test-before-commit rule in CLAUDE.md
β’ Memory Health β 2 memory files haven't been touched in 90+ days
β’ Communication β no language preference stated (English vs Danish mixing)
Recommendations (3 shown, 5 total):
1. Add a "Session start protocol" block to CLAUDE.md (apply with: implement_recommendation)
2. Rotate the OpenAI key leaked in ~/.claude/memory/api-notes.md
3. Merge overlapping skills: deploy-check and ship-check share 80% of their rules
Commands
Eight slash commands ship with Dear User. Ask your agent by name, or type the slash command if you installed them with dearuser-install-skills.
| Command | What it does |
|---|---|
/dearuser-collab | Collaboration analysis β persona, 0-100 score across 7 categories, prioritized recommendations. |
/dearuser-health | System health β orphan jobs, overlap, stale schedules, missing MCP registrations, reconciliation gaps. |
/dearuser-security | Secret scan, prompt-injection surfaces, and rule conflicts in your agent contract. |
/dearuser-wrapped | Shareable collaboration stats in a Spotify-Wrapped style card. |
/dearuser-onboard | Conversational 7-step setup for first-time users. |
/dearuser-history | Show your last reports, score trend over time, or what changed since the last run β no re-scan. |
/dearuser-feedback | Send a short note (bug, request, reaction) to the Dear User founders. |
/dearuser-help | Show what Dear User can do and list every tool. |
Three in-chat actions the agent can call for you: share_report (upload a Wrapped card to dearuser.ai/r/<token>), implement_recommendation (apply a pending recommendation), dismiss_recommendation (mark one irrelevant).
Privacy
Dear User is local-first. Your scans stay on your machine:
- Your agent contract (CLAUDE.md or AGENTS.md), memory, skills, hooks and session metadata are read but never uploaded
- Results are stored in
~/.dearuser/dearuser.db(SQLite, WAL mode) - The optional localhost dashboard reads from that DB β nothing is transmitted
- Dear User reads session metadata only (counts, lengths) β never your actual conversation content
- No API keys required, no sign-up, no telemetry
The only exceptions are things you explicitly trigger:
share_report(Wrapped only) β your Wrapped card is anonymized (paths collapsed, emails stripped, anything matching our secret patterns redacted) and uploaded todearuser.aiso you can share a URL. Your local DB is not modified. You can set anexpires_atto auto-expire the link. Collab/security/health reports are NOT shareable β findings can carry business context (project names, client names, architecture notes) we don't think should live on a public URL.feedbackβ when you call the feedback tool, your message goes to our Supabase inbox. That's the whole point of the tool. We don't attach your scans or files β only the text you write.
No other tool transmits anything. If share_report isn't configured with DEARUSER_SUPABASE_URL + DEARUSER_SUPABASE_SERVICE_KEY, it errors out cleanly and the rest of Dear User keeps working.
Full privacy details: docs/privacy.md.
How it works
Your files (CLAUDE.md or AGENTS.md, memory, hooks, skills, sessions)
β
Scanner βββΊ Parser βββΊ Engines (scoring, secrets, conflicts, health)
β
Persona detection β Scoring β Gap analysis β Recommendations
β
Feedback loop (tracks which recommendations you implemented)
β
~/.dearuser/dearuser.db β dashboard reads from here
- 5 personas detected from your setup β each gets tailored recommendations
- 7 scoring categories: Role Clarity, Communication, Autonomy Balance, Quality Standards, Memory Health, System Maturity, Coverage
- Feedback loop: Dear User remembers what it recommended. Next run, it checks which ones you implemented and shows the score delta.
Who it's for
- "Vibe coders" β you prompt Claude and ship product, but you're never quite sure if your setup is actually working. Dear User tells you.
- Senior developers β you want a fast audit for leaked secrets, config drift and rule conflicts without wiring up a custom lint pipeline.
- Indie hackers / solo founders β you've accumulated hooks, skills and memory across projects. Dear User surfaces what's orphaned or contradicting itself.
- Team leads β you want a local audit of your team's shared agent setup. Collab, security and health reports stay on your machine; only your personal Wrapped card can be shared publicly.
Repository layout
mcp/β@poisedhq/dearuser-mcpnpm package (the MCP server). Seemcp/README.mdfor development notes.web/βdearuser.ailanding + share-report pages (Astro).docs/β install guide, privacy doc, per-platform setup (Supabase/GitHub/Vercel for the optionalsecurityplatform advisors).research/β calibration data + architecture notes we're willing to share.
Contributing
See CONTRIBUTING.md. Bug reports and small fixes welcome via GitHub issues and PRs.
Community & support
- GitHub Discussions β questions, ideas, "how do Iβ¦", show-and-tell
- GitHub Issues β reproducible bugs and feature requests
- Feedback inbox β private notes; or use the
feedbackMCP tool from inside Claude
Links
- dearuser.ai β landing page
- Install guide Β· Privacy Β· Setup for platform advisors
License
Dear User is MIT-licensed. See LICENSE.
Open-core commitment: everything in this repo is MIT and stays MIT. If we ever build team or hosted features (agency dashboards, cross-project trend lines, vertical-specific benchmarks), they'll live in separate repos with their own license β never by pulling pieces out of this one.
