anywhere-cli 0.1.1__tar.gz → 0.1.2__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 (48) hide show
  1. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/PKG-INFO +2 -1
  2. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/pyproject.toml +2 -1
  3. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/uv.lock +12 -1
  4. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/.gitignore +0 -0
  5. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/README.md +0 -0
  6. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/__init__.py +0 -0
  7. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/adapter.py +0 -0
  8. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/attachments.py +0 -0
  9. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/capabilities.py +0 -0
  10. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/claude/__init__.py +0 -0
  11. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/claude/history_adapter.py +0 -0
  12. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/claude/normalized.py +0 -0
  13. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/claude/normalizers.py +0 -0
  14. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/claude/path_utils.py +0 -0
  15. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/claude/preferences.py +0 -0
  16. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/claude/sdk_adapter.py +0 -0
  17. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/claude/timeline_identity.py +0 -0
  18. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/claude/timeline_reducer.py +0 -0
  19. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/claude/trust.py +0 -0
  20. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/cli.py +0 -0
  21. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/codex/__init__.py +0 -0
  22. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/codex/adapter.py +0 -0
  23. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/codex/history.py +0 -0
  24. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/codex/reducer.py +0 -0
  25. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/codex/rpc.py +0 -0
  26. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/launch.py +0 -0
  27. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/local/__init__.py +0 -0
  28. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/local/common.py +0 -0
  29. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/local/file_ops.py +0 -0
  30. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/local/ops.py +0 -0
  31. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/local/shell.py +0 -0
  32. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/local/terminal.py +0 -0
  33. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/local_ops.py +0 -0
  34. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/protocol.py +0 -0
  35. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/runtime.py +0 -0
  36. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/sync_state.py +0 -0
  37. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/connector/time.py +0 -0
  38. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/run.sh +0 -0
  39. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/tests/test_claude_history_adapter.py +0 -0
  40. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/tests/test_claude_preferences.py +0 -0
  41. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/tests/test_claude_sdk_adapter.py +0 -0
  42. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/tests/test_claude_timeline_parity.py +0 -0
  43. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/tests/test_claude_trust.py +0 -0
  44. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/tests/test_codex_adapter.py +0 -0
  45. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/tests/test_connector_capabilities.py +0 -0
  46. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/tests/test_connector_cli.py +0 -0
  47. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/tests/test_connector_runtime.py +0 -0
  48. {anywhere_cli-0.1.1 → anywhere_cli-0.1.2}/tests/test_terminal_backend.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: anywhere-cli
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Local runtime connector for Agents Anywhere
5
5
  Requires-Python: >=3.12
6
6
  Requires-Dist: claude-agent-sdk
@@ -10,6 +10,7 @@ Requires-Dist: pexpect>=4.9.0; sys_platform != 'win32'
10
10
  Requires-Dist: ptyprocess>=0.7.0; sys_platform != 'win32'
11
11
  Requires-Dist: pydantic>=2.0.0
12
12
  Requires-Dist: pyte>=0.8.2
13
+ Requires-Dist: python-socks>=2.8.1
13
14
  Requires-Dist: pywinpty>=2.0.13; sys_platform == 'win32'
14
15
  Requires-Dist: websockets>=16.0
15
16
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "anywhere-cli"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "Local runtime connector for Agents Anywhere"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -12,6 +12,7 @@ dependencies = [
12
12
  "ptyprocess>=0.7.0; sys_platform != 'win32'",
13
13
  "pydantic>=2.0.0",
14
14
  "pyte>=0.8.2",
15
+ "python-socks>=2.8.1",
15
16
  "pywinpty>=2.0.13; sys_platform == 'win32'",
16
17
  "websockets>=16.0",
17
18
  ]
@@ -26,7 +26,7 @@ wheels = [
26
26
 
27
27
  [[package]]
28
28
  name = "anywhere-cli"
29
- version = "0.1.1"
29
+ version = "0.1.2"
30
30
  source = { editable = "." }
31
31
  dependencies = [
32
32
  { name = "claude-agent-sdk" },
@@ -36,6 +36,7 @@ dependencies = [
36
36
  { name = "ptyprocess", marker = "sys_platform != 'win32'" },
37
37
  { name = "pydantic" },
38
38
  { name = "pyte" },
39
+ { name = "python-socks" },
39
40
  { name = "pywinpty", marker = "sys_platform == 'win32'" },
40
41
  { name = "websockets" },
41
42
  ]
@@ -55,6 +56,7 @@ requires-dist = [
55
56
  { name = "ptyprocess", marker = "sys_platform != 'win32'", specifier = ">=0.7.0" },
56
57
  { name = "pydantic", specifier = ">=2.0.0" },
57
58
  { name = "pyte", specifier = ">=0.8.2" },
59
+ { name = "python-socks", specifier = ">=2.8.1" },
58
60
  { name = "pywinpty", marker = "sys_platform == 'win32'", specifier = ">=2.0.13" },
59
61
  { name = "websockets", specifier = ">=16.0" },
60
62
  ]
@@ -582,6 +584,15 @@ wheels = [
582
584
  { url = "https://files.pythonhosted.org/packages/e1/04/e8135ebd1ad02c56ec633277529b2602ff99ff634be76cdba5744cf554fd/python_multipart-0.0.32-py3-none-any.whl", hash = "sha256:ff6d3f776f16878c894e52e107296ffc890e913c611b1a4ec6c44e2821fe2e23", size = 30042, upload-time = "2026-06-04T16:18:57.319Z" },
583
585
  ]
584
586
 
587
+ [[package]]
588
+ name = "python-socks"
589
+ version = "2.8.1"
590
+ source = { registry = "https://pypi.org/simple" }
591
+ sdist = { url = "https://files.pythonhosted.org/packages/36/0b/cd77011c1bc01b76404f7aba07fca18aca02a19c7626e329b40201217624/python_socks-2.8.1.tar.gz", hash = "sha256:698daa9616d46dddaffe65b87db222f2902177a2d2b2c0b9a9361df607ab3687", size = 38909, upload-time = "2026-02-16T05:24:00.745Z" }
592
+ wheels = [
593
+ { url = "https://files.pythonhosted.org/packages/15/fe/9a58cb6eec633ff6afae150ca53c16f8cc8b65862ccb3d088051efdfceb7/python_socks-2.8.1-py3-none-any.whl", hash = "sha256:28232739c4988064e725cdbcd15be194743dd23f1c910f784163365b9d7be035", size = 55087, upload-time = "2026-02-16T05:23:59.147Z" },
594
+ ]
595
+
585
596
  [[package]]
586
597
  name = "pywin32"
587
598
  version = "312"
File without changes
File without changes
File without changes