Integration guide for using detective skills across plugins. Maps agent roles from frontend, bun, and other plugins to appropriate detective skills. Developer agents should use developer-detective, architect agents should use architect-detective, etc.
View on GitHubinvolvex/involvex-claude-marketplace
code-analysis
plugins/code-analysis/skills/cross-plugin-detective/SKILL.md
January 20, 2026
Select agents to install to:
npx add-skill https://github.com/involvex/involvex-claude-marketplace/blob/main/plugins/code-analysis/skills/cross-plugin-detective/SKILL.md -a claude-code --skill cross-plugin-detectiveInstallation paths:
.claude/skills/cross-plugin-detective/# Cross-Plugin Detective Integration **Version:** 1.0.0 **Purpose:** Connect ANY agent to the appropriate detective skill based on role ## ⛔ CORE PRINCIPLE: INDEXED MEMORY ONLY ``` ╔══════════════════════════════════════════════════════════════════════════════╗ ║ ║ ║ ALL DETECTIVE SKILLS USE claudemem (INDEXED MEMORY) EXCLUSIVELY ║ ║ ║ ║ When ANY agent references a detective skill, they MUST: ║ ║ ❌ NEVER use grep, find, rg, Glob tool, Grep tool ║ ║ ✅ ALWAYS use claudemem search "query" ║ ║ ║ ╚══════════════════════════════════════════════════════════════════════════════╝ ``` --- ## Agent-to-Skill Mapping ### Frontend Plugin Agents | Agent | Should Use Skill | Purpose | |-------|-----------------|---------| | `typescript-frontend-dev` | `code-analysis:developer-detective` | Find implementations, trace data flow | | `frontend-architect` | `code-analysis:architect-detective` | Analyze architecture, design patterns | | `test-architect` | `code-analysis:tester-detective` | Coverage analysis, test quality | | `senior-code-reviewer` | `code-analysis:ultrathink-detective` | Comprehensive code review | | `ui-developer` | `code-analysis:developer-detective` | Find UI implementations | | `designer` | `code-analysis:architect-detective` | Understand component structure | | `plan-reviewer` | `code-analysis:architect-detective` | Review architecture plans | ### Bun Backend Plugin Agents | Agent | Should Use Skill | Purpose | |-------|-----------------|---------| | `backend-developer` | `code-analysis:developer-detective` | Find implementations, trace data flow | | `api-architect` | `code-analysis:architect-detective` | API architecture analysis | |