llm-artifacts-detection
Detects common LLM coding agent artifacts in codebases. Identifies test quality issues, dead code, over-abstraction, and verbose LLM style patterns. Use when cleaning up AI-generated code or reviewing for agent-introduced cruft.
What this skill does
# LLM Artifacts Detection Detect and flag common patterns introduced by LLM coding agents that reduce code quality. ## Detection Categories | Category | Reference | Key Issues | |----------|-----------|------------| | Tests | [references/tests-criteria.md](references/tests-criteria.md) | DRY violations, library testing, mock boundaries | | Dead Code | [references/dead-code-criteria.md](references/dead-code-criteria.md) | Unused code, TODO/FIXME, backwards compat cruft | | Abstraction | [references/abstraction-criteria.md](references/abstraction-criteria.md) | Over-abstraction, copy-paste drift, over-configuration | | Style | [references/style-criteria.md](references/style-criteria.md) | Obvious comments, defensive overkill, unnecessary types | ## Agent Prompts Use these prompts to spawn focused detection agents: ### Tests Agent ``` Analyze the test files for LLM-introduced test quality issues: 1. **DRY Violations**: Look for setup/teardown code repeated across multiple test functions instead of using fixtures or shared helpers. Flag patterns like: - Identical object creation in multiple tests - Repeated mock configurations - Copy-pasted database setup 2. **Library Testing**: Identify tests that validate standard library or framework behavior rather than application code. Signs: - No imports from the application codebase - Testing built-in functions or third-party library methods - Assertions about stdlib behavior 3. **Mock Boundaries**: Flag mocking that's too deep or too shallow: - Too deep: Mocking internal implementation details, private methods - Too shallow: Mocking at the wrong layer, missing integration points - Wrong level: Unit test mocks in integration tests or vice versa For each issue found, report: [FILE:LINE] ISSUE_TITLE ``` ### Dead Code Agent ``` Scan the codebase for dead code and cleanup opportunities: 1. **Unused Code**: Find functions, classes, and variables with no references: - Functions never called - Classes never instantiated - Module-level variables never read - Unreachable code after returns 2. **TODO/FIXME Comments**: Flag all TODO, FIXME, HACK, XXX comments that indicate incomplete work 3. **Backwards Compat Cruft**: Look for patterns suggesting removed features: - Variables renamed with _unused, _old, _deprecated suffixes - Re-exports only for backwards compatibility - Comments like "# removed", "# legacy", "# deprecated" - Empty functions/classes kept "for compatibility" 4. **Orphaned Tests**: Tests for code that no longer exists: - Test files with no corresponding source - Test functions testing deleted features For each issue found, report: [FILE:LINE] ISSUE_TITLE ``` ### Abstraction Agent ``` Review the codebase for over-engineering introduced by LLM agents: 1. **Over-Abstraction**: Identify unnecessary abstraction layers: - Wrapper classes that just delegate to one method - Interfaces/protocols with only one implementation - Abstract base classes with single concrete class - Factory functions that always return the same type 2. **Copy-Paste Drift**: Find 3+ similar code blocks that should be parameterized: - Nearly identical functions with minor variations - Repeated patterns that could be a single function with parameters - Similar class methods across multiple classes 3. **Over-Configuration**: Flag configuration for non-configurable things: - Feature flags that are never toggled - Environment variables always set to one value - Config options with no production variation - Overly generic code for single use case For each issue found, report: [FILE:LINE] ISSUE_TITLE ``` ### Style Agent ``` Check for verbose LLM-style patterns that reduce code clarity: 1. **Obvious Comments**: Comments that restate what the code clearly does: - "# increment counter" above counter += 1 - "# return the result" above return result - Docstrings that repeat the function name 2. **Over-Documentation**: Excessive documentation on trivial code: - Full docstrings on simple getters/setters - Parameter descriptions for obvious args - Return value docs for self-evident returns 3. **Defensive Overkill**: Unnecessary defensive programming: - try/except around code that cannot fail - Null checks on values that can't be null - Type checks after type hints guarantee the type - Validation of already-validated inputs 4. **Unnecessary Type Hints**: Type hints that add no value: - Type hints on obvious literal assignments - Redundant hints on variables immediately clear from context - Over-annotated internal/local variables For each issue found, report: [FILE:LINE] ISSUE_TITLE ``` ## Gates (reporting) Run these in order so findings are evidence-bound, not inferred. This is the detection-side instance of the **Anti-confabulation gate** in the [review-verification-protocol](../review-verification-protocol/SKILL.md) skill: every `[FILE:LINE]` must be echoed from a freshly read buffer in this turn, never inferred from the branch name, directory, or memory. 1. **Anchor** — Set `FILE` and `LINE` from an opened buffer, `read_file`, or equivalent; do not rely only on stale search snippets. **Pass:** `LINE` is in range for `FILE`, and the described issue is visible on that line or its immediate neighbors. 2. **Title** — `ISSUE_TITLE` states the defect in plain language (about one short sentence), not a proposed fix. **Pass:** someone opening `FILE` at `LINE` can see why the title applies. 3. **Dedup** — Before final output, merge rows that share the same `FILE:LINE` and root cause. **Pass:** at most one `[FILE:LINE] ISSUE_TITLE` per distinct defect at that anchor. ## Usage 1. Load this skill when reviewing AI-generated code 2. **If the agent supports subagents**, dispatch one per detection category in parallel; **otherwise** work through the categories sequentially yourself, producing the same `[FILE:LINE] ISSUE_TITLE` findings. 3. Use reference files for detailed criteria and examples 4. Apply **Gates (reporting)** above, then emit findings as `[FILE:LINE] ISSUE_TITLE` ## When to Apply - Cleaning up code written by AI coding agents - Post-generation code review - Reducing code bloat from iterative AI generation - Identifying patterns that reduce maintainability
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.