react-doctor 0.0.34 → 0.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -3
- package/dist/cli.js +400 -161
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +124 -8
- package/dist/index.js.map +1 -1
- package/dist/react-doctor-plugin.d.ts.map +1 -1
- package/dist/react-doctor-plugin.js +1116 -17
- package/dist/react-doctor-plugin.js.map +1 -1
- package/dist/skills/react-doctor/SKILL.md +19 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -40,13 +40,15 @@ npx -y react-doctor@latest . --verbose
|
|
|
40
40
|
|
|
41
41
|
## Install for your coding agent
|
|
42
42
|
|
|
43
|
-
Teach your coding agent all 47+ React best practice rules:
|
|
43
|
+
Teach your coding agent all 47+ React best practice rules. Run this at your project root:
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
|
|
46
|
+
npx -y react-doctor@latest install
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
-
|
|
49
|
+
You'll be prompted to pick which detected agents to install for. Pass `--yes` to skip prompts and install for every detected agent.
|
|
50
|
+
|
|
51
|
+
Supports Claude Code, Codex, GitHub Copilot, Gemini CLI, Cursor, OpenCode, Factory Droid, and Pi.
|
|
50
52
|
|
|
51
53
|
## GitHub Actions
|
|
52
54
|
|