├── .env.example ├── Dockerfile ├── Makefile ├── README.md ├── __pycache__ ├── config.cpython-313.pyc └── logging_config.cpython-313.pyc ├── config.py ├── docs └── design.md ├── examples └── magic_function_demo.py ├── logging_config.py ├── requirements.txt ├── setup.py ├── simple_demo.py ├── src └── magic_agent │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-313.pyc │ ├── ai_processor.cpython-313.pyc │ ├── cli.cpython-313.pyc │ ├── core.cpython-313.pyc │ └── magic_function.cpython-313.pyc │ ├── ai_processor.py │ ├── api.py │ ├── cli.py │ ├── core.py │ └── magic_function.py └── tests ├── __pycache__ ├── test_ai_processor.cpython-313-pytest-8.4.2.pyc ├── test_core.cpython-313-pytest-8.4.2.pyc └── test_magic_function.cpython-313-pytest-8.4.2.pyc ├── test_ai_processor.py ├── test_core.py └── test_magic_function.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/.env.example -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/config.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/__pycache__/config.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/logging_config.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/__pycache__/logging_config.cpython-313.pyc -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/config.py -------------------------------------------------------------------------------- /docs/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/docs/design.md -------------------------------------------------------------------------------- /examples/magic_function_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/examples/magic_function_demo.py -------------------------------------------------------------------------------- /logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/logging_config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/setup.py -------------------------------------------------------------------------------- /simple_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/simple_demo.py -------------------------------------------------------------------------------- /src/magic_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/src/magic_agent/__init__.py -------------------------------------------------------------------------------- /src/magic_agent/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/src/magic_agent/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /src/magic_agent/__pycache__/ai_processor.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/src/magic_agent/__pycache__/ai_processor.cpython-313.pyc -------------------------------------------------------------------------------- /src/magic_agent/__pycache__/cli.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/src/magic_agent/__pycache__/cli.cpython-313.pyc -------------------------------------------------------------------------------- /src/magic_agent/__pycache__/core.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/src/magic_agent/__pycache__/core.cpython-313.pyc -------------------------------------------------------------------------------- /src/magic_agent/__pycache__/magic_function.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/src/magic_agent/__pycache__/magic_function.cpython-313.pyc -------------------------------------------------------------------------------- /src/magic_agent/ai_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/src/magic_agent/ai_processor.py -------------------------------------------------------------------------------- /src/magic_agent/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/src/magic_agent/api.py -------------------------------------------------------------------------------- /src/magic_agent/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/src/magic_agent/cli.py -------------------------------------------------------------------------------- /src/magic_agent/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/src/magic_agent/core.py -------------------------------------------------------------------------------- /src/magic_agent/magic_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/src/magic_agent/magic_function.py -------------------------------------------------------------------------------- /tests/__pycache__/test_ai_processor.cpython-313-pytest-8.4.2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/tests/__pycache__/test_ai_processor.cpython-313-pytest-8.4.2.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_core.cpython-313-pytest-8.4.2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/tests/__pycache__/test_core.cpython-313-pytest-8.4.2.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_magic_function.cpython-313-pytest-8.4.2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/tests/__pycache__/test_magic_function.cpython-313-pytest-8.4.2.pyc -------------------------------------------------------------------------------- /tests/test_ai_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/tests/test_ai_processor.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_magic_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threethezero/MagicDoEverythin/HEAD/tests/test_magic_function.py --------------------------------------------------------------------------------