Files
extension/pkg/jetbrains/docker-build.sh
T
Hanzo Dev a0e37986d0 feat: add swarm mode with multi-agent parallel file editing
- Add --swarm <count> capability to launch up to 100 agents in parallel
- Support multiple providers: --claude, --openai, --gemini, --grok, --local
- Implement lazy agent spawning for efficient resource usage
- Add automatic authentication for all providers
- Create parallel file processing with progress tracking
- Migrate all tests from Jest to Vitest
- Add comprehensive test coverage for swarm functionality
- Support idiomatic usage: dev --claude --swarm 5 -p 'edit files...'
- Version bump to 2.1.0
2025-07-16 01:44:17 -05:00

14 lines
397 B
Bash
Executable File

#!/bin/bash
echo "Building JetBrains plugin with Docker..."
echo
# Build the Docker image
docker build -f Dockerfile.build -t hanzo-jetbrains-build .
# Run the build
docker run --rm -v "$(pwd)/build:/app/build" hanzo-jetbrains-build
echo
echo "Build complete! Plugin JAR should be in build/distributions/"
ls -la build/distributions/ 2>/dev/null || echo "Build output directory not found yet."