├── .gitignore ├── README.md ├── agentx ├── __init__.py ├── cli.py ├── config.py ├── conversation.py ├── setup.py ├── tools.py └── utils.py ├── app.py ├── dev ├── install.sh ├── main.py └── manageXNG.sh ├── install.sh ├── null-sandbox.config.json └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/agentXNG/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/agentXNG/HEAD/README.md -------------------------------------------------------------------------------- /agentx/__init__.py: -------------------------------------------------------------------------------- 1 | # Initialization file for the agentx package 2 | -------------------------------------------------------------------------------- /agentx/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/agentXNG/HEAD/agentx/cli.py -------------------------------------------------------------------------------- /agentx/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/agentXNG/HEAD/agentx/config.py -------------------------------------------------------------------------------- /agentx/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/agentXNG/HEAD/agentx/conversation.py -------------------------------------------------------------------------------- /agentx/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/agentXNG/HEAD/agentx/setup.py -------------------------------------------------------------------------------- /agentx/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/agentXNG/HEAD/agentx/tools.py -------------------------------------------------------------------------------- /agentx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/agentXNG/HEAD/agentx/utils.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/agentXNG/HEAD/app.py -------------------------------------------------------------------------------- /dev/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/agentXNG/HEAD/dev/install.sh -------------------------------------------------------------------------------- /dev/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/agentXNG/HEAD/dev/main.py -------------------------------------------------------------------------------- /dev/manageXNG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/agentXNG/HEAD/dev/manageXNG.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/agentXNG/HEAD/install.sh -------------------------------------------------------------------------------- /null-sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/agentXNG/HEAD/null-sandbox.config.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/agentXNG/HEAD/requirements.txt --------------------------------------------------------------------------------