removed create new agent script

This commit is contained in:
SwiftyOS
2023-09-15 15:37:02 +02:00
parent 43f6ff6d28
commit 252d2fead1

View File

@@ -1,18 +0,0 @@
#!/bin/bash
if [ "$1" == "--help" ]; then
echo "Usage: $0 new_agent_name"
echo "This script needs an agent name (no spaces) and it will create a new agent in the autogpts folder."
exit 0
fi
if [ -z "$1" ]; then
echo "Error: No agent name provided. Run $0 --help for usage."
exit 1
fi
new_name=$1
cp -r autogpts/forge autogpts/$new_name
echo "New agent $new_name created and switched to the new directory in autogpts folder."