├── .github └── workflows │ ├── main.yml │ └── publish-to-pypi.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── codecov.yaml ├── justfile ├── pyproject.toml ├── src └── generalagents │ ├── __init__.py │ ├── action.py │ ├── agent.py │ └── macos │ ├── __init__.py │ └── computer.py ├── tests ├── test_imports.py └── test_structure.py ├── tox.ini └── uv.lock /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/codecov.yaml -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/justfile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/generalagents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/src/generalagents/__init__.py -------------------------------------------------------------------------------- /src/generalagents/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/src/generalagents/action.py -------------------------------------------------------------------------------- /src/generalagents/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/src/generalagents/agent.py -------------------------------------------------------------------------------- /src/generalagents/macos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/src/generalagents/macos/__init__.py -------------------------------------------------------------------------------- /src/generalagents/macos/computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/src/generalagents/macos/computer.py -------------------------------------------------------------------------------- /tests/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/tests/test_imports.py -------------------------------------------------------------------------------- /tests/test_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/tests/test_structure.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/tox.ini -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalagents/generalagents-python/HEAD/uv.lock --------------------------------------------------------------------------------