scios-cli 0.1.0__tar.gz → 0.1.1__tar.gz
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.
- {scios_cli-0.1.0/scios_cli.egg-info → scios_cli-0.1.1}/PKG-INFO +10 -7
- {scios_cli-0.1.0 → scios_cli-0.1.1}/README.md +9 -6
- {scios_cli-0.1.0 → scios_cli-0.1.1}/pyproject.toml +1 -1
- scios_cli-0.1.1/scios_cli/__init__.py +2 -0
- scios_cli-0.1.1/scios_cli/__main__.py +17 -0
- {scios_cli-0.1.0 → scios_cli-0.1.1/scios_cli.egg-info}/PKG-INFO +10 -7
- {scios_cli-0.1.0 → scios_cli-0.1.1}/scios_cli.egg-info/SOURCES.txt +1 -0
- scios_cli-0.1.0/scios_cli/__init__.py +0 -0
- {scios_cli-0.1.0 → scios_cli-0.1.1}/LICENSE +0 -0
- {scios_cli-0.1.0 → scios_cli-0.1.1}/scios_cli/install.py +0 -0
- {scios_cli-0.1.0 → scios_cli-0.1.1}/scios_cli/main.py +0 -0
- {scios_cli-0.1.0 → scios_cli-0.1.1}/scios_cli.egg-info/dependency_links.txt +0 -0
- {scios_cli-0.1.0 → scios_cli-0.1.1}/scios_cli.egg-info/entry_points.txt +0 -0
- {scios_cli-0.1.0 → scios_cli-0.1.1}/scios_cli.egg-info/requires.txt +0 -0
- {scios_cli-0.1.0 → scios_cli-0.1.1}/scios_cli.egg-info/top_level.txt +0 -0
- {scios_cli-0.1.0 → scios_cli-0.1.1}/setup.cfg +0 -0
- {scios_cli-0.1.0 → scios_cli-0.1.1}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: scios-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Scios Local Agent Workspace Sync CLI — bridge your terminal to the Scios Cloud backend
|
|
5
5
|
Author: Scios Team
|
|
6
6
|
License: Apache-2.0
|
|
@@ -45,16 +45,18 @@ By installing this lightweight Python package, whenever you click the **"Open in
|
|
|
45
45
|
|
|
46
46
|
## 💻 Installation
|
|
47
47
|
|
|
48
|
-
Scios CLI requires **Python 3.9+** and can be
|
|
48
|
+
Scios CLI requires **Python 3.9+** and can be installed in one command:
|
|
49
49
|
|
|
50
50
|
```bash
|
|
51
|
-
|
|
52
|
-
cd packages/cli
|
|
53
|
-
|
|
54
|
-
# 2. Install the `scios-cli` pip package globally
|
|
55
|
-
pip install -e .
|
|
51
|
+
pip install scios-cli
|
|
56
52
|
```
|
|
57
53
|
|
|
54
|
+
> **Note:** If `scios-init` / `scios-sync` aren't found after install, use the `python3 -m` form instead:
|
|
55
|
+
> ```bash
|
|
56
|
+
> python3 -m scios_cli init # same as scios-init
|
|
57
|
+
> python3 -m scios_cli sync # same as scios-sync
|
|
58
|
+
> ```
|
|
59
|
+
|
|
58
60
|
### Install Deep Link Handler (Critical) 🔗
|
|
59
61
|
Web Browsers strictly sandbox their environment for security. To enable true one-click magical execution without copying and pasting terminal commands, you must register the native OS Protocol handler (`scios://`).
|
|
60
62
|
|
|
@@ -62,6 +64,7 @@ Run this command **once** anywhere in your terminal after installation:
|
|
|
62
64
|
|
|
63
65
|
```bash
|
|
64
66
|
scios-init
|
|
67
|
+
# or: python3 -m scios_cli init
|
|
65
68
|
```
|
|
66
69
|
This is fully cross-platform and will instantly register exactly what your OS needs:
|
|
67
70
|
- 🍎 **macOS**: An AppleScript wrapper app is loaded to Launch Services.
|
|
@@ -15,16 +15,18 @@ By installing this lightweight Python package, whenever you click the **"Open in
|
|
|
15
15
|
|
|
16
16
|
## 💻 Installation
|
|
17
17
|
|
|
18
|
-
Scios CLI requires **Python 3.9+** and can be
|
|
18
|
+
Scios CLI requires **Python 3.9+** and can be installed in one command:
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
|
|
22
|
-
cd packages/cli
|
|
23
|
-
|
|
24
|
-
# 2. Install the `scios-cli` pip package globally
|
|
25
|
-
pip install -e .
|
|
21
|
+
pip install scios-cli
|
|
26
22
|
```
|
|
27
23
|
|
|
24
|
+
> **Note:** If `scios-init` / `scios-sync` aren't found after install, use the `python3 -m` form instead:
|
|
25
|
+
> ```bash
|
|
26
|
+
> python3 -m scios_cli init # same as scios-init
|
|
27
|
+
> python3 -m scios_cli sync # same as scios-sync
|
|
28
|
+
> ```
|
|
29
|
+
|
|
28
30
|
### Install Deep Link Handler (Critical) 🔗
|
|
29
31
|
Web Browsers strictly sandbox their environment for security. To enable true one-click magical execution without copying and pasting terminal commands, you must register the native OS Protocol handler (`scios://`).
|
|
30
32
|
|
|
@@ -32,6 +34,7 @@ Run this command **once** anywhere in your terminal after installation:
|
|
|
32
34
|
|
|
33
35
|
```bash
|
|
34
36
|
scios-init
|
|
37
|
+
# or: python3 -m scios_cli init
|
|
35
38
|
```
|
|
36
39
|
This is fully cross-platform and will instantly register exactly what your OS needs:
|
|
37
40
|
- 🍎 **macOS**: An AppleScript wrapper app is loaded to Launch Services.
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "scios-cli"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "Scios Local Agent Workspace Sync CLI — bridge your terminal to the Scios Cloud backend"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "Apache-2.0"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""Allow running scios_cli as a module: python3 -m scios_cli [init|sync] ..."""
|
|
2
|
+
import sys
|
|
3
|
+
|
|
4
|
+
def main():
|
|
5
|
+
if len(sys.argv) > 1 and sys.argv[1] == "init":
|
|
6
|
+
sys.argv = [sys.argv[0]] + sys.argv[2:]
|
|
7
|
+
from scios_cli.install import cli_install_protocol
|
|
8
|
+
cli_install_protocol()
|
|
9
|
+
else:
|
|
10
|
+
# Default to sync behavior, strip 'sync' subcommand if present
|
|
11
|
+
if len(sys.argv) > 1 and sys.argv[1] == "sync":
|
|
12
|
+
sys.argv = [sys.argv[0]] + sys.argv[2:]
|
|
13
|
+
from scios_cli.main import cli_entry
|
|
14
|
+
cli_entry()
|
|
15
|
+
|
|
16
|
+
if __name__ == "__main__":
|
|
17
|
+
main()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: scios-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Scios Local Agent Workspace Sync CLI — bridge your terminal to the Scios Cloud backend
|
|
5
5
|
Author: Scios Team
|
|
6
6
|
License: Apache-2.0
|
|
@@ -45,16 +45,18 @@ By installing this lightweight Python package, whenever you click the **"Open in
|
|
|
45
45
|
|
|
46
46
|
## 💻 Installation
|
|
47
47
|
|
|
48
|
-
Scios CLI requires **Python 3.9+** and can be
|
|
48
|
+
Scios CLI requires **Python 3.9+** and can be installed in one command:
|
|
49
49
|
|
|
50
50
|
```bash
|
|
51
|
-
|
|
52
|
-
cd packages/cli
|
|
53
|
-
|
|
54
|
-
# 2. Install the `scios-cli` pip package globally
|
|
55
|
-
pip install -e .
|
|
51
|
+
pip install scios-cli
|
|
56
52
|
```
|
|
57
53
|
|
|
54
|
+
> **Note:** If `scios-init` / `scios-sync` aren't found after install, use the `python3 -m` form instead:
|
|
55
|
+
> ```bash
|
|
56
|
+
> python3 -m scios_cli init # same as scios-init
|
|
57
|
+
> python3 -m scios_cli sync # same as scios-sync
|
|
58
|
+
> ```
|
|
59
|
+
|
|
58
60
|
### Install Deep Link Handler (Critical) 🔗
|
|
59
61
|
Web Browsers strictly sandbox their environment for security. To enable true one-click magical execution without copying and pasting terminal commands, you must register the native OS Protocol handler (`scios://`).
|
|
60
62
|
|
|
@@ -62,6 +64,7 @@ Run this command **once** anywhere in your terminal after installation:
|
|
|
62
64
|
|
|
63
65
|
```bash
|
|
64
66
|
scios-init
|
|
67
|
+
# or: python3 -m scios_cli init
|
|
65
68
|
```
|
|
66
69
|
This is fully cross-platform and will instantly register exactly what your OS needs:
|
|
67
70
|
- 🍎 **macOS**: An AppleScript wrapper app is loaded to Launch Services.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|