@linkyourskill/mcp-client 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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +12 -1
  3. package/package.json +4 -3
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 LinkYourSkill
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -110,6 +110,17 @@ npm run typecheck
110
110
  End-to-end coverage against a live stack lives in the root Playwright suite
111
111
  (`tests/e2e/sdk-client.spec.ts`).
112
112
 
113
+ ## Releasing
114
+
115
+ Publishing is automated. Create a GitHub Release tagged `sdk-v<version>` and CI
116
+ (`.github/workflows/publish-sdk.yml`) builds, tests, and publishes that version to
117
+ npm via Trusted Publishing (OIDC) with provenance — no token needed, no local
118
+ `npm version` bump required:
119
+
120
+ ```bash
121
+ gh release create sdk-v0.1.1 --title "mcp-client 0.1.1" --generate-notes
122
+ ```
123
+
113
124
  ## License
114
125
 
115
- UNLICENSED © LinkYourSkill. Internal/partner use per agreement.
126
+ [MIT](./LICENSE) © LinkYourSkill
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linkyourskill/mcp-client",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Official TypeScript/Node.js SDK for the LinkYourSkill agent API — search Skillanbieter, prepare orders, and track status from AI agents.",
5
5
  "keywords": [
6
6
  "linkyourskill",
@@ -16,7 +16,7 @@
16
16
  "url": "git+https://github.com/linkyourskill-ai/linkyourskill.ai.git",
17
17
  "directory": "sdk"
18
18
  },
19
- "license": "UNLICENSED",
19
+ "license": "MIT",
20
20
  "type": "module",
21
21
  "main": "./dist/index.js",
22
22
  "module": "./dist/index.js",
@@ -29,7 +29,8 @@
29
29
  },
30
30
  "files": [
31
31
  "dist",
32
- "README.md"
32
+ "README.md",
33
+ "LICENSE"
33
34
  ],
34
35
  "engines": {
35
36
  "node": ">=18"