salai 0.1.0 → 0.1.2
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 +21 -1
- package/package.json +16 -3
package/README.md
CHANGED
|
@@ -8,7 +8,27 @@ npx salai retailers
|
|
|
8
8
|
npx salai cart add 7290019489443
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
> **Looking for MCP integration?** See [`@salai
|
|
11
|
+
> **Looking for MCP integration?** See [`@idoz.dev/salai-mcp`](../mcp-cli) for Cursor / Claude Desktop.
|
|
12
|
+
|
|
13
|
+
## What's New in v0.1.1
|
|
14
|
+
|
|
15
|
+
- Improved npm metadata and discoverability
|
|
16
|
+
- Added vendor-neutral and tool-specific AI agent integration docs
|
|
17
|
+
- Documented JSON-first usage for automation workflows
|
|
18
|
+
|
|
19
|
+
## Agent Integration
|
|
20
|
+
|
|
21
|
+
AI agents should run Salai commands in JSON mode:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
salai search "חלב" --json
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
See:
|
|
28
|
+
|
|
29
|
+
- `AGENTS.md`
|
|
30
|
+
- `docs/agent-spec-short.md`
|
|
31
|
+
- `docs/agents/`
|
|
12
32
|
|
|
13
33
|
## Install
|
|
14
34
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "salai",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Salai grocery
|
|
5
|
-
"keywords": [
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Salai grocery CLI for Israeli product search, price comparison, and cart workflows",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"salai",
|
|
7
|
+
"grocery",
|
|
8
|
+
"price-comparison",
|
|
9
|
+
"cli",
|
|
10
|
+
"israel",
|
|
11
|
+
"shopping",
|
|
12
|
+
"hebrew",
|
|
13
|
+
"agents",
|
|
14
|
+
"mcp"
|
|
15
|
+
],
|
|
6
16
|
"homepage": "https://salai.co.il",
|
|
7
17
|
"repository": {
|
|
8
18
|
"type": "git",
|
|
9
19
|
"url": "https://github.com/Salai-app/salai-cli"
|
|
10
20
|
},
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/Salai-app/salai-cli/issues"
|
|
23
|
+
},
|
|
11
24
|
"license": "MIT",
|
|
12
25
|
"type": "module",
|
|
13
26
|
"bin": {
|