agent-skills-ts-sdk 2.3.2 → 2.3.3
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/API.md +217 -0
- package/CHANGELOG.md +29 -0
- package/CODE_OF_CONDUCT.md +25 -0
- package/CONTRIBUTING.md +34 -0
- package/LICENSE +2 -2
- package/PRIVACY.md +15 -0
- package/README.md +38 -23
- package/SECURITY.md +13 -0
- package/SPECIFICATION.md +257 -0
- package/SUPPORT.md +24 -0
- package/dist/index.d.ts +41 -40
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6528 -5893
- package/dist/index.js.map +1 -1
- package/package.json +51 -17
package/package.json
CHANGED
|
@@ -1,22 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-skills-ts-sdk",
|
|
3
|
-
"version": "2.3.
|
|
4
|
-
"private": false,
|
|
3
|
+
"version": "2.3.3",
|
|
5
4
|
"description": "TypeScript parser, validator, prompt, and patch utilities for the AgentSkills specification",
|
|
6
|
-
"
|
|
5
|
+
"keywords": [
|
|
6
|
+
"agent-skills",
|
|
7
|
+
"agentskills",
|
|
8
|
+
"parser",
|
|
9
|
+
"skills",
|
|
10
|
+
"typescript",
|
|
11
|
+
"validator"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://github.com/WebMCP-org/agent-skills-ts-sdk#readme",
|
|
7
14
|
"bugs": {
|
|
8
|
-
"url": "https://github.com/WebMCP-org/
|
|
15
|
+
"url": "https://github.com/WebMCP-org/agent-skills-ts-sdk/issues"
|
|
9
16
|
},
|
|
10
17
|
"license": "MIT",
|
|
11
18
|
"repository": {
|
|
12
19
|
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/WebMCP-org/
|
|
14
|
-
"directory": "packages/agent-skills"
|
|
20
|
+
"url": "git+https://github.com/WebMCP-org/agent-skills-ts-sdk.git"
|
|
15
21
|
},
|
|
16
22
|
"files": [
|
|
17
|
-
"
|
|
23
|
+
"API.md",
|
|
24
|
+
"CHANGELOG.md",
|
|
25
|
+
"CODE_OF_CONDUCT.md",
|
|
26
|
+
"CONTRIBUTING.md",
|
|
27
|
+
"dist",
|
|
28
|
+
"LICENSE",
|
|
29
|
+
"PRIVACY.md",
|
|
30
|
+
"README.md",
|
|
31
|
+
"SECURITY.md",
|
|
32
|
+
"SPECIFICATION.md",
|
|
33
|
+
"SUPPORT.md"
|
|
18
34
|
],
|
|
19
35
|
"type": "module",
|
|
36
|
+
"sideEffects": false,
|
|
20
37
|
"main": "./dist/index.js",
|
|
21
38
|
"module": "./dist/index.js",
|
|
22
39
|
"types": "./dist/index.d.ts",
|
|
@@ -25,32 +42,49 @@
|
|
|
25
42
|
"types": "./dist/index.d.ts",
|
|
26
43
|
"import": "./dist/index.js",
|
|
27
44
|
"default": "./dist/index.js"
|
|
28
|
-
}
|
|
45
|
+
},
|
|
46
|
+
"./package.json": "./package.json"
|
|
29
47
|
},
|
|
30
48
|
"publishConfig": {
|
|
31
49
|
"access": "public",
|
|
32
50
|
"registry": "https://registry.npmjs.org/"
|
|
33
51
|
},
|
|
34
52
|
"dependencies": {
|
|
35
|
-
"yaml": "^2.8.
|
|
53
|
+
"yaml": "^2.8.2"
|
|
36
54
|
},
|
|
37
55
|
"devDependencies": {
|
|
38
|
-
"@
|
|
56
|
+
"@changesets/cli": "2.29.8",
|
|
57
|
+
"@types/node": "^22.17.2",
|
|
39
58
|
"@vitest/coverage-v8": "^4.1.0",
|
|
59
|
+
"fallow": "2.70.0",
|
|
60
|
+
"opensrc": "^0.7.2",
|
|
61
|
+
"publint": "0.3.20",
|
|
40
62
|
"typescript": "^5.8.3",
|
|
41
|
-
"vite-plus": "
|
|
42
|
-
"vitest": "npm:@voidzero-dev/vite-plus-test@
|
|
63
|
+
"vite-plus": "0.1.20",
|
|
64
|
+
"vitest": "npm:@voidzero-dev/vite-plus-test@0.1.20"
|
|
43
65
|
},
|
|
44
66
|
"engines": {
|
|
45
67
|
"node": ">=22.12"
|
|
46
68
|
},
|
|
47
69
|
"scripts": {
|
|
48
70
|
"build": "vp pack",
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
71
|
+
"dev": "vp pack --watch",
|
|
72
|
+
"playground:build": "cd playground && vp build",
|
|
73
|
+
"playground:dev": "pnpm --dir playground dev",
|
|
74
|
+
"playground:worker:dry-run": "cd playground && vp exec wrangler deploy --dry-run --config dist/agent_skills_ts_sdk_playground/wrangler.json",
|
|
75
|
+
"playground:preview": "pnpm --dir playground preview",
|
|
76
|
+
"test": "vp test",
|
|
77
|
+
"test:run": "vp test run",
|
|
78
|
+
"check": "vp check",
|
|
79
|
+
"reference:check": "node scripts/check-reference-drift.mjs --refresh",
|
|
80
|
+
"reference:update": "node scripts/check-reference-drift.mjs --refresh --update",
|
|
81
|
+
"typecheck": "tsc --noEmit",
|
|
52
82
|
"test:coverage": "vp test run --coverage",
|
|
53
|
-
"
|
|
54
|
-
"
|
|
83
|
+
"fallow:audit": "fallow audit --base origin/main --ci --fail-on-issues",
|
|
84
|
+
"validate:package": "vp run build && vp run verify:packed-files && publint && vp run verify:packed-consumer",
|
|
85
|
+
"verify:packed-files": "node scripts/verify-packed-files.mjs",
|
|
86
|
+
"verify:packed-consumer": "node scripts/verify-packed-consumer.mjs",
|
|
87
|
+
"changeset:version": "changeset version && vp install --no-frozen-lockfile && vp fmt",
|
|
88
|
+
"changeset:publish": "vp run validate:package && changeset publish"
|
|
55
89
|
}
|
|
56
90
|
}
|