@its-thepoe/skills 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +27 -0
  2. package/package.json +8 -7
package/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # @its-thepoe/skills
2
+
3
+ CLI to **install**, **sync**, **check**, and **remove** [@its-thepoe](https://www.npmjs.com/search?q=scope%3Aits-thepoe) Agent Skills into local directories used by **Cursor**, **Claude Code**, **OpenCode**, and **Windsurf**.
4
+
5
+ ## Install & use
6
+
7
+ ```bash
8
+ npx @its-thepoe/skills@latest install --all
9
+ npx @its-thepoe/skills@latest sync --all
10
+ npx @its-thepoe/skills@latest check
11
+ ```
12
+
13
+ One skill:
14
+
15
+ ```bash
16
+ npx @its-thepoe/skills@latest install alt-text
17
+ ```
18
+
19
+ Options: `--dry-run`, `--only=cursor,claude`, `--strategy copy` (if symlinks fail), `remove <name>` / `remove --all`.
20
+
21
+ ## Docs
22
+
23
+ - [Full documentation on GitHub](https://github.com/its-thepoe/skills)
24
+
25
+ ## License
26
+
27
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@its-thepoe/skills",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Orchestrator CLI to install, check, sync, and remove @its-thepoe Agent Skills (Cursor, Claude Code, OpenCode, Windsurf).",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -18,14 +18,15 @@
18
18
  "bin",
19
19
  "lib",
20
20
  "skills.manifest.json",
21
+ "README.md",
21
22
  "package.json"
22
23
  ],
23
24
  "dependencies": {
24
- "@its-thepoe/alt-text": "1.0.0",
25
- "@its-thepoe/design-and-refine": "1.0.0",
26
- "@its-thepoe/design-engineering": "1.0.0",
27
- "@its-thepoe/design-motion-principles": "1.0.0",
28
- "@its-thepoe/family-taste": "1.0.0",
29
- "@its-thepoe/write-a-skill": "1.0.0"
25
+ "@its-thepoe/alt-text": "1.0.1",
26
+ "@its-thepoe/design-and-refine": "1.0.1",
27
+ "@its-thepoe/design-engineering": "1.0.1",
28
+ "@its-thepoe/design-motion-principles": "1.0.1",
29
+ "@its-thepoe/family-taste": "1.0.1",
30
+ "@its-thepoe/write-a-skill": "1.0.1"
30
31
  }
31
32
  }