use-computer 0.0.8__tar.gz → 0.0.10__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.
- {use_computer-0.0.8 → use_computer-0.0.10}/PKG-INFO +5 -1
- {use_computer-0.0.8 → use_computer-0.0.10}/README.md +4 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/pyproject.toml +1 -1
- {use_computer-0.0.8 → use_computer-0.0.10}/uv.lock +1 -1
- {use_computer-0.0.8 → use_computer-0.0.10}/.env.example +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/.gitignore +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/.pre-commit-config.yaml +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/examples/_1_hello_macos.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/examples/_2_hello_ios.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/examples/_3_recording.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/examples/_4_file_transfer.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/examples/_5_keepalive.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/__init__.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/ax_transpile.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/client.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/display.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/errors.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/ios/__init__.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/ios/apps.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/ios/environment.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/ios/input.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/macos/__init__.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/macos/keyboard.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/macos/mouse.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/models.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/parsers.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/py.typed +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/recording.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/retry.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/sandbox.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/screenshot.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/tasks/__init__.py +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/tasks/templates/pre_command.sh +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/tasks/templates/task.toml +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/tasks/templates/test_ios.sh +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/tasks/templates/test_ios_nograder.sh +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/tasks/templates/test_macos.sh +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/tasks/templates/test_macos_check.sh +0 -0
- {use_computer-0.0.8 → use_computer-0.0.10}/use_computer/tasks/templates/test_macos_nograder.sh +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: use-computer
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.10
|
|
4
4
|
Summary: Python SDK for the use.computer macOS and iOS Computer Use API
|
|
5
5
|
Project-URL: Homepage, https://use.computer
|
|
6
6
|
Project-URL: Documentation, https://api.use.computer/docs
|
|
@@ -52,6 +52,10 @@ Full DSL reference (macOS + iOS): [docs.use.computer/docs/sdk](https://docs.use.
|
|
|
52
52
|
|
|
53
53
|
For agent loops and evals: [use-computer-cookbook](https://github.com/josancamon19/use-computer-cookbook).
|
|
54
54
|
|
|
55
|
+
## For AI coding assistants
|
|
56
|
+
|
|
57
|
+
The cookbook ships a Claude-Code-ready skill that teaches an assistant how to use this SDK end-to-end (macOS + iOS DSL, recording, file transfer, keepalive, retries, the AppleScript/AX transpiler, the vision-model coord scaling). Point your assistant at [`skills/use-computer-sdk/SKILL.md`](https://github.com/josancamon19/use-computer-cookbook/blob/main/skills/use-computer-sdk/SKILL.md) — the body is short and links out to per-topic references in `skills/use-computer-sdk/references/`.
|
|
58
|
+
|
|
55
59
|
## HTTP API
|
|
56
60
|
|
|
57
61
|
Every SDK method wraps `https://api.use.computer/v1/...` with `Authorization: Bearer mk_live_...`. Swagger: [api.use.computer/docs](https://api.use.computer/docs). OpenAPI spec: [api.use.computer/openapi.yaml](https://api.use.computer/openapi.yaml).
|
|
@@ -30,6 +30,10 @@ Full DSL reference (macOS + iOS): [docs.use.computer/docs/sdk](https://docs.use.
|
|
|
30
30
|
|
|
31
31
|
For agent loops and evals: [use-computer-cookbook](https://github.com/josancamon19/use-computer-cookbook).
|
|
32
32
|
|
|
33
|
+
## For AI coding assistants
|
|
34
|
+
|
|
35
|
+
The cookbook ships a Claude-Code-ready skill that teaches an assistant how to use this SDK end-to-end (macOS + iOS DSL, recording, file transfer, keepalive, retries, the AppleScript/AX transpiler, the vision-model coord scaling). Point your assistant at [`skills/use-computer-sdk/SKILL.md`](https://github.com/josancamon19/use-computer-cookbook/blob/main/skills/use-computer-sdk/SKILL.md) — the body is short and links out to per-topic references in `skills/use-computer-sdk/references/`.
|
|
36
|
+
|
|
33
37
|
## HTTP API
|
|
34
38
|
|
|
35
39
|
Every SDK method wraps `https://api.use.computer/v1/...` with `Authorization: Bearer mk_live_...`. Swagger: [api.use.computer/docs](https://api.use.computer/docs). OpenAPI spec: [api.use.computer/openapi.yaml](https://api.use.computer/openapi.yaml).
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{use_computer-0.0.8 → use_computer-0.0.10}/use_computer/tasks/templates/test_ios_nograder.sh
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{use_computer-0.0.8 → use_computer-0.0.10}/use_computer/tasks/templates/test_macos_nograder.sh
RENAMED
|
File without changes
|