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.
Files changed (27) hide show
  1. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/PKG-INFO +1 -1
  2. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/pyproject.toml +1 -1
  3. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/cli/commands.py +6 -6
  4. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/.gitignore +0 -0
  5. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/CHANGELOG.md +0 -0
  6. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/LICENSE +0 -0
  7. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/README.md +0 -0
  8. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/__init__.py +0 -0
  9. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/cli/__init__.py +0 -0
  10. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/core/__init__.py +0 -0
  11. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/core/client_id.py +0 -0
  12. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/core/config.py +0 -0
  13. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/core/daemon.py +0 -0
  14. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/core/executor.py +0 -0
  15. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/data/__init__.py +0 -0
  16. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/data/default_whitelist.txt +0 -0
  17. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/mcp/__init__.py +0 -0
  18. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/mcp/manager.py +0 -0
  19. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/network/__init__.py +0 -0
  20. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/network/api_client.py +0 -0
  21. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/network/websocket_client.py +0 -0
  22. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/operations/__init__.py +0 -0
  23. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/operations/document.py +0 -0
  24. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/security/__init__.py +0 -0
  25. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/src/castrel_proxy/security/whitelist.py +0 -0
  26. {castrel_proxy-0.1.2 → castrel_proxy-0.1.3}/tests/__init__.py +0 -0
  27. {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.2
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
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "castrel-proxy"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "A lightweight remote command execution bridge client with MCP integration"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -178,7 +178,7 @@ def pair(
178
178
  @app.command()
179
179
  def start(
180
180
  daemon: bool = typer.Option(
181
- True, "--daemon/--foreground", "-d/-f", help="Run in background (default) or foreground"
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 background (default):
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