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
9 changes: 6 additions & 3 deletions DOC_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,12 @@ Install them into whatever assistant you use, with one command:
npx skills add https://github.com/melonjs/melonJS/tree/master/packages/melonjs/skills
```

That writes each agent's own convention — `.claude/skills/`, `.agents/skills/`,
`.windsurf/skills/` and around seventy others — so there is nothing to place by
hand. It installs from `master`; swap that for a release tag in the URL to pin.
It installs one copy of each skill under `.agents/skills/<skill-name>`, then
symlinks that copy into every assistant's own directory, so
`.claude/skills/melonjs` points back at `.agents/skills/melonjs` and there is
nothing to place by hand. It reports the assistants it covers as it runs (77 of
them at the time of writing). It installs from `master`; swap that for a release
tag in the URL to pin.

They are plain Markdown — readable by any agent, or by you.

Expand Down
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,10 +341,12 @@ Install them into whatever assistant you use, with one command :
npx skills add https://github.com/melonjs/melonJS/tree/master/packages/melonjs/skills
```

It detects the assistants in your project and writes each one's own convention
— `.claude/skills/`, `.agents/skills/`, `.windsurf/skills/` and around seventy
others — so there is nothing to place by hand. Add `-a claude-code -a cursor`
to target specific ones.
It detects the assistants in your project and installs one copy of each skill
under `.agents/skills/<skill-name>`, then symlinks that copy into every
assistant's own directory, so `.claude/skills/melonjs` points back at
`.agents/skills/melonjs` and there is nothing to place by hand. It reports the
assistants it covers as it runs (77 of them at the time of writing). Add
`-a claude-code -a cursor` to target specific ones.

The set includes an `AGENTS.md` for anything following that convention (Codex,
Cursor, Gemini CLI); GitHub Copilot reads the same content from
Expand Down
Loading