castrel-proxy 0.1.2__tar.gz → 0.1.3__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.
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/PKG-INFO +1 -1
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/pyproject.toml +1 -1
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/cli/commands.py +6 -6
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/.gitignore +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/CHANGELOG.md +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/LICENSE +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/README.md +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/__init__.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/cli/__init__.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/core/__init__.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/core/client_id.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/core/config.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/core/daemon.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/core/executor.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/data/__init__.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/data/default_whitelist.txt +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/mcp/__init__.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/mcp/manager.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/network/__init__.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/network/api_client.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/network/websocket_client.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/operations/__init__.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/operations/document.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/security/__init__.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/security/whitelist.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/tests/__init__.py +0 -0
- {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/tests/test_core.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: castrel-proxy
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: A lightweight remote command execution bridge client with MCP integration
|
|
5
5
|
Project-URL: Homepage, https://github.com/castrel-ai/castrel-proxy
|
|
6
6
|
Project-URL: Documentation, https://github.com/castrel-ai/castrel-proxy#readme
|
|
@@ -178,7 +178,7 @@ def pair(
|
|
|
178
178
|
@app.command()
|
|
179
179
|
def start(
|
|
180
180
|
daemon: bool = typer.Option(
|
|
181
|
-
|
|
181
|
+
False, "--daemon/--foreground", "-d/-f", help="Run in background or foreground (default)"
|
|
182
182
|
),
|
|
183
183
|
):
|
|
184
184
|
"""
|
|
@@ -186,14 +186,14 @@ def start(
|
|
|
186
186
|
|
|
187
187
|
Start bridge and connect to paired server.
|
|
188
188
|
|
|
189
|
-
Run in
|
|
189
|
+
Run in foreground (default):
|
|
190
190
|
castrel-proxy start
|
|
191
|
-
castrel-proxy start --daemon
|
|
192
|
-
castrel-proxy start -d
|
|
193
|
-
|
|
194
|
-
Run in foreground:
|
|
195
191
|
castrel-proxy start --foreground
|
|
196
192
|
castrel-proxy start -f
|
|
193
|
+
|
|
194
|
+
Run in background:
|
|
195
|
+
castrel-proxy start --daemon
|
|
196
|
+
castrel-proxy start -d
|
|
197
197
|
"""
|
|
198
198
|
config = get_config()
|
|
199
199
|
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|