A desktop application that provides AI-powered development assistance using the CrewAI framework. It offers intelligent code generation, documentation, testing, and review capabilities through specialized AI agents.
-
Intelligent Code Assistance
- Code generation and modification
- Context-aware suggestions
- Best practices enforcement
-
Documentation Support
- Automated documentation generation
- Comment suggestions
- API documentation
-
Testing Assistance
- Test case generation
- Test coverage analysis
- Edge case identification
-
Code Review
- Automated code reviews
- Style guide enforcement
- Security checking
- Python 3.9+
- Node.js 18+
- Rust (latest stable)
- Platform-specific build tools:
- Windows: Microsoft Visual Studio C++ Build Tools
- macOS: Xcode Command Line Tools
- Linux:
build-essential
package
- Install Dependencies
# Install frontend dependencies
npm install
# Install Python backend dependencies
cd src/backend
pip install -r requirements.txt
cd ../..
- Configure Environment
Create a .env
file in the src/backend
directory:
# LLM Provider API Keys
OPENAI_API_KEY=your_openai_key_here
ANTHROPIC_API_KEY=your_anthropic_key_here
-
Obtain API keys for supported providers:
- OpenAI
- Anthropic
- Google AI
-
Add API keys to your
.env
file:
OPENAI_API_KEY=your_key_here
ANTHROPIC_API_KEY=your_key_here
GOOGLE_API_KEY=your_key_here
Start the development server:
npm run tauri dev
This will launch:
- The Tauri application window
- The React development server
- The Python backend process
Create a production build:
npm run tauri build
This will generate platform-specific installers in the src-tauri/target/release
directory.
src/
├── backend/ # Python backend
│ ├── agents/ # AI agents
│ ├── config/ # Configuration
│ ├── tools/ # Agent tools
│ └── tests/ # Test suite
└── extension/ # VSCode extension
├── webview/ # UI components
└── types/ # TypeScript types
# Run backend tests
poetry run pytest
# Run extension tests
cd src/extension
npm test
# Build extension
cd src/extension
npm run package
The project uses:
- Black for Python formatting
- ESLint/Prettier for TypeScript
- Pre-commit hooks for quality checks
- Fork the repository
- Create a feature branch
- Make your changes
- Run tests
- Submit a pull request
See CONTRIBUTING.md for detailed guidelines.
- API keys are stored securely using environment variables
- Rate limiting prevents API abuse
- Input validation and sanitization
- Regular security updates
Report security issues to [email protected]
This project is licensed under the MIT License - see LICENSE for details.
- CrewAI for the AI framework
- VSCode Extension API team
- All contributors
-
API Key Issues
- Verify .env file configuration
- Check environment variables
- Ensure correct permissions
-
Extension Not Loading
- Check VSCode version
- Verify dependencies
- Check error logs
-
Performance Issues
- Adjust rate limits
- Check network connection
- Monitor resource usage
For more help, see troubleshooting guide.