@cloneisyou/cli 0.1.3-win32-x64 → 0.1.4-darwin-arm64
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/LICENSE.md +23 -23
- package/README.md +88 -88
- package/package.json +5 -5
- package/vendor/{win32-x64/clone/clone.exe → darwin-arm64/clone/clone} +0 -0
package/LICENSE.md
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
# Clone CLI Proprietary License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 Clone Labs, Inc. All rights reserved.
|
|
4
|
-
|
|
5
|
-
This package and its contents are proprietary to Clone Labs, Inc.
|
|
6
|
-
|
|
7
|
-
Permission is granted only to Clone Labs, Inc., its employees, contractors, and
|
|
8
|
-
other persons or entities expressly authorized in writing by Clone Labs, Inc. to
|
|
9
|
-
install, copy, run, evaluate, modify, or distribute this package.
|
|
10
|
-
|
|
11
|
-
No other license is granted. Without prior written permission from Clone Labs,
|
|
12
|
-
Inc., you may not use, copy, modify, publish, distribute, sublicense, sell, host,
|
|
13
|
-
make available as a service, reverse engineer, or create derivative works based
|
|
14
|
-
on this package or any portion of it.
|
|
15
|
-
|
|
16
|
-
Public availability of this package in a package registry does not grant public
|
|
17
|
-
usage rights.
|
|
18
|
-
|
|
19
|
-
THE PACKAGE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
20
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
21
|
-
FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL CLONE LABS,
|
|
22
|
-
INC. BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY ARISING FROM OR
|
|
23
|
-
RELATED TO THE PACKAGE.
|
|
1
|
+
# Clone CLI Proprietary License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Clone Labs, Inc. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This package and its contents are proprietary to Clone Labs, Inc.
|
|
6
|
+
|
|
7
|
+
Permission is granted only to Clone Labs, Inc., its employees, contractors, and
|
|
8
|
+
other persons or entities expressly authorized in writing by Clone Labs, Inc. to
|
|
9
|
+
install, copy, run, evaluate, modify, or distribute this package.
|
|
10
|
+
|
|
11
|
+
No other license is granted. Without prior written permission from Clone Labs,
|
|
12
|
+
Inc., you may not use, copy, modify, publish, distribute, sublicense, sell, host,
|
|
13
|
+
make available as a service, reverse engineer, or create derivative works based
|
|
14
|
+
on this package or any portion of it.
|
|
15
|
+
|
|
16
|
+
Public availability of this package in a package registry does not grant public
|
|
17
|
+
usage rights.
|
|
18
|
+
|
|
19
|
+
THE PACKAGE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
20
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
21
|
+
FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL CLONE LABS,
|
|
22
|
+
INC. BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY ARISING FROM OR
|
|
23
|
+
RELATED TO THE PACKAGE.
|
package/README.md
CHANGED
|
@@ -1,88 +1,88 @@
|
|
|
1
|
-
# Clone CLI
|
|
2
|
-
|
|
3
|
-
Native npm launcher for the Clone CLI.
|
|
4
|
-
|
|
5
|
-
Status: early alpha. This package is proprietary to Clone Labs, Inc. and
|
|
6
|
-
licensed for Clone Labs, Inc. internal/company use only. Public registry
|
|
7
|
-
visibility does not grant public usage, modification, redistribution, or
|
|
8
|
-
commercial rights.
|
|
9
|
-
|
|
10
|
-
## Install
|
|
11
|
-
|
|
12
|
-
```sh
|
|
13
|
-
npm install -g @cloneisyou/cli
|
|
14
|
-
clone
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
## Distribution Model
|
|
18
|
-
|
|
19
|
-
This package follows the native-launcher pattern used by tools such as Claude
|
|
20
|
-
Code: the public npm package contains only a small JavaScript launcher and
|
|
21
|
-
installer. It does not bundle Clone Labs, Inc.'s proprietary Python source.
|
|
22
|
-
|
|
23
|
-
At runtime, the launcher resolves the native `clone` executable in this order:
|
|
24
|
-
|
|
25
|
-
1. `CLONE_NATIVE_BINARY`, for internal development or manual installs.
|
|
26
|
-
2. A matching npm optional dependency alias, such as
|
|
27
|
-
`@cloneisyou/cli-win32-x64`, which points to
|
|
28
|
-
`@cloneisyou/cli@<version>-win32-x64`.
|
|
29
|
-
3. A private artifact mirror, but only when `CLONE_DOWNLOAD_BASE_URL` is set
|
|
30
|
-
explicitly.
|
|
31
|
-
|
|
32
|
-
Clone Labs, Inc.'s GitHub repository and GitHub Releases are private. Public
|
|
33
|
-
npm installs do not depend on GitHub Releases or GitHub Actions artifacts. The
|
|
34
|
-
release workflow builds each native binary on its matching runner and publishes
|
|
35
|
-
that platform package directly to npm before publishing the main launcher.
|
|
36
|
-
|
|
37
|
-
The package metadata links to the private Clone Labs, Inc. repository and issue
|
|
38
|
-
tracker. Access requires repository permissions.
|
|
39
|
-
|
|
40
|
-
Expected private artifact names when `CLONE_DOWNLOAD_BASE_URL` is used:
|
|
41
|
-
|
|
42
|
-
- `clone-darwin-arm64`
|
|
43
|
-
- `clone-darwin-x64`
|
|
44
|
-
- `clone-linux-x64`
|
|
45
|
-
- `clone-win32-x64.exe`
|
|
46
|
-
|
|
47
|
-
If a `manifest.json` is present at the release URL, the installer will use
|
|
48
|
-
`platforms.<platform>.url` and verify `sha256` or `checksum` when provided.
|
|
49
|
-
|
|
50
|
-
## Requirements
|
|
51
|
-
|
|
52
|
-
- Node.js 18+
|
|
53
|
-
- A supported platform: macOS arm64/x64, Linux x64, or Windows x64.
|
|
54
|
-
|
|
55
|
-
Python is not required by this npm package once native binaries are published.
|
|
56
|
-
|
|
57
|
-
## Local Data And Keys
|
|
58
|
-
|
|
59
|
-
Clone stores local state under `~/.clone` by default. This includes session
|
|
60
|
-
metadata, local memory/soul files, and optional context screenshots.
|
|
61
|
-
|
|
62
|
-
If you run `clone login`, provider API keys are stored locally in:
|
|
63
|
-
|
|
64
|
-
```text
|
|
65
|
-
~/.clone/secrets.json
|
|
66
|
-
```
|
|
67
|
-
|
|
68
|
-
Environment variables such as `ANTHROPIC_API_KEY` and `OPENAI_API_KEY` take
|
|
69
|
-
precedence over locally stored keys.
|
|
70
|
-
|
|
71
|
-
## Configuration
|
|
72
|
-
|
|
73
|
-
Useful environment variables:
|
|
74
|
-
|
|
75
|
-
- `CLONE_NATIVE_BINARY`: explicit path to a native `clone` executable.
|
|
76
|
-
- `CLONE_DOWNLOAD_BASE_URL`: explicit private artifact base URL for internal testing.
|
|
77
|
-
- `CLONE_NPM_RUNTIME`: override the native binary cache directory.
|
|
78
|
-
- `CLONE_HOME`: override Clone's data directory. Defaults to `~/.clone`.
|
|
79
|
-
- `CLONE_DISABLE_TRAY=1`: disable the desktop tray/menu-bar recording indicator.
|
|
80
|
-
- `CLONE_DISABLE_CONTEXT_WORKER=1`: disable background context screenshots.
|
|
81
|
-
- `CLONE_SKIP_UPDATE_CHECK=1`: skip the npm `latest` version check before launching.
|
|
82
|
-
- `CLONE_SKIP_NATIVE_INSTALL=1`: skip download attempts during install.
|
|
83
|
-
|
|
84
|
-
Development smoke test:
|
|
85
|
-
|
|
86
|
-
```sh
|
|
87
|
-
npm --prefix apps/cli/npm run smoke
|
|
88
|
-
```
|
|
1
|
+
# Clone CLI
|
|
2
|
+
|
|
3
|
+
Native npm launcher for the Clone CLI.
|
|
4
|
+
|
|
5
|
+
Status: early alpha. This package is proprietary to Clone Labs, Inc. and
|
|
6
|
+
licensed for Clone Labs, Inc. internal/company use only. Public registry
|
|
7
|
+
visibility does not grant public usage, modification, redistribution, or
|
|
8
|
+
commercial rights.
|
|
9
|
+
|
|
10
|
+
## Install
|
|
11
|
+
|
|
12
|
+
```sh
|
|
13
|
+
npm install -g @cloneisyou/cli
|
|
14
|
+
clone
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Distribution Model
|
|
18
|
+
|
|
19
|
+
This package follows the native-launcher pattern used by tools such as Claude
|
|
20
|
+
Code: the public npm package contains only a small JavaScript launcher and
|
|
21
|
+
installer. It does not bundle Clone Labs, Inc.'s proprietary Python source.
|
|
22
|
+
|
|
23
|
+
At runtime, the launcher resolves the native `clone` executable in this order:
|
|
24
|
+
|
|
25
|
+
1. `CLONE_NATIVE_BINARY`, for internal development or manual installs.
|
|
26
|
+
2. A matching npm optional dependency alias, such as
|
|
27
|
+
`@cloneisyou/cli-win32-x64`, which points to
|
|
28
|
+
`@cloneisyou/cli@<version>-win32-x64`.
|
|
29
|
+
3. A private artifact mirror, but only when `CLONE_DOWNLOAD_BASE_URL` is set
|
|
30
|
+
explicitly.
|
|
31
|
+
|
|
32
|
+
Clone Labs, Inc.'s GitHub repository and GitHub Releases are private. Public
|
|
33
|
+
npm installs do not depend on GitHub Releases or GitHub Actions artifacts. The
|
|
34
|
+
release workflow builds each native binary on its matching runner and publishes
|
|
35
|
+
that platform package directly to npm before publishing the main launcher.
|
|
36
|
+
|
|
37
|
+
The package metadata links to the private Clone Labs, Inc. repository and issue
|
|
38
|
+
tracker. Access requires repository permissions.
|
|
39
|
+
|
|
40
|
+
Expected private artifact names when `CLONE_DOWNLOAD_BASE_URL` is used:
|
|
41
|
+
|
|
42
|
+
- `clone-darwin-arm64`
|
|
43
|
+
- `clone-darwin-x64`
|
|
44
|
+
- `clone-linux-x64`
|
|
45
|
+
- `clone-win32-x64.exe`
|
|
46
|
+
|
|
47
|
+
If a `manifest.json` is present at the release URL, the installer will use
|
|
48
|
+
`platforms.<platform>.url` and verify `sha256` or `checksum` when provided.
|
|
49
|
+
|
|
50
|
+
## Requirements
|
|
51
|
+
|
|
52
|
+
- Node.js 18+
|
|
53
|
+
- A supported platform: macOS arm64/x64, Linux x64, or Windows x64.
|
|
54
|
+
|
|
55
|
+
Python is not required by this npm package once native binaries are published.
|
|
56
|
+
|
|
57
|
+
## Local Data And Keys
|
|
58
|
+
|
|
59
|
+
Clone stores local state under `~/.clone` by default. This includes session
|
|
60
|
+
metadata, local memory/soul files, and optional context screenshots.
|
|
61
|
+
|
|
62
|
+
If you run `clone login`, provider API keys are stored locally in:
|
|
63
|
+
|
|
64
|
+
```text
|
|
65
|
+
~/.clone/secrets.json
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Environment variables such as `ANTHROPIC_API_KEY` and `OPENAI_API_KEY` take
|
|
69
|
+
precedence over locally stored keys.
|
|
70
|
+
|
|
71
|
+
## Configuration
|
|
72
|
+
|
|
73
|
+
Useful environment variables:
|
|
74
|
+
|
|
75
|
+
- `CLONE_NATIVE_BINARY`: explicit path to a native `clone` executable.
|
|
76
|
+
- `CLONE_DOWNLOAD_BASE_URL`: explicit private artifact base URL for internal testing.
|
|
77
|
+
- `CLONE_NPM_RUNTIME`: override the native binary cache directory.
|
|
78
|
+
- `CLONE_HOME`: override Clone's data directory. Defaults to `~/.clone`.
|
|
79
|
+
- `CLONE_DISABLE_TRAY=1`: disable the desktop tray/menu-bar recording indicator.
|
|
80
|
+
- `CLONE_DISABLE_CONTEXT_WORKER=1`: disable background context screenshots.
|
|
81
|
+
- `CLONE_SKIP_UPDATE_CHECK=1`: skip the npm `latest` version check before launching.
|
|
82
|
+
- `CLONE_SKIP_NATIVE_INSTALL=1`: skip download attempts during install.
|
|
83
|
+
|
|
84
|
+
Development smoke test:
|
|
85
|
+
|
|
86
|
+
```sh
|
|
87
|
+
npm --prefix apps/cli/npm run smoke
|
|
88
|
+
```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloneisyou/cli",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Native Clone CLI binary for
|
|
3
|
+
"version": "0.1.4-darwin-arm64",
|
|
4
|
+
"description": "Native Clone CLI binary for darwin-arm64",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Clone Labs, Inc.",
|
|
7
7
|
"homepage": "https://clone.is",
|
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
"url": "git+https://github.com/cloneisyou/clone.git",
|
|
11
11
|
"directory": "apps/cli/npm"
|
|
12
12
|
},
|
|
13
|
-
"os": ["
|
|
14
|
-
"cpu": ["
|
|
13
|
+
"os": ["darwin"],
|
|
14
|
+
"cpu": ["arm64"],
|
|
15
15
|
"bin": {
|
|
16
|
-
"clone": "vendor/
|
|
16
|
+
"clone": "vendor/darwin-arm64/clone/clone"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"vendor",
|
|
index 941b57e..65e8c37
|
|
|
Binary file
|