@wardx/core 0.1.4 → 0.1.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 +7 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,12 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
The engine records metrics, events, and logs in memory. The engine also stores Remote Config and assigns experiment variants.
|
|
6
6
|
|
|
7
|
-
The engine does not send HTTP. A runtime package, for example `wardx`, sends the frames.
|
|
8
|
-
|
|
9
|
-
Node.js 20 or later is required.
|
|
10
|
-
|
|
11
|
-
Install this package from npm when you write a custom runtime. If you use Node.js, install `wardx`. The `wardx` package depends on `@wardx/core`.
|
|
12
|
-
|
|
13
7
|
## Install
|
|
14
8
|
|
|
15
9
|
```bash
|
|
@@ -20,6 +14,13 @@ npm install @wardx/core
|
|
|
20
14
|
import { WardxCore, assignVariant, loadSdkDefaults } from '@wardx/core';
|
|
21
15
|
```
|
|
22
16
|
|
|
17
|
+
> [!NOTE]
|
|
18
|
+
> **Agent skill.** Teach the agent the Node SDK (this engine lives inside it) with the [Skills CLI](https://skills.sh):
|
|
19
|
+
>
|
|
20
|
+
> ```bash
|
|
21
|
+
> npx skills add https://github.com/clasen/Wardx --skill wardx
|
|
22
|
+
> ```
|
|
23
|
+
|
|
23
24
|
## Design rules
|
|
24
25
|
|
|
25
26
|
- A measure call changes local memory only.
|