@clickhouse/client-common 1.18.4-head.2f6fd6b.1 → 1.18.4-head.5cdcced.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/README.md CHANGED
@@ -105,6 +105,25 @@ See more examples in the [examples directory](./examples).
105
105
 
106
106
  See the [ClickHouse website](https://clickhouse.com/docs/integrations/javascript) for the full documentation.
107
107
 
108
+ ## AI Agent Skills
109
+
110
+ This repository contains agent skills for working with the client:
111
+
112
+ - `clickhouse-js-node-troubleshooting` — troubleshooting playbook for the Node.js client.
113
+
114
+ Install via CLI:
115
+
116
+ ```sh
117
+ # per project
118
+ npx skills add ClickHouse/clickhouse-js
119
+ # globally
120
+ npx skills add ClickHouse/clickhouse-js -g
121
+ ```
122
+
123
+ Or ask your agent to install it for you:
124
+
125
+ > install agent skills from ClickHouse/clickhouse-js
126
+
108
127
  ## Usage examples
109
128
 
110
129
  We have a wide range of [examples](./examples), aiming to cover various scenarios of client usage. The overview is available in the [examples README](https://github.com/ClickHouse/clickhouse-js/blob/main/examples/README.md#overview).
package/dist/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "1.18.4-head.2f6fd6b.1";
1
+ declare const _default: "1.18.4-head.5cdcced.1";
2
2
  export default _default;
package/dist/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '1.18.4-head.2f6fd6b.1';
3
+ exports.default = '1.18.4-head.5cdcced.1';
4
4
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@clickhouse/client-common",
3
3
  "description": "Official JS client for ClickHouse DB - common types",
4
4
  "homepage": "https://clickhouse.com",
5
- "version": "1.18.4-head.2f6fd6b.1",
5
+ "version": "1.18.4-head.5cdcced.1",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
8
8
  "clickhouse",
@@ -20,6 +20,7 @@
20
20
  "dist"
21
21
  ],
22
22
  "scripts": {
23
+ "pack": "npm pack",
23
24
  "prepack": "cp ../../README.md ../../LICENSE .",
24
25
  "typecheck": "tsc --noEmit",
25
26
  "lint": "eslint --max-warnings=0 .",