@skillsmith/mcp-server 0.4.9 → 0.4.11
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/CHANGELOG.md +16 -6
- package/dist/.tsbuildinfo +1 -1
- package/dist/src/__tests__/get-skill.api-path.test.d.ts +10 -0
- package/dist/src/__tests__/get-skill.api-path.test.d.ts.map +1 -0
- package/dist/src/__tests__/get-skill.api-path.test.js +189 -0
- package/dist/src/__tests__/get-skill.api-path.test.js.map +1 -0
- package/dist/src/__tests__/test-utils.d.ts +25 -0
- package/dist/src/__tests__/test-utils.d.ts.map +1 -1
- package/dist/src/__tests__/test-utils.js +45 -0
- package/dist/src/__tests__/test-utils.js.map +1 -1
- package/dist/src/__tests__/utils/validation.test.js +32 -1
- package/dist/src/__tests__/utils/validation.test.js.map +1 -1
- package/dist/src/index.js +1 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/tools/analytics.d.ts +8 -8
- package/dist/src/tools/audit-tools.d.ts +6 -6
- package/dist/src/tools/compliance-tools.d.ts +2 -2
- package/dist/src/tools/get-skill.d.ts.map +1 -1
- package/dist/src/tools/get-skill.js +29 -2
- package/dist/src/tools/get-skill.js.map +1 -1
- package/dist/src/tools/integration-tools.d.ts +8 -8
- package/dist/src/tools/publish.types.d.ts +2 -2
- package/dist/src/tools/rbac-tools.d.ts +4 -4
- package/dist/src/tools/recommend.types.d.ts +3 -3
- package/dist/src/tools/registry-tools.d.ts +6 -6
- package/dist/src/tools/skill-diff.d.ts +2 -2
- package/dist/src/tools/sso-tools.d.ts +2 -2
- package/dist/src/tools/suggest.d.ts +4 -4
- package/dist/src/tools/team-workspace.d.ts +4 -4
- package/dist/src/tools/uninstall.d.ts +1 -1
- package/dist/src/utils/validation.d.ts +24 -0
- package/dist/src/utils/validation.d.ts.map +1 -1
- package/dist/src/utils/validation.js +38 -0
- package/dist/src/utils/validation.js.map +1 -1
- package/package.json +2 -2
- package/server.json +7 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,19 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@skillsmith/mcp-server` are documented here.
|
|
4
4
|
|
|
5
|
-
## v0.4.
|
|
5
|
+
## v0.4.11
|
|
6
6
|
|
|
7
7
|
- Version bump
|
|
8
8
|
|
|
9
|
-
## v0.4.
|
|
9
|
+
## v0.4.10
|
|
10
10
|
|
|
11
|
-
- **
|
|
12
|
-
- **
|
|
13
|
-
- **Docs**: SMI-4122/4123 sync — mcp-server README + CHANGELOGs (#514)
|
|
11
|
+
- **Fix**: restore category/security/repo in skill detail view (SMI-4240) (#583)
|
|
12
|
+
- **Other**: SMI-4190: release cadence docs — ADR-114 + CHANGELOG backfill + CONTRIBUTING (#552)
|
|
14
13
|
|
|
15
14
|
## [Unreleased]
|
|
16
15
|
|
|
17
|
-
- **
|
|
16
|
+
- **Feature**: SMI-4124 `skill_pack_audit` trigger-quality + namespace collision checks (PR #505).
|
|
17
|
+
|
|
18
|
+
## v0.4.9
|
|
19
|
+
|
|
20
|
+
- **Feature**: SMI-4183 emit `webhook:subscription_tier_changed` audit events from subscription edge function (#538).
|
|
21
|
+
|
|
22
|
+
## v0.4.8
|
|
23
|
+
|
|
24
|
+
- **Docs**: bump internal submodule for SMI-4181/4184 GSC audit plan (#539).
|
|
25
|
+
- **Docs**: sync website api.astro + mcp-server CHANGELOG (SMI-4140, SMI-4142) (#518).
|
|
26
|
+
- **Docs**: SMI-4122/4123 sync — mcp-server README + CHANGELOGs (#514).
|
|
27
|
+
- **Fixed**: `webhook_configure` and `api_key_manage` backing tables restored (SMI-4123, PRs #501/#503/#504). In preview until production migration (SMI-4135).
|
|
18
28
|
|
|
19
29
|
## v0.4.7
|
|
20
30
|
|