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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: scios-cli
3
- Version: 0.1.0
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 quickly installed alongside your standard developer tools:
48
+ Scios CLI requires **Python 3.9+** and can be installed in one command:
49
49
 
50
50
  ```bash
51
- # 1. Clone or step into the Scios project (if building from source)
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 quickly installed alongside your standard developer tools:
18
+ Scios CLI requires **Python 3.9+** and can be installed in one command:
19
19
 
20
20
  ```bash
21
- # 1. Clone or step into the Scios project (if building from source)
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.0"
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,2 @@
1
+ """Scios CLI - Local Agent Workspace Sync"""
2
+ __version__ = "0.1.1"
@@ -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.0
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 quickly installed alongside your standard developer tools:
48
+ Scios CLI requires **Python 3.9+** and can be installed in one command:
49
49
 
50
50
  ```bash
51
- # 1. Clone or step into the Scios project (if building from source)
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.
@@ -3,6 +3,7 @@ README.md
3
3
  pyproject.toml
4
4
  setup.py
5
5
  scios_cli/__init__.py
6
+ scios_cli/__main__.py
6
7
  scios_cli/install.py
7
8
  scios_cli/main.py
8
9
  scios_cli.egg-info/PKG-INFO
File without changes
File without changes
File without changes
File without changes
File without changes