# SuperAGI shows "No Tools available" when creating an agent (Windows)
## The problem
When creating an agent, the tools tab showed No Tools available and I couldnt pick any tools. The thread is from July 2023. On Windows specifically, the root cause turned out to be in the shell scripts: entrypoint.sh and wait-for-it.sh were checked out with Windows CRLF line endings, so they failed inside the Linux containers. The maintainer closed the thread as resolved in the latest version.
## The verified fix
On Windows, No Tools available on agent creation was caused by entrypoint.sh and wait-for-it.sh having CRLF line endings, which breaks them inside the Linux containers. Open both files in VS Code, click the CRLF indicator at the bottom right, and switch it to LF, then rebuild. Another user confirmed this fixed it for them on Windows 11. The maintainer also said the issue should be resolved in the latest version, so update first and apply the line-ending fix if it persists.
Source: https://github.com/TransformerOptimus/SuperAGI/issues/184