diff --git a/README.md b/README.md index 81037d01..d68ac968 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,6 @@ No separate server. No Gemini API key. No data leaves your machine. | Tool | Session Source | Format | |------|---------------|--------| | Claude Code | `~/.claude/projects/` | JSONL | -| Cursor | `~/.cursor/chats/` and Cursor composer storage | SQLite | ## Screenshots @@ -150,7 +149,7 @@ Claude Code plugin with local-first analysis. Provides MCP tools for the full pi | Tool | Description | |------|-------------| -| `scan_sessions` | Discover and cache supported local session logs from Claude Code and Cursor | +| `scan_sessions` | Discover and cache supported local session logs from Claude Code | | `extract_data` | Run deterministic Phase 1 extraction (metrics, scores) | | `save_domain_results` | Store domain analysis results (called by analysis skills) | | `classify_developer_type` | Classify into the 5x3 type matrix | diff --git a/docs/agent/PLUGIN.md b/docs/agent/PLUGIN.md index 0f912622..02dc2bc3 100644 --- a/docs/agent/PLUGIN.md +++ b/docs/agent/PLUGIN.md @@ -148,7 +148,7 @@ Session count: scans `~/.claude/projects/*/` for `.jsonl` files (filesystem only ## Single-Session Install Flow -After `claude plugin install`, the MCP server isn't running yet (plugin lifecycle starts next session). The `/bp-setup` skill handles this with Step 0.5: +After `/plugin install`, the MCP server isn't running yet (plugin lifecycle starts next session). The `/bp-setup` skill handles this with Step 0.5: ``` install plugin → /bp-setup → Step 0.5: `claude mcp add -s user -e NODE_PATH=... -e CLAUDE_PLUGIN_DATA=... betterprompt -- node ` → MCP tools available → continue setup diff --git a/packages/plugin/skills/bp-setup/SKILL.md b/packages/plugin/skills/bp-setup/SKILL.md index f11d5998..45a324d1 100644 --- a/packages/plugin/skills/bp-setup/SKILL.md +++ b/packages/plugin/skills/bp-setup/SKILL.md @@ -68,7 +68,7 @@ Call the `scan_sessions` MCP tool to confirm the plugin is working. - Number of sessions discovered - Date range of sessions - Sources detected (Claude Code, Cursor, etc.) -- **On failure**: Report the error clearly and suggest the user verify the plugin is installed correctly (`claude plugin install betterprompt@betterprompt`). +- **On failure**: Report the error clearly and suggest the user verify the plugin is installed correctly (`/plugin install betterprompt@betterprompt`). ### Step 2: CLAUDE.md Integration