wardx 0.1.4 → 0.1.5

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.
Files changed (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -53,6 +53,13 @@ import { createWardx } from 'wardx';
53
53
 
54
54
  To receive frames, run an ingest server. Install `@wardx/server` and start it with a config file.
55
55
 
56
+ > [!NOTE]
57
+ > **Agent skill.** Teach the agent this Node SDK with the [Skills CLI](https://skills.sh):
58
+ >
59
+ > ```bash
60
+ > npx skills add https://github.com/clasen/Wardx --skill wardx
61
+ > ```
62
+
56
63
  ## Design rules
57
64
 
58
65
  - A measure call does not send network data.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wardx",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Node.js SDK for Wardx telemetry, Remote Config, and experiments.",
5
5
  "keywords": [
6
6
  "wardx",
@@ -37,6 +37,6 @@
37
37
  "src"
38
38
  ],
39
39
  "dependencies": {
40
- "@wardx/core": "0.1.4"
40
+ "@wardx/core": "0.1.5"
41
41
  }
42
42
  }