caplets 0.17.4 → 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 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
@@ -13892,7 +13892,7 @@ function readBestEffortConfigInput(path, kind, warnings, transform) {
13892
13892
  warnings.push({
13893
13893
  kind,
13894
13894
  path,
13895
- message: errorMessage(error)
13895
+ message: errorMessage$2(error)
13896
13896
  });
13897
13897
  return;
13898
13898
  }
@@ -13910,7 +13910,7 @@ function loadBestEffortCapletFiles(root, kind, warnings) {
13910
13910
  paths: result.paths
13911
13911
  };
13912
13912
  }
13913
- function errorMessage(error) {
13913
+ function errorMessage$2(error) {
13914
13914
  return error instanceof Error ? error.message : String(error);
13915
13915
  }
13916
13916
  function loadIsolatedConfig(options) {
@@ -60129,7 +60129,7 @@ const EMPTY_COMPLETION_RESULT = { completion: {
60129
60129
  values: [],
60130
60130
  hasMore: false
60131
60131
  } };
60132
- var version$1 = "0.18.4";
60132
+ var version$1 = "0.18.6";
60133
60133
  var CapletsMcpSession = class {
60134
60134
  engine;
60135
60135
  server;
@@ -69403,15 +69403,18 @@ function writeAddResult(writeOut, label, result) {
69403
69403
  }
69404
69404
  //#endregion
69405
69405
  //#region package.json
69406
- var version = "0.17.4";
69406
+ var version = "0.17.6";
69407
69407
  //#endregion
69408
69408
  //#region src/index.ts
69409
69409
  async function main() {
69410
69410
  await runCli(process.argv.slice(2), { version });
69411
69411
  }
69412
69412
  main().catch((error) => {
69413
- console.error(error);
69413
+ process.stderr.write(`${errorMessage(error)}\n`);
69414
69414
  process.exit(1);
69415
69415
  });
69416
+ function errorMessage(error) {
69417
+ return error instanceof Error ? error.message : String(error);
69418
+ }
69416
69419
  //#endregion
69417
69420
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "caplets",
3
- "version": "0.17.4",
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.4"
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.20260523.1",
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"