pm-claude-skills 29.2.0 โ†’ 29.2.1

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
@@ -261,6 +261,13 @@ Most skill repos are a folder of prompts. This one is a **system** โ€” measured,
261
261
 
262
262
  ## ๐Ÿš€ Quick Install (2 minutes)
263
263
 
264
+ > **Not sure where to start?** Pick by what you want:
265
+ > - **Just try it (0 install):** open the **[live Playground](https://mohitagw15856.github.io/pm-claude-skills/)** and run any skill.
266
+ > - **Use it in Claude Code:** `npx pm-claude-skills add --agent claude` (or the `/plugin` route below).
267
+ > - **Have it in every session:** add the MCP server (one line, below).
268
+ >
269
+ > โš ๏ธ **You don't need `npm install pm-claude-skills`** โ€” it's a CLI, not a library, so there's nothing to import. Use `npx pm-claude-skills โ€ฆ` (it always runs the latest). `npm install` just downloads it and does nothing on its own.
270
+
264
271
  **With the [`skills`](https://github.com/vercel-labs/skills) CLI** (the open agent-skills installer that works across Claude Code, Cursor, Codex, OpenCode & 60+ agents) โ€” pick from all 232 interactively:
265
272
 
266
273
  ```bash
package/bin/cli.mjs CHANGED
@@ -154,6 +154,11 @@ function list() {
154
154
 
155
155
  const HELP = `pm-claude-skills โ€” install professional Agent Skills into any AI coding tool.
156
156
 
157
+ ๐Ÿ‘‹ New here? Two fast ways to start:
158
+ โ€ข No install โ€” try any skill in your browser: https://mohitagw15856.github.io/pm-claude-skills/
159
+ โ€ข In your editor โ€” run: npx pm-claude-skills add --agent claude
160
+ (This is a CLI, not a library โ€” you don't need \`npm install\`; \`npx โ€ฆ\` always runs the latest.)
161
+
157
162
  Usage:
158
163
  npx pm-claude-skills add --agent <claude|hermes|codex|openclaw|cursor|windsurf|aider> [--target <path>] [--link] [--dry-run]
159
164
  npx pm-claude-skills list
@@ -0,0 +1,37 @@
1
+ #!/usr/bin/env node
2
+ // Printed right after `npm i pm-claude-skills`, so a newcomer isn't left staring at
3
+ // `npm fund` wondering what to do. This package is a CLI, not a library โ€” there's
4
+ // nothing to import; you RUN it. Must never fail an install: everything is wrapped
5
+ // and it always exits 0.
6
+ try {
7
+ // Stay quiet in CI / non-interactive installs (e.g. this repo's own `npm ci`),
8
+ // where a marketing banner is just noise.
9
+ if (process.env.CI || !process.stdout.isTTY) process.exit(0);
10
+
11
+ const B = (s) => `\x1b[1m${s}\x1b[0m`;
12
+ const D = (s) => `\x1b[2m${s}\x1b[0m`;
13
+ const A = (s) => `\x1b[38;5;208m${s}\x1b[0m`; // accent
14
+ const lines = [
15
+ '',
16
+ A(' โœ… pm-claude-skills installed โ€” 232 professional Agent Skills.'),
17
+ '',
18
+ " This is a CLI, not a library โ€” nothing to import. Here's what to run:",
19
+ '',
20
+ ` ${B('npx pm-claude-skills list')} ${D('# browse the skills')}`,
21
+ ` ${B('npx pm-claude-skills add --agent claude')} ${D('# install into Claude Code')}`,
22
+ ` ${D(' # (or: cursor ยท codex ยท windsurf ยท aider ยท hermes)')}`,
23
+ '',
24
+ ` ${B('No install at all?')} Try any skill free in your browser:`,
25
+ ` ${A('https://mohitagw15856.github.io/pm-claude-skills/')}`,
26
+ '',
27
+ ` ${B('Want them in every Claude session?')} Add the MCP server:`,
28
+ ` ${B('claude mcp add pm-skills -- npx -y pm-claude-skills-mcp')}`,
29
+ '',
30
+ D(' Tip: you can skip `npm install` entirely โ€” `npx pm-claude-skills โ€ฆ` always runs the latest.'),
31
+ '',
32
+ ];
33
+ process.stdout.write(lines.join('\n') + '\n');
34
+ } catch {
35
+ /* never break an install over a banner */
36
+ }
37
+ process.exit(0);
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "pm-claude-skills",
3
- "version": "29.2.0",
3
+ "version": "29.2.1",
4
4
  "type": "module",
5
5
  "mcpName": "io.github.mohitagw15856/pm-claude-skills",
6
- "description": "206 professional Agent Skills (SKILL.md) + subagents + slash commands for Claude, ChatGPT, Gemini, Cursor, Codex & Hermes. Install into any AI coding tool with: npx pm-claude-skills add --agent <tool>.",
6
+ "description": "232 professional Agent Skills (SKILL.md) + subagents + slash commands for Claude, ChatGPT, Gemini, Cursor, Codex & Hermes. It's a CLI, not a library: run `npx pm-claude-skills add --agent <tool>` to install into your AI tool โ€” no `npm install` needed. Or try any skill free at https://mohitagw15856.github.io/pm-claude-skills/",
7
7
  "keywords": [
8
8
  "claude",
9
9
  "claude-code",
@@ -54,6 +54,7 @@
54
54
  "workflows.json"
55
55
  ],
56
56
  "scripts": {
57
+ "postinstall": "node bin/postinstall.mjs",
57
58
  "new-skill": "node scripts/new-skill.mjs",
58
59
  "skillcheck": "node scripts/skillcheck.mjs",
59
60
  "build:exports": "node scripts/build-exports.mjs",