Skip to main content
ClaudeWave
Skill84 repo starsupdated today

react-doctor

React, Next.js, Vite, and React Native diagnostics workflow adapted from millionco/react-doctor for OMK. Use for React health checks, component/effect bugs, performance regressions, accessibility issues, dead code, and agent-generated React review.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/dmae97/open-multi-agent-kit /tmp/react-doctor && cp -r /tmp/react-doctor/templates/skills/agents/react-doctor ~/.claude/skills/react-doctor
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# react-doctor

Source basis: millionco/react-doctor at commit 8556b31d8e4e165f791db0aa60a6b038b18ec777. This OMK skill is a compact adaptation, not a vendored copy of upstream prompts or code.

## Use when

- Reviewing or debugging React, Next.js, Vite, Expo, or React Native code.
- A change touches hooks, effects, memoization, render paths, accessibility, security, or generated UI code.
- The user asks for a React health score or agent-written React audit.

## OMK workflow

1. Detect framework, package manager, React version, app routes, and existing lint/test/build scripts.
2. Read the smallest relevant component, hook, route, and test set. Check loading, error, empty, and responsive states.
3. Run existing local gates first: lint, typecheck, targeted tests, and build when available.
4. If external package execution is acceptable for the task, run React Doctor from the project root and capture its score/findings. Prefer diff mode for PR review.
5. Fix high-signal issues before suppressing rules. Use the narrowest config override when a warning is intentional.
6. Re-run the same diagnostics and include before/after score or finding count when available.

## Optional commands

```bash
npx -y react-doctor@latest .
npx -y react-doctor@latest --fail-on warning
```

## Output contract

Return:

- framework and package manager detected
- gates run and React Doctor result if run
- findings fixed vs intentionally deferred
- accessibility/performance/security notes
- remaining risks

## Guardrails

- Do not add broad ignores such as whole generated folders unless justified.
- Do not replace existing lint/test policy with React Doctor; use it as an extra signal.
- Do not run network/package-install commands in restricted environments without explicit user approval.
agentmemorySkill

Persistent memory, recall, session replay, and memory-governance workflow adapted from rohitg00/agentmemory for OMK. Use when setting up agent memory, deciding what to remember, importing/replaying sessions, reducing repeated context, or auditing memory safety.

andrej-karpathy-skillsSkill

Minimal, goal-driven, surgical coding workflow adapted from forrestchang/andrej-karpathy-skills for OMK. Use for coding, refactoring, debugging, and review tasks where assumptions, overengineering, or broad edits could cause regressions.

claude-for-legalSkill

Legal workflow drafting, triage, review, research planning, legal operations, law-student or clinic support, and legal AI governance adapted from Anthropic claude-for-legal. Use for commercial, privacy, product, corporate, employment, regulatory, AI governance, IP, litigation, legal-clinic, and law-student tasks. Draft-only; attorney review and current source verification required.

matt-pocock-skillsSkill

Real-engineering alignment, shared-language, TDD, diagnosis, and architecture-review workflow adapted from mattpocock/skills for OMK. Use before non-trivial implementation, ambiguous product work, debugging loops, test-first changes, or codebase architecture cleanup.

multicaSkill

Managed-agent teamwork, issue assignment, progress tracking, reusable-skill compounding, and handoff workflow adapted from multica-ai/multica for OMK. Use when coordinating multiple agents, converting work into agent-ready tasks, tracking blockers, or turning repeated solutions into skills.

omk-adaptorch-orchestration-reviewSkill

Review AdaptOrch, OMK, and similar DAG multi-agent orchestration frameworks. Use when assessing DAG node responsibility, dependency edges, worker write authority, fallback/retry/timeout/evidence gates, review/merge boundaries, or reproducible decision traces.

omk-agent-reach-websearchSkill

Optional read-only OMK web/social/video research workflow inspired by Panniantong/Agent-Reach. Use for web search, current social evidence, YouTube/Bilibili/Reddit/Twitter/X/RSS/GitHub public research, and Agent Reach availability checks without auto-installing or collecting credentials.

omk-backend-api-reviewSkill

Backend API review for NestJS, Express, FastAPI, database access, validation, auth, error handling, and API contracts.