@supatent/skills 0.1.0 → 0.2.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 +43 -0
- package/bin/install.mjs +0 -0
- package/package.json +6 -6
package/README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# @supatent/skills
|
|
2
|
+
|
|
3
|
+
Claude Code content authoring skills for [Supatent CMS](https://supatent.ai).
|
|
4
|
+
|
|
5
|
+
## What this does
|
|
6
|
+
|
|
7
|
+
Installs AI-powered content authoring skills into your Claude Code environment. Once installed, Claude Code can create and manage CMS content through natural conversation — blog posts, landing pages, and more.
|
|
8
|
+
|
|
9
|
+
## Quick start
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx supatent-skills
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
This copies skill files to `.claude/skills/supatent/` in your project. Then use `/supatent:core` in Claude Code to get started.
|
|
16
|
+
|
|
17
|
+
## Included skills
|
|
18
|
+
|
|
19
|
+
| Skill | Command | Description |
|
|
20
|
+
|-------|---------|-------------|
|
|
21
|
+
| Core | `/supatent:core` | Schema management, content operations, validation |
|
|
22
|
+
| Blog | `/supatent:blog` | Create and edit blog posts with structured fields |
|
|
23
|
+
| Landing | `/supatent:landing` | Build landing pages with configurable sections |
|
|
24
|
+
|
|
25
|
+
## Updating
|
|
26
|
+
|
|
27
|
+
Run `npx supatent-skills` again to update. The installer tracks checksums — files you've manually edited won't be overwritten without confirmation.
|
|
28
|
+
|
|
29
|
+
Use `--force` to skip confirmation prompts:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npx supatent-skills --force
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Requirements
|
|
36
|
+
|
|
37
|
+
- Node.js >= 20
|
|
38
|
+
- A Supatent CMS project with `@supatent/cli` configured
|
|
39
|
+
- Claude Code
|
|
40
|
+
|
|
41
|
+
## License
|
|
42
|
+
|
|
43
|
+
MIT
|
package/bin/install.mjs
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supatent/skills",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Claude Code content authoring skills for Supatent CMS",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -10,10 +10,6 @@
|
|
|
10
10
|
"bin",
|
|
11
11
|
"skills"
|
|
12
12
|
],
|
|
13
|
-
"scripts": {
|
|
14
|
-
"test": "vitest run",
|
|
15
|
-
"lint": "eslint bin/"
|
|
16
|
-
},
|
|
17
13
|
"devDependencies": {
|
|
18
14
|
"eslint": "^9.16.0",
|
|
19
15
|
"vitest": "^2.0.0"
|
|
@@ -39,5 +35,9 @@
|
|
|
39
35
|
"publishConfig": {
|
|
40
36
|
"access": "public",
|
|
41
37
|
"registry": "https://registry.npmjs.org/"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"test": "vitest run",
|
|
41
|
+
"lint": "eslint bin/"
|
|
42
42
|
}
|
|
43
|
-
}
|
|
43
|
+
}
|