@skillsmith/mcp-server 0.4.8 → 0.4.9
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 +11 -1
- package/README.md +3 -2
- package/dist/.tsbuildinfo +1 -1
- package/dist/src/index.js +1 -1
- package/dist/src/tools/install.d.ts.map +1 -1
- package/dist/src/tools/install.js +9 -1
- package/dist/src/tools/install.js.map +1 -1
- package/dist/src/tools/publish.types.d.ts +1 -1
- package/dist/src/tools/skill-pack-audit.d.ts +22 -1
- package/dist/src/tools/skill-pack-audit.d.ts.map +1 -1
- package/dist/src/tools/skill-pack-audit.helpers.d.ts +53 -0
- package/dist/src/tools/skill-pack-audit.helpers.d.ts.map +1 -0
- package/dist/src/tools/skill-pack-audit.helpers.js +181 -0
- package/dist/src/tools/skill-pack-audit.helpers.js.map +1 -0
- package/dist/src/tools/skill-pack-audit.js +122 -5
- package/dist/src/tools/skill-pack-audit.js.map +1 -1
- package/dist/src/tools/skill-pack-audit.types.d.ts +70 -0
- package/dist/src/tools/skill-pack-audit.types.d.ts.map +1 -0
- package/dist/src/tools/skill-pack-audit.types.js +8 -0
- package/dist/src/tools/skill-pack-audit.types.js.map +1 -0
- package/dist/src/tools/validate.helpers.d.ts.map +1 -1
- package/dist/src/tools/validate.helpers.js +15 -0
- package/dist/src/tools/validate.helpers.js.map +1 -1
- package/dist/tests/unit/skill-pack-audit.test.js +225 -0
- package/dist/tests/unit/skill-pack-audit.test.js.map +1 -1
- package/package.json +2 -2
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,10 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@skillsmith/mcp-server` are documented here.
|
|
4
4
|
|
|
5
|
-
## v0.4.
|
|
5
|
+
## v0.4.9
|
|
6
6
|
|
|
7
7
|
- Version bump
|
|
8
8
|
|
|
9
|
+
## v0.4.8
|
|
10
|
+
|
|
11
|
+
- **Docs**: bump internal submodule for SMI-4181/4184 GSC audit plan (#539)
|
|
12
|
+
- **Docs**: sync website api.astro + mcp-server CHANGELOG (SMI-4140, SMI-4142) (#518)
|
|
13
|
+
- **Docs**: SMI-4122/4123 sync — mcp-server README + CHANGELOGs (#514)
|
|
14
|
+
|
|
15
|
+
## [Unreleased]
|
|
16
|
+
|
|
17
|
+
- **Fixed**: `webhook_configure` and `api_key_manage` backing tables restored (SMI-4123). In preview until production migration (SMI-4135).
|
|
18
|
+
|
|
9
19
|
## v0.4.7
|
|
10
20
|
|
|
11
21
|
- **Fix: startup crash for new installs** — Bumped `@skillsmith/core` dependency floor from `^0.4.16` to `^0.4.17` to ensure `SkillInstallationService` export is available. Users with cached `core@0.4.16` saw a fatal `SyntaxError` on startup.
|
package/README.md
CHANGED
|
@@ -210,8 +210,9 @@ All tiers include:
|
|
|
210
210
|
| `rbac_manage` | Manage RBAC roles (create, list, get, delete) | Enterprise |
|
|
211
211
|
| `rbac_assign_role` | Assign or revoke roles for users | Enterprise |
|
|
212
212
|
| `rbac_create_policy` | Create and manage RBAC access policies | Enterprise |
|
|
213
|
-
| `webhook_configure` | Configure HMAC-SHA256 signed webhooks for skill events | Enterprise |
|
|
214
|
-
| `api_key_manage` | Manage API keys for programmatic access | Enterprise |
|
|
213
|
+
| `webhook_configure` | Configure HMAC-SHA256 signed webhooks for skill events (in preview — availability pending production migration) | Enterprise |
|
|
214
|
+
| `api_key_manage` | Manage API keys for programmatic access (in preview — availability pending production migration) | Enterprise |
|
|
215
|
+
<!-- preview-status tracked by SMI-4135 -->
|
|
215
216
|
| `compliance_report` | Generate SOC2, CycloneDX SBOM, or JSON compliance reports | Enterprise |
|
|
216
217
|
|
|
217
218
|
## Tool Parameters
|