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 CHANGED
@@ -330,11 +330,28 @@ New contributors run `npx skills install` to restore all locked skills.
330
330
 
331
331
  ---
332
332
 
333
- ## Compatibility
333
+ ## Multi-Runtime Support
334
334
 
335
- Works with any AI agent that supports the [Agent Skills standard](https://agentskills.io/specification):
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
- Claude Code, Cursor, GitHub Copilot, Windsurf, Cline, CodeBuddy, Aider, Continue, OpenCode, Zed, and [30+ more](https://github.com/vercel-labs/skills#supported-agents).
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "po-skills",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
4
4
  "description": "Product Owner agent skills for Azure DevOps. Reads documents and creates full backlogs automatically.",
5
5
  "bin": {
6
6
  "po-skills": "bin/install.js"