How this skill is triggered — by the user, by Claude, or both
Slash command
/tessera:cleanupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
---
/cleanup [file or directory]
/cleanup — uses tessera graph to find recently modified files, or prompts for target
Claude and GPT independently analyze code for quality issues and AI slop patterns, then reconcile disagreements. Produces a unified report with agreed issues (high confidence) and model-specific findings (lower confidence).
If tessera MCP is configured:
1. graph_continue (mandatory first call)
2. graph_retrieve("recently modified files") — find candidates
3. graph_read each target file before analysis begins
graph_read for each)Read all target files before starting analysis.
Analyze the files independently. Look for:
Format each issue as: [HIGH|MED|LOW] [TYPE] file:line — description
Do not share your findings yet.
Send the same files to Codex without revealing Claude's findings:
codex exec "Analyze this code for quality issues. Look for: unnecessary complexity, dead code, poor naming, missing error handling at boundaries, premature abstractions, AI-generated patterns (verbose comments restating code, unnecessary wrappers, impossible-case guards). File contents: <FILE_CONTENTS>. Format each issue as: [HIGH|MED|LOW] [TYPE] file:line — description. Do not suggest rewrites, only identify issues."
Compare the two sets of findings:
codex exec "Quick verdict needed. Issue: <ISSUE>. Claude disagrees because: <CLAUDE_REASONING>. Is Claude correct? Give a one-sentence verdict: agree with Claude OR stand by original finding with one supporting reason."
Present the unified report:
Agreed Issues (fix these): [list with severity and file:line]
Claude-Only Findings: [list — lower confidence, Claude's assessment]
GPT-Only Findings (Claude evaluated): [list with Claude's verdict on each: confirmed / dismissed with reason]
Resolved Disagreements: [what was debated, what was concluded]
Ask: which issues to fix now? All HIGH? Specific items? Leave as reference?
npx claudepluginhub dr-code/tessera --plugin tesseraGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.