├── .gitattributes ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── READMEMOON.md ├── agent.py ├── docker ├── .bashrc ├── Dockerfile ├── build.txt └── initialize.sh ├── docs ├── david_vid.jpg ├── intro_vid.jpg ├── joke.png ├── splash.webp ├── splash_wide.png ├── time_example.jpg └── win_installation_guide.txt ├── logs └── .gitkeep ├── main.py ├── memory └── .gitkeep ├── models.py ├── prompts ├── agent.memory.md ├── agent.system.md ├── agent.tools.md ├── fw.code_no_output.md ├── fw.code_runtime_wrong.md ├── fw.error.md ├── fw.intervention.md ├── fw.memories_deleted.md ├── fw.memories_not_found.md ├── fw.memory_saved.md ├── fw.msg_cleanup.md ├── fw.msg_from_subordinate.md ├── fw.msg_misformat.md ├── fw.msg_repeat.md ├── fw.msg_timeout.md ├── fw.msg_truncated.md ├── fw.tool_not_found.md ├── fw.tool_response.md ├── fw.user_message.md ├── msg.memory_cleanup.md └── tool.knowledge.response.md ├── python ├── __init__.py ├── helpers │ ├── dirty_json.py │ ├── docker.py │ ├── duckduckgo_search.py │ ├── errors.py │ ├── extract_tools.py │ ├── files.py │ ├── messages.py │ ├── perplexity_search.py │ ├── print_style.py │ ├── rate_limiter.py │ ├── shell_local.py │ ├── shell_ssh.py │ ├── timed_input.py │ ├── tool.py │ ├── vdb.py │ └── vector_db.py └── tools │ ├── call_subordinate.py │ ├── code_execution_tool.py │ ├── knowledge_tool.py │ ├── memory_tool.py │ ├── online_knowledge_tool.py │ ├── response.py │ ├── task_done.py │ └── unknown.py ├── requirements.txt ├── strategies ├── -_**fvg_(fair_12_18_23_09_43.txt ├── -_**pre-processing:**_-_12_13_23_11_06.txt ├── -_14_periods_01_19_24_10_32.txt ├── -_add_'support_12_11_23_10_02.txt ├── -_alt,_cyt,_12_04_23_10_06.txt ├── -_apply_an_12_19_23_09_45.txt ├── -_base_bet_01_21_24_08_22.txt ├── -_bearish_fvg_01_24_24_09_55.txt ├── -_bollinger_bands:_01_16_24_10_12.txt ├── -_bollinger_bands_01_18_24_17_37.txt ├── -_breakout_lookback_11_29_23_11_22.txt ├── -_configure_the_01_12_24_08_36.txt ├── -_define_a_01_13_24_07_47.txt ├── -_define_the_12_15_23_09_04.txt ├── -_donchian_channels_12_05_23_11_53.txt ├── -_ema_200_01_24_24_10_23.txt ├── -_ensure_data_12_18_23_08_36.txt └── -_ensure_the_01_18_24_10_15.txt └── work_dir └── .gitkeep /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.analysis.typeCheckingMode": "standard" 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/README.md -------------------------------------------------------------------------------- /READMEMOON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/READMEMOON.md -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/agent.py -------------------------------------------------------------------------------- /docker/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/docker/.bashrc -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/docker/build.txt -------------------------------------------------------------------------------- /docker/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/docker/initialize.sh -------------------------------------------------------------------------------- /docs/david_vid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/docs/david_vid.jpg -------------------------------------------------------------------------------- /docs/intro_vid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/docs/intro_vid.jpg -------------------------------------------------------------------------------- /docs/joke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/docs/joke.png -------------------------------------------------------------------------------- /docs/splash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/docs/splash.webp -------------------------------------------------------------------------------- /docs/splash_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/docs/splash_wide.png -------------------------------------------------------------------------------- /docs/time_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/docs/time_example.jpg -------------------------------------------------------------------------------- /docs/win_installation_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/docs/win_installation_guide.txt -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/main.py -------------------------------------------------------------------------------- /memory/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/models.py -------------------------------------------------------------------------------- /prompts/agent.memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/agent.memory.md -------------------------------------------------------------------------------- /prompts/agent.system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/agent.system.md -------------------------------------------------------------------------------- /prompts/agent.tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/agent.tools.md -------------------------------------------------------------------------------- /prompts/fw.code_no_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/fw.code_no_output.md -------------------------------------------------------------------------------- /prompts/fw.code_runtime_wrong.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/fw.code_runtime_wrong.md -------------------------------------------------------------------------------- /prompts/fw.error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/fw.error.md -------------------------------------------------------------------------------- /prompts/fw.intervention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/fw.intervention.md -------------------------------------------------------------------------------- /prompts/fw.memories_deleted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/fw.memories_deleted.md -------------------------------------------------------------------------------- /prompts/fw.memories_not_found.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/fw.memories_not_found.md -------------------------------------------------------------------------------- /prompts/fw.memory_saved.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/fw.memory_saved.md -------------------------------------------------------------------------------- /prompts/fw.msg_cleanup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/fw.msg_cleanup.md -------------------------------------------------------------------------------- /prompts/fw.msg_from_subordinate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/fw.msg_from_subordinate.md -------------------------------------------------------------------------------- /prompts/fw.msg_misformat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/fw.msg_misformat.md -------------------------------------------------------------------------------- /prompts/fw.msg_repeat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/fw.msg_repeat.md -------------------------------------------------------------------------------- /prompts/fw.msg_timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/fw.msg_timeout.md -------------------------------------------------------------------------------- /prompts/fw.msg_truncated.md: -------------------------------------------------------------------------------- 1 | << REMOVED TO SAVE SPACE >> -------------------------------------------------------------------------------- /prompts/fw.tool_not_found.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/fw.tool_not_found.md -------------------------------------------------------------------------------- /prompts/fw.tool_response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/fw.tool_response.md -------------------------------------------------------------------------------- /prompts/fw.user_message.md: -------------------------------------------------------------------------------- 1 | ~~~json 2 | { 3 | "user": "{{message}}" 4 | } 5 | ~~~ -------------------------------------------------------------------------------- /prompts/msg.memory_cleanup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/msg.memory_cleanup.md -------------------------------------------------------------------------------- /prompts/tool.knowledge.response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/prompts/tool.knowledge.response.md -------------------------------------------------------------------------------- /python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/helpers/dirty_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/helpers/dirty_json.py -------------------------------------------------------------------------------- /python/helpers/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/helpers/docker.py -------------------------------------------------------------------------------- /python/helpers/duckduckgo_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/helpers/duckduckgo_search.py -------------------------------------------------------------------------------- /python/helpers/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/helpers/errors.py -------------------------------------------------------------------------------- /python/helpers/extract_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/helpers/extract_tools.py -------------------------------------------------------------------------------- /python/helpers/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/helpers/files.py -------------------------------------------------------------------------------- /python/helpers/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/helpers/messages.py -------------------------------------------------------------------------------- /python/helpers/perplexity_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/helpers/perplexity_search.py -------------------------------------------------------------------------------- /python/helpers/print_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/helpers/print_style.py -------------------------------------------------------------------------------- /python/helpers/rate_limiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/helpers/rate_limiter.py -------------------------------------------------------------------------------- /python/helpers/shell_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/helpers/shell_local.py -------------------------------------------------------------------------------- /python/helpers/shell_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/helpers/shell_ssh.py -------------------------------------------------------------------------------- /python/helpers/timed_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/helpers/timed_input.py -------------------------------------------------------------------------------- /python/helpers/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/helpers/tool.py -------------------------------------------------------------------------------- /python/helpers/vdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/helpers/vdb.py -------------------------------------------------------------------------------- /python/helpers/vector_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/helpers/vector_db.py -------------------------------------------------------------------------------- /python/tools/call_subordinate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/tools/call_subordinate.py -------------------------------------------------------------------------------- /python/tools/code_execution_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/tools/code_execution_tool.py -------------------------------------------------------------------------------- /python/tools/knowledge_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/tools/knowledge_tool.py -------------------------------------------------------------------------------- /python/tools/memory_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/tools/memory_tool.py -------------------------------------------------------------------------------- /python/tools/online_knowledge_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/tools/online_knowledge_tool.py -------------------------------------------------------------------------------- /python/tools/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/tools/response.py -------------------------------------------------------------------------------- /python/tools/task_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/tools/task_done.py -------------------------------------------------------------------------------- /python/tools/unknown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/python/tools/unknown.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/requirements.txt -------------------------------------------------------------------------------- /strategies/-_**fvg_(fair_12_18_23_09_43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_**fvg_(fair_12_18_23_09_43.txt -------------------------------------------------------------------------------- /strategies/-_**pre-processing:**_-_12_13_23_11_06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_**pre-processing:**_-_12_13_23_11_06.txt -------------------------------------------------------------------------------- /strategies/-_14_periods_01_19_24_10_32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_14_periods_01_19_24_10_32.txt -------------------------------------------------------------------------------- /strategies/-_add_'support_12_11_23_10_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_add_'support_12_11_23_10_02.txt -------------------------------------------------------------------------------- /strategies/-_alt,_cyt,_12_04_23_10_06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_alt,_cyt,_12_04_23_10_06.txt -------------------------------------------------------------------------------- /strategies/-_apply_an_12_19_23_09_45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_apply_an_12_19_23_09_45.txt -------------------------------------------------------------------------------- /strategies/-_base_bet_01_21_24_08_22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_base_bet_01_21_24_08_22.txt -------------------------------------------------------------------------------- /strategies/-_bearish_fvg_01_24_24_09_55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_bearish_fvg_01_24_24_09_55.txt -------------------------------------------------------------------------------- /strategies/-_bollinger_bands:_01_16_24_10_12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_bollinger_bands:_01_16_24_10_12.txt -------------------------------------------------------------------------------- /strategies/-_bollinger_bands_01_18_24_17_37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_bollinger_bands_01_18_24_17_37.txt -------------------------------------------------------------------------------- /strategies/-_breakout_lookback_11_29_23_11_22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_breakout_lookback_11_29_23_11_22.txt -------------------------------------------------------------------------------- /strategies/-_configure_the_01_12_24_08_36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_configure_the_01_12_24_08_36.txt -------------------------------------------------------------------------------- /strategies/-_define_a_01_13_24_07_47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_define_a_01_13_24_07_47.txt -------------------------------------------------------------------------------- /strategies/-_define_the_12_15_23_09_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_define_the_12_15_23_09_04.txt -------------------------------------------------------------------------------- /strategies/-_donchian_channels_12_05_23_11_53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_donchian_channels_12_05_23_11_53.txt -------------------------------------------------------------------------------- /strategies/-_ema_200_01_24_24_10_23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_ema_200_01_24_24_10_23.txt -------------------------------------------------------------------------------- /strategies/-_ensure_data_12_18_23_08_36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_ensure_data_12_18_23_08_36.txt -------------------------------------------------------------------------------- /strategies/-_ensure_the_01_18_24_10_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moondevonyt/agent-zero/HEAD/strategies/-_ensure_the_01_18_24_10_15.txt -------------------------------------------------------------------------------- /work_dir/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------