caplets 0.17.5 → 0.17.6
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/README.md +1 -1
- package/dist/index.js +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -570,8 +570,8 @@ This repository includes polished working examples under [`caplets/`](caplets/):
|
|
|
570
570
|
- `deepwiki`: Repository-focused documentation and architecture context through DeepWiki MCP.
|
|
571
571
|
- `sourcegraph`: Cross-repository code search and navigation through Sourcegraph MCP.
|
|
572
572
|
- `playwright`: Headless browser automation for frontend inspection and testing through Playwright MCP.
|
|
573
|
+
- `lsp`: Language Server Protocol-backed code intelligence through `language-server-mcp`.
|
|
573
574
|
- `coding-agent-toolkit`: A CapletSet that bundles high-value coding-agent examples; source children are symlinks to canonical top-level examples and installed copies are materialized as self-contained files/directories.
|
|
574
|
-
- `github-cli`: Pre-existing secondary read-oriented GitHub workflows through the `gh` CLI; prefer the canonical `github` MCP example for the polished GitHub integration.
|
|
575
575
|
|
|
576
576
|
GraphQL is intentionally skipped in this showcase batch so the examples can focus on HTTP,
|
|
577
577
|
OpenAPI, MCP, CLI, and CapletSet coverage without duplicating GitHub or GitLab surfaces.
|
package/dist/index.js
CHANGED
|
@@ -60129,7 +60129,7 @@ const EMPTY_COMPLETION_RESULT = { completion: {
|
|
|
60129
60129
|
values: [],
|
|
60130
60130
|
hasMore: false
|
|
60131
60131
|
} };
|
|
60132
|
-
var version$1 = "0.18.
|
|
60132
|
+
var version$1 = "0.18.6";
|
|
60133
60133
|
var CapletsMcpSession = class {
|
|
60134
60134
|
engine;
|
|
60135
60135
|
server;
|
|
@@ -69403,7 +69403,7 @@ function writeAddResult(writeOut, label, result) {
|
|
|
69403
69403
|
}
|
|
69404
69404
|
//#endregion
|
|
69405
69405
|
//#region package.json
|
|
69406
|
-
var version = "0.17.
|
|
69406
|
+
var version = "0.17.6";
|
|
69407
69407
|
//#endregion
|
|
69408
69408
|
//#region src/index.ts
|
|
69409
69409
|
async function main() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "caplets",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.6",
|
|
4
4
|
"description": "Progressive disclosure gateway CLI for MCP servers and native Caplets adapters.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"caplets",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
37
|
-
"@caplets/core": "0.18.
|
|
37
|
+
"@caplets/core": "0.18.6"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/node": "^25.9.1",
|
|
41
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
41
|
+
"@typescript/native-preview": "7.0.0-dev.20260526.1",
|
|
42
42
|
"rolldown": "^1.0.2",
|
|
43
43
|
"typescript": "^6.0.3",
|
|
44
44
|
"vitest": "^4.1.7"
|