@sponsoredai/cli 0.1.11 → 0.2.0
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 +33 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -11,6 +11,7 @@ Then run your agent through SAI:
|
|
|
11
11
|
```bash
|
|
12
12
|
sai codex
|
|
13
13
|
sai claude
|
|
14
|
+
sai overlay both
|
|
14
15
|
```
|
|
15
16
|
|
|
16
17
|
You do not need to run `sai login` first. SAI creates its local install state
|
|
@@ -22,12 +23,39 @@ refresh the local SAI API key used by the local gateway/dashboard flow.
|
|
|
22
23
|
```bash
|
|
23
24
|
sai codex
|
|
24
25
|
sai claude
|
|
26
|
+
sai overlay codex
|
|
27
|
+
sai overlay claude
|
|
28
|
+
sai overlay both
|
|
25
29
|
sai run -- npm test
|
|
26
30
|
sai wallet
|
|
27
31
|
sai config show
|
|
28
32
|
sai --help
|
|
29
33
|
```
|
|
30
34
|
|
|
35
|
+
## Trust Boundary
|
|
36
|
+
|
|
37
|
+
SAI measures the wait, not the work.
|
|
38
|
+
|
|
39
|
+
SAI does not upload prompts, source code, terminal output, model responses,
|
|
40
|
+
screenshots, window titles, window contents, full file paths, repository URLs,
|
|
41
|
+
commands, or shell history.
|
|
42
|
+
|
|
43
|
+
The terminal runner measures output timing. The desktop overlay checks local
|
|
44
|
+
window visibility and recent input before a placement can qualify. Only the
|
|
45
|
+
allowlisted placement event reaches the backend.
|
|
46
|
+
|
|
47
|
+
Inspect the local event schema:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
sai privacy schema
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Read the public trust boundary:
|
|
54
|
+
|
|
55
|
+
```text
|
|
56
|
+
https://sponsoredai.dev/trust
|
|
57
|
+
```
|
|
58
|
+
|
|
31
59
|
## How The npm Package Works
|
|
32
60
|
|
|
33
61
|
`@sponsoredai/cli` is a small launcher. npm also installs one matching optional
|
|
@@ -48,6 +76,11 @@ bundled binary. There is no separate binary download during install.
|
|
|
48
76
|
- npm optional dependencies enabled.
|
|
49
77
|
- macOS arm64, Linux x64, or Windows x64.
|
|
50
78
|
|
|
79
|
+
The desktop overlay release has been tested locally on Windows x64 and macOS
|
|
80
|
+
arm64 with Claude Desktop and the Codex app. Linux remains supported for the
|
|
81
|
+
terminal CLI package, but the desktop overlay is not claimed as a tested Linux
|
|
82
|
+
surface for this release.
|
|
83
|
+
|
|
51
84
|
Avoid installing with `--omit=optional` or `--no-optional`, because that skips
|
|
52
85
|
the platform binary package.
|
|
53
86
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sponsoredai/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "SAI CLI launcher.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://sponsoredai.dev",
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"README.md"
|
|
17
17
|
],
|
|
18
18
|
"optionalDependencies": {
|
|
19
|
-
"@sponsoredai/cli-darwin-arm64": "0.
|
|
20
|
-
"@sponsoredai/cli-linux-x64": "0.
|
|
21
|
-
"@sponsoredai/cli-win32-x64": "0.
|
|
19
|
+
"@sponsoredai/cli-darwin-arm64": "0.2.0",
|
|
20
|
+
"@sponsoredai/cli-linux-x64": "0.2.0",
|
|
21
|
+
"@sponsoredai/cli-win32-x64": "0.2.0"
|
|
22
22
|
},
|
|
23
23
|
"os": [
|
|
24
24
|
"darwin",
|