''' mkdir src\agents\tools src\api src\shared infra frontend .github\workflows '''
-
User powershell instead of command due to limiation by design can only create one file at a time but not multiple in one command
-
Powershell command ''' $files = @( "src\agents_init_.py" "src\agents\crew.py" "src\agents\agents.py" "src\agents\tasks.py" "src\agents\tools_init_.py" "src\agents\tools\search.py" "src\agents\tools\scraper.py" "src\agents\tools\financial.py" "src\api_init_.py" "src\api\main.py" "src\api\models.py" "src\api\routes.py" "src\shared_init_.py" "src\shared\config.py" "src\shared\database.py" "src\shared\storage.py" "frontend\app.py" "frontend\requirements.txt" ".env.example" "Dockerfile" )
New-Item $files -ItemType File -Force '''