Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# AGENTS.md

## Skills

A skill is a set of local instructions stored in a `SKILL.md` file.

### Available skills

- react-devtools: React DevTools CLI for AI agents. Use when debugging a React or React Native app at runtime, inspecting component props/state/hooks, diagnosing re-renders, or profiling performance. (file: `packages/agent-react-devtools/skills/react-devtools/SKILL.md`)

### How to use skills

- Trigger rule: Use `react-devtools` when the task is React runtime debugging or performance analysis.
- Invocation: Read `packages/agent-react-devtools/skills/react-devtools/SKILL.md` and follow its core workflow and command guidance.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,15 @@ You can also install via the Claude Code plugin marketplace:
/plugin install agent-react-devtools@piotrski
```

### Codex

Codex discovers project skills from `AGENTS.md`. This repo includes one at the root that registers:

- `packages/agent-react-devtools/skills/react-devtools/SKILL.md`

### Manual setup

Alternatively, add something like this to your project's `CLAUDE.md` (or equivalent agent instructions):
If your assistant does not auto-load skills, add something like this to your project's `AGENTS.md`, `CLAUDE.md`, or equivalent agent instructions:

```markdown
## React Debugging
Expand Down