@lexq/cli 0.1.8 → 0.1.10
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 +3 -1
- package/package.json +2 -2
- package/skills/lexq-simulation/SKILL.md +10 -0
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
> Manage policies, simulate rules, and deploy from the terminal. Built for humans and AI agents.
|
|
4
4
|
|
|
5
|
+
**[Website](https://lexq.io)** · **[Docs](https://docs.lexq.io)** · **[Console](https://console.lexq.io)**
|
|
6
|
+
|
|
5
7
|
[](https://www.npmjs.com/package/@lexq/cli)
|
|
6
8
|
[](LICENSE)
|
|
7
9
|
|
|
@@ -136,7 +138,7 @@ Config is stored at `~/.lexq/config.json`:
|
|
|
136
138
|
## Development
|
|
137
139
|
|
|
138
140
|
```bash
|
|
139
|
-
git clone https://github.com/
|
|
141
|
+
git clone https://github.com/lexq-io/lexq-cli.git
|
|
140
142
|
cd lexq-cli
|
|
141
143
|
pnpm install
|
|
142
144
|
pnpm build
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lexq/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "LexQ CLI — manage policies, simulate rules, and deploy from the terminal. Built for humans and AI agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"license": "Apache-2.0",
|
|
38
38
|
"repository": {
|
|
39
39
|
"type": "git",
|
|
40
|
-
"url": "https://github.com/
|
|
40
|
+
"url": "https://github.com/lexq-io/lexq-cli.git"
|
|
41
41
|
},
|
|
42
42
|
"homepage": "https://lexq.io",
|
|
43
43
|
"engines": {
|
|
@@ -194,6 +194,16 @@ lexq analytics simulation start --json '{
|
|
|
194
194
|
}'
|
|
195
195
|
```
|
|
196
196
|
|
|
197
|
+
**CSV format:** Header row with fact keys, data rows with values. Types auto-detected.
|
|
198
|
+
**JSON format:** Array of objects `[{"key": "value"}, ...]`
|
|
199
|
+
|
|
200
|
+
### MCP — Dataset Tools
|
|
201
|
+
|
|
202
|
+
```
|
|
203
|
+
lexq_dataset_template → Get sample CSV/JSON based on version's required facts
|
|
204
|
+
lexq_dataset_upload → Upload inline CSV/JSON content to S3, returns path
|
|
205
|
+
```
|
|
206
|
+
|
|
197
207
|
### Check Status (Poll)
|
|
198
208
|
|
|
199
209
|
```bash
|