po-skills 2.0.0 → 2.1.0
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 +20 -3
- package/bin/install.js +5 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -330,11 +330,28 @@ New contributors run `npx skills install` to restore all locked skills.
|
|
|
330
330
|
|
|
331
331
|
---
|
|
332
332
|
|
|
333
|
-
##
|
|
333
|
+
## Multi-Runtime Support
|
|
334
334
|
|
|
335
|
-
|
|
335
|
+
po-skills works natively with all major AI coding agents. The installer creates the correct config files for each runtime automatically:
|
|
336
336
|
|
|
337
|
-
|
|
337
|
+
| Runtime | Config Location | Format |
|
|
338
|
+
|---------|----------------|--------|
|
|
339
|
+
| **Claude Code** | `~/.claude/skills/<name>/` | `SKILL.md` (native) |
|
|
340
|
+
| **Cursor** | `.cursor/rules/po-skills.mdc` | MDC rules file |
|
|
341
|
+
| **GitHub Copilot** | `.github/copilot-instructions.md` | Project instructions |
|
|
342
|
+
| **Windsurf** | `.windsurf/rules/po-skills.md` | Rules file |
|
|
343
|
+
| **Cline** | `~/.cline/skills/<name>/` | `SKILL.md` (symlink) |
|
|
344
|
+
|
|
345
|
+
Install for a specific runtime:
|
|
346
|
+
```bash
|
|
347
|
+
npx po-skills --agent=cursor
|
|
348
|
+
npx po-skills --agent=copilot
|
|
349
|
+
npx po-skills --agent=windsurf
|
|
350
|
+
npx po-skills --agent=cline
|
|
351
|
+
npx po-skills --agent=all # all runtimes at once
|
|
352
|
+
```
|
|
353
|
+
|
|
354
|
+
Also compatible with any agent that supports the [Agent Skills standard](https://agentskills.io/specification): CodeBuddy, Aider, Continue, OpenCode, Zed, and [30+ more](https://github.com/vercel-labs/skills#supported-agents).
|
|
338
355
|
|
|
339
356
|
---
|
|
340
357
|
|
package/bin/install.js
CHANGED
|
@@ -60,6 +60,11 @@ const runtimes = {
|
|
|
60
60
|
name: 'Windsurf',
|
|
61
61
|
global: path.join(home, '.windsurf', 'skills'),
|
|
62
62
|
local: path.join(process.cwd(), '.windsurf', 'skills')
|
|
63
|
+
},
|
|
64
|
+
'cline': {
|
|
65
|
+
name: 'Cline',
|
|
66
|
+
global: path.join(home, '.cline', 'skills'),
|
|
67
|
+
local: path.join(process.cwd(), '.cline', 'skills')
|
|
63
68
|
}
|
|
64
69
|
};
|
|
65
70
|
|