├── .env.sample ├── .gitignore ├── AI_DOCS ├── anthropic_example.md └── computer_use.md ├── README.md ├── data └── app.db ├── images └── computer-use-thumb.png ├── pyproject.toml ├── src └── anthropic_computer_use │ ├── __init__.py │ └── main.py └── uv.lock /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/anthropic-computer-use-bash-and-files/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/anthropic-computer-use-bash-and-files/HEAD/.gitignore -------------------------------------------------------------------------------- /AI_DOCS/anthropic_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/anthropic-computer-use-bash-and-files/HEAD/AI_DOCS/anthropic_example.md -------------------------------------------------------------------------------- /AI_DOCS/computer_use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/anthropic-computer-use-bash-and-files/HEAD/AI_DOCS/computer_use.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/anthropic-computer-use-bash-and-files/HEAD/README.md -------------------------------------------------------------------------------- /data/app.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/anthropic-computer-use-bash-and-files/HEAD/data/app.db -------------------------------------------------------------------------------- /images/computer-use-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/anthropic-computer-use-bash-and-files/HEAD/images/computer-use-thumb.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/anthropic-computer-use-bash-and-files/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/anthropic_computer_use/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/anthropic-computer-use-bash-and-files/HEAD/src/anthropic_computer_use/__init__.py -------------------------------------------------------------------------------- /src/anthropic_computer_use/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/anthropic-computer-use-bash-and-files/HEAD/src/anthropic_computer_use/main.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disler/anthropic-computer-use-bash-and-files/HEAD/uv.lock --------------------------------------------------------------------------------