@kryptosai/mcp-observatory 0.25.1 → 0.26.1
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/CLONED_THIS.md +38 -0
- package/COMMERCIAL.md +4 -3
- package/README.md +11 -2
- package/dist/src/commands/diff.js +6 -1
- package/dist/src/commands/diff.js.map +1 -1
- package/dist/src/commands/enterprise-report.d.ts +1 -0
- package/dist/src/commands/enterprise-report.js +67 -1
- package/dist/src/commands/enterprise-report.js.map +1 -1
- package/dist/src/commands/helpers.d.ts +9 -0
- package/dist/src/commands/helpers.js +27 -0
- package/dist/src/commands/helpers.js.map +1 -1
- package/dist/src/commands/init-ci.d.ts +14 -0
- package/dist/src/commands/init-ci.js +156 -2
- package/dist/src/commands/init-ci.js.map +1 -1
- package/dist/src/commands/lock.js +7 -1
- package/dist/src/commands/lock.js.map +1 -1
- package/dist/src/commands/scan.js +8 -1
- package/dist/src/commands/scan.js.map +1 -1
- package/dist/src/commands/score.js +7 -1
- package/dist/src/commands/score.js.map +1 -1
- package/dist/src/commands/test.js +7 -20
- package/dist/src/commands/test.js.map +1 -1
- package/dist/src/telemetry.d.ts +5 -0
- package/dist/src/telemetry.js.map +1 -1
- package/docs/certification-distribution.md +1 -1
- package/docs/certification-pr-campaign.md +68 -0
- package/docs/clone-to-ci-campaign.md +62 -0
- package/docs/ecosystem-distribution-kit.md +79 -0
- package/docs/mcp-safety-field-report-2026-06.md +55 -0
- package/docs/metrics-dashboard.md +1 -1
- package/docs/project-case-study.md +1 -1
- package/docs/proof.md +2 -2
- package/docs/setup-ci-doctor.md +31 -0
- package/package.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kryptosai/mcp-observatory",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.26.1",
|
|
4
4
|
"description": "The CI and security gate for MCP servers before agents depend on them.",
|
|
5
5
|
"mcpName": "io.github.KryptosAI/mcp-observatory",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"files": [
|
|
32
32
|
"dist/src",
|
|
33
33
|
"README.md",
|
|
34
|
+
"CLONED_THIS.md",
|
|
34
35
|
"COMMERCIAL.md",
|
|
35
36
|
"PRIVACY.md",
|
|
36
37
|
"TERMS.md",
|