├── .claude └── settings.local.json ├── .gitignore ├── CLAUDE_STATUS.md ├── IMPLEMENTATION_SUMMARY.md ├── LICENSE ├── PLAN.md ├── README.md ├── SYSTEM.md ├── assets ├── fractal.png ├── logo.png └── video.gif ├── claude_1.txt ├── error_ticket.txt ├── hello_world.py ├── lib ├── __init__.py ├── ai │ └── __init__.py ├── aifunc.py ├── boot.py ├── config.py ├── function_wrapper.py ├── functions │ ├── __init__.py │ ├── apply_code_diff_to_file.py │ ├── browser.py │ ├── calculate.py │ ├── cat_file.py │ ├── change_working_directory.py │ ├── clear_screen.py │ ├── create_github_repo.py │ ├── exit.py │ ├── filesystem.py │ ├── get_api_model_config.py │ ├── get_project_files.py │ ├── git_branch.py │ ├── git_commit_and_push.py │ ├── git_diff.py │ ├── git_pull.py │ ├── git_pull_request.py │ ├── git_stash.py │ ├── git_status.py │ ├── help.py │ ├── install_package.py │ ├── llm_write_code.py │ ├── manage_app_container.py │ ├── manage_github_issues.py │ ├── manage_mitta_shell_container.py │ ├── ping.py │ ├── reverse_code_diff.py │ ├── run_python_file.py │ ├── scan_html_code.py │ ├── scan_python_code.py │ ├── search.py │ ├── search_file.py │ ├── set_github_token.py │ ├── speak.py │ └── write_code_to_file.py ├── llm.py ├── omnilog.py ├── set_store.py ├── shell │ ├── __init__.py │ ├── executor.py │ ├── input_buffer.py │ ├── parser.py │ ├── state.py │ └── translator.py └── util.py ├── requirements.txt ├── set_test.py ├── setup.py ├── temp_directory ├── mandelbrot.py └── mandlebrot.py ├── test_boot.py ├── tests ├── conftest.py ├── pytest.ini ├── requirements-test.txt ├── test_browser.py ├── test_calculate.py ├── test_cat_file.py ├── test_clear_screen.py ├── test_get_project_files.py └── test_scan_html_code.py ├── tic_tac_toe.py └── webwright ├── __init__.py ├── main.py ├── main_old.py └── templates └── shell ├── Dockerfile └── app ├── lib └── util.py ├── main.py ├── requirements.txt ├── static ├── css │ └── style.css ├── images │ └── favicon.ico └── js │ ├── dropupload.js │ └── jquery.console.js └── templates ├── commands ├── help.js └── notfound.js ├── js └── base.js └── pages ├── index.html └── shell.html /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/CLAUDE_STATUS.md -------------------------------------------------------------------------------- /IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/LICENSE -------------------------------------------------------------------------------- /PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/PLAN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/README.md -------------------------------------------------------------------------------- /SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/SYSTEM.md -------------------------------------------------------------------------------- /assets/fractal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/assets/fractal.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/assets/video.gif -------------------------------------------------------------------------------- /claude_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /error_ticket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/error_ticket.txt -------------------------------------------------------------------------------- /hello_world.py: -------------------------------------------------------------------------------- 1 | "print('Hello, World!')" 2 | -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/__init__.py -------------------------------------------------------------------------------- /lib/ai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/ai/__init__.py -------------------------------------------------------------------------------- /lib/aifunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/aifunc.py -------------------------------------------------------------------------------- /lib/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/boot.py -------------------------------------------------------------------------------- /lib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/config.py -------------------------------------------------------------------------------- /lib/function_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/function_wrapper.py -------------------------------------------------------------------------------- /lib/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/__init__.py -------------------------------------------------------------------------------- /lib/functions/apply_code_diff_to_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/apply_code_diff_to_file.py -------------------------------------------------------------------------------- /lib/functions/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/browser.py -------------------------------------------------------------------------------- /lib/functions/calculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/calculate.py -------------------------------------------------------------------------------- /lib/functions/cat_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/cat_file.py -------------------------------------------------------------------------------- /lib/functions/change_working_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/change_working_directory.py -------------------------------------------------------------------------------- /lib/functions/clear_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/clear_screen.py -------------------------------------------------------------------------------- /lib/functions/create_github_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/create_github_repo.py -------------------------------------------------------------------------------- /lib/functions/exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/exit.py -------------------------------------------------------------------------------- /lib/functions/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/filesystem.py -------------------------------------------------------------------------------- /lib/functions/get_api_model_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/get_api_model_config.py -------------------------------------------------------------------------------- /lib/functions/get_project_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/get_project_files.py -------------------------------------------------------------------------------- /lib/functions/git_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/git_branch.py -------------------------------------------------------------------------------- /lib/functions/git_commit_and_push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/git_commit_and_push.py -------------------------------------------------------------------------------- /lib/functions/git_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/git_diff.py -------------------------------------------------------------------------------- /lib/functions/git_pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/git_pull.py -------------------------------------------------------------------------------- /lib/functions/git_pull_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/git_pull_request.py -------------------------------------------------------------------------------- /lib/functions/git_stash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/git_stash.py -------------------------------------------------------------------------------- /lib/functions/git_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/git_status.py -------------------------------------------------------------------------------- /lib/functions/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/help.py -------------------------------------------------------------------------------- /lib/functions/install_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/install_package.py -------------------------------------------------------------------------------- /lib/functions/llm_write_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/llm_write_code.py -------------------------------------------------------------------------------- /lib/functions/manage_app_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/manage_app_container.py -------------------------------------------------------------------------------- /lib/functions/manage_github_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/manage_github_issues.py -------------------------------------------------------------------------------- /lib/functions/manage_mitta_shell_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/manage_mitta_shell_container.py -------------------------------------------------------------------------------- /lib/functions/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/ping.py -------------------------------------------------------------------------------- /lib/functions/reverse_code_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/reverse_code_diff.py -------------------------------------------------------------------------------- /lib/functions/run_python_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/run_python_file.py -------------------------------------------------------------------------------- /lib/functions/scan_html_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/scan_html_code.py -------------------------------------------------------------------------------- /lib/functions/scan_python_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/scan_python_code.py -------------------------------------------------------------------------------- /lib/functions/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/search.py -------------------------------------------------------------------------------- /lib/functions/search_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/search_file.py -------------------------------------------------------------------------------- /lib/functions/set_github_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/set_github_token.py -------------------------------------------------------------------------------- /lib/functions/speak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/speak.py -------------------------------------------------------------------------------- /lib/functions/write_code_to_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/functions/write_code_to_file.py -------------------------------------------------------------------------------- /lib/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/llm.py -------------------------------------------------------------------------------- /lib/omnilog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/omnilog.py -------------------------------------------------------------------------------- /lib/set_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/set_store.py -------------------------------------------------------------------------------- /lib/shell/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/shell/__init__.py -------------------------------------------------------------------------------- /lib/shell/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/shell/executor.py -------------------------------------------------------------------------------- /lib/shell/input_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/shell/input_buffer.py -------------------------------------------------------------------------------- /lib/shell/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/shell/parser.py -------------------------------------------------------------------------------- /lib/shell/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/shell/state.py -------------------------------------------------------------------------------- /lib/shell/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/shell/translator.py -------------------------------------------------------------------------------- /lib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/lib/util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/requirements.txt -------------------------------------------------------------------------------- /set_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/set_test.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/setup.py -------------------------------------------------------------------------------- /temp_directory/mandelbrot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/temp_directory/mandelbrot.py -------------------------------------------------------------------------------- /temp_directory/mandlebrot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/temp_directory/mandlebrot.py -------------------------------------------------------------------------------- /test_boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/test_boot.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/tests/requirements-test.txt -------------------------------------------------------------------------------- /tests/test_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/tests/test_browser.py -------------------------------------------------------------------------------- /tests/test_calculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/tests/test_calculate.py -------------------------------------------------------------------------------- /tests/test_cat_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/tests/test_cat_file.py -------------------------------------------------------------------------------- /tests/test_clear_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/tests/test_clear_screen.py -------------------------------------------------------------------------------- /tests/test_get_project_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/tests/test_get_project_files.py -------------------------------------------------------------------------------- /tests/test_scan_html_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/tests/test_scan_html_code.py -------------------------------------------------------------------------------- /tic_tac_toe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/tic_tac_toe.py -------------------------------------------------------------------------------- /webwright/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/webwright/__init__.py -------------------------------------------------------------------------------- /webwright/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/webwright/main.py -------------------------------------------------------------------------------- /webwright/main_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/webwright/main_old.py -------------------------------------------------------------------------------- /webwright/templates/shell/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/webwright/templates/shell/Dockerfile -------------------------------------------------------------------------------- /webwright/templates/shell/app/lib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/webwright/templates/shell/app/lib/util.py -------------------------------------------------------------------------------- /webwright/templates/shell/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/webwright/templates/shell/app/main.py -------------------------------------------------------------------------------- /webwright/templates/shell/app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/webwright/templates/shell/app/requirements.txt -------------------------------------------------------------------------------- /webwright/templates/shell/app/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/webwright/templates/shell/app/static/css/style.css -------------------------------------------------------------------------------- /webwright/templates/shell/app/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/webwright/templates/shell/app/static/images/favicon.ico -------------------------------------------------------------------------------- /webwright/templates/shell/app/static/js/dropupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/webwright/templates/shell/app/static/js/dropupload.js -------------------------------------------------------------------------------- /webwright/templates/shell/app/static/js/jquery.console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/webwright/templates/shell/app/static/js/jquery.console.js -------------------------------------------------------------------------------- /webwright/templates/shell/app/templates/commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/webwright/templates/shell/app/templates/commands/help.js -------------------------------------------------------------------------------- /webwright/templates/shell/app/templates/commands/notfound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/webwright/templates/shell/app/templates/commands/notfound.js -------------------------------------------------------------------------------- /webwright/templates/shell/app/templates/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/webwright/templates/shell/app/templates/js/base.js -------------------------------------------------------------------------------- /webwright/templates/shell/app/templates/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/webwright/templates/shell/app/templates/pages/index.html -------------------------------------------------------------------------------- /webwright/templates/shell/app/templates/pages/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepBlueDynamics/gnosis-wright/HEAD/webwright/templates/shell/app/templates/pages/shell.html --------------------------------------------------------------------------------