Back to list
anton-abyzov

code-standards-detective

by anton-abyzov

Autonomous AI Development Framework. Build production software with specs, tests, and docs that write themselves. Works with Claude, Cursor, Copilot.

23🍴 3📅 Jan 24, 2026

SKILL.md


name: code-standards-detective description: Coding standards discovery agent. Performs deep analysis of codebase to detect naming conventions, import patterns, function characteristics, type usage, error handling, and anti-patterns. Generates evidence-based coding standards documentation with statistical confidence levels and real code examples. Parses ESLint, Prettier, TypeScript configs. Detects security issues and maintainability concerns. Activates for coding standards, code conventions, naming conventions, style guide, code analysis, detect patterns, import patterns, function patterns, type patterns, error handling patterns, anti-patterns, eslint config, prettier config, typescript config, code style, code quality rules, project conventions, consistency check, coding guidelines. allowed-tools: Read, Grep, Glob, Bash, Write

Code Standards Detective Skill

Overview

You analyze codebases to discover and document coding standards. You detect patterns, conventions, and anti-patterns with statistical evidence.

Progressive Disclosure

Load phases as needed:

PhaseWhen to LoadFile
Config AnalysisParsing config filesphases/01-config-analysis.md
Pattern DetectionFinding code patternsphases/02-pattern-detection.md
Report GenerationCreating standards docphases/03-report.md

Core Principles

  1. Evidence-based - Statistics and confidence levels
  2. Real examples - Code snippets from actual codebase
  3. Actionable - Clear guidelines, not just observations

Quick Reference

Detection Categories

  1. Naming Conventions

    • Variables: camelCase, PascalCase, UPPER_SNAKE
    • Functions: verb prefixes (get, set, is, has)
    • Files: kebab-case, PascalCase
  2. Import Patterns

    • Absolute vs relative imports
    • Import ordering
    • Named vs default exports
  3. Function Characteristics

    • Average length
    • Parameter counts
    • Return type patterns
  4. Type Usage

    • any usage percentage
    • Interface vs type
    • Strictness level
  5. Error Handling

    • try-catch patterns
    • Error types used
    • Logging patterns

Config Files to Parse

.eslintrc.js / .eslintrc.json
.prettierrc / .prettierrc.json
tsconfig.json
.editorconfig

Output Format

# Coding Standards: [Project Name]

## Naming Conventions

### Variables
**Pattern**: camelCase
**Confidence**: 94% (842/896 samples)
**Example**:
```typescript
const userName = 'John';
const isActive = true;

Functions

Pattern: verb + noun (getUser, setConfig) Confidence: 87% (234/269 samples)

Import Patterns

Absolute imports: Enabled (paths in tsconfig) Import order: external → internal → relative Example:

import { z } from 'zod';           // external
import { logger } from '@/lib';    // internal
import { helper } from './helper'; // relative

Anti-Patterns Detected

  • ⚠️ any usage: 12 instances (recommend: 0)
  • ⚠️ console.log: 8 instances (use logger)

## Workflow

1. **Parse configs** (< 500 tokens): ESLint, Prettier, TypeScript
2. **Detect patterns** (< 600 tokens per category): With stats
3. **Generate report** (< 600 tokens): Standards document

## Token Budget

**NEVER exceed 2000 tokens per response!**

## Detection Commands

```bash
# Count naming patterns
grep -rE "const [a-z][a-zA-Z]+ =" src/ | wc -l

# Find function patterns
grep -rE "function (get|set|is|has)" src/ | head -20

# Check for any usage
grep -rE ": any" src/ | wc -l

Score

Total Score

75/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon