identify

Identity System (Detection)

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "identify" with this command: npx skills add majiayu000/claude-skill-registry/majiayu000-claude-skill-registry-identify

Identity System (Detection)

Purpose: Surface problems, friction, and bottlenecks before they compound. When to trigger: Audits, debugging, pre-work analysis, or when something feels off.

Detection Categories

  1. Code Health

Run these checks:

  • Type errors: npx tsc --noEmit

  • Build errors: npm run build

  • Lint issues: Check for warnings

  • Unused imports/variables

  • Circular dependencies

  1. Performance Issues

Look for:

  • Slow database queries (check Supabase logs)

  • Large bundle sizes

  • Unnecessary re-renders

  • N+1 query patterns

  • Missing indexes

  1. User Experience Friction

Identify:

  • Error states not handled gracefully

  • Loading states missing

  • Confusing user flows

  • Edge cases not covered

  • Poor error messages

  1. Architecture Debt

Spot:

  • Duplicated logic across files

  • Inconsistent patterns

  • Missing or premature abstractions

  • Tightly coupled components

  • God components/functions

  1. Operational Gaps

Find:

  • Missing error tracking/logging

  • No observability into failures

  • Manual processes that should be automated

  • Missing environment variables

  • Insecure configurations

  1. Security Concerns

Check for:

  • Exposed secrets or credentials

  • Missing input validation

  • SQL injection vectors

  • XSS vulnerabilities

  • Missing authentication/authorization

Detection Process

Quick Scan (5 min)

Run type check

npx tsc --noEmit

Check for build errors

npm run build

Look for TODOs and FIXMEs

grep -r "TODO|FIXME|HACK|XXX" src/

Deep Scan (30 min)

  • Review recent git changes for introduced issues

  • Check Supabase logs for errors

  • Review component complexity

  • Check for missing error boundaries

  • Audit API route error handling

Output Requirements

Log all findings to .claude/issues-registry.md :

Issues Registry

Active Issues

IDCategorySeverityDescriptionLocationDetectedStatus
I-001Code HealthHighType error in auth flowsrc/lib/auth.ts:452026-01-01Open
I-002UX FrictionMediumNo loading state on submitsrc/components/Form.tsx2026-01-01Open

Severity Levels

  • Critical: Blocks users or causes data loss
  • High: Major functionality broken or security issue
  • Medium: Degraded experience or tech debt
  • Low: Minor polish or optimization

Resolved Issues

(Move issues here when fixed, note resolution)

Rules

  • Document everything found - Even minor issues, log them

  • Severity matters - Be honest about impact level

  • Location is key - Include file:line for code issues

  • Don't fix while identifying - Separate detection from resolution

  • Update regularly - Keep the registry current

Transition

After identification:

  • Multiple issues found → Proceed to Priority System

  • Single clear issue → Proceed to Execution System

  • Blocked by confusion → Return to Clarity System

This is System 2 of 5: Clarity → Identity → Priority → Execution → Reset

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

frontend-design

No summary provided by upstream source.

Repository SourceNeeds Review
General

ui-ux-pro-max

No summary provided by upstream source.

Repository SourceNeeds Review
General

planning

No summary provided by upstream source.

Repository SourceNeeds Review
General

sequential-thinking

No summary provided by upstream source.

Repository SourceNeeds Review