skill-port 0.1.0 → 0.1.2
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 +10 -0
- package/package.json +10 -2
package/README.md
CHANGED
|
@@ -120,6 +120,16 @@ npm run test:e2e:live
|
|
|
120
120
|
|
|
121
121
|
`test:e2e:live` is optional and requires network access plus `SKILL_PORT_LIVE_E2E=1`.
|
|
122
122
|
|
|
123
|
+
## Release
|
|
124
|
+
|
|
125
|
+
- First publish is done manually with `npm publish --access public`.
|
|
126
|
+
- Ongoing publishes are automated from GitHub Releases via [`.github/workflows/publish.yml`](./.github/workflows/publish.yml).
|
|
127
|
+
- In npm package settings, add a Trusted Publisher for:
|
|
128
|
+
- provider: GitHub Actions
|
|
129
|
+
- repository: `lu-zhengda/skill-port`
|
|
130
|
+
- workflow file name: `publish.yml` (filename only, not full path)
|
|
131
|
+
- environment: `release`
|
|
132
|
+
|
|
123
133
|
## Provider Study
|
|
124
134
|
|
|
125
135
|
See [`docs/provider-study.md`](docs/provider-study.md) for the March 8, 2026 compatibility baseline and field matrix.
|
package/package.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skill-port",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Convert AI coding skills across OpenAI/Codex, Claude Code, and Cursor Skills formats.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
"bin": {
|
|
10
|
-
"skill-port": "
|
|
10
|
+
"skill-port": "dist/cli.js"
|
|
11
11
|
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/lu-zhengda/skill-port.git"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/lu-zhengda/skill-port/issues"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://github.com/lu-zhengda/skill-port#readme",
|
|
12
20
|
"files": [
|
|
13
21
|
"dist",
|
|
14
22
|
"README.md",
|