
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
gemini-code-flow
Advanced tools
AI-powered development orchestration for Gemini CLI - adapted from Claude Code Flow by ruvnet
AI-powered development orchestration for Gemini CLI - adapted from Claude Code Flow by ruvnet
Gemini Code Flow brings the powerful SPARC methodology and multi-agent orchestration capabilities to Google's Gemini CLI platform. This tool enables developers to leverage multiple AI agents working in parallel to write, test, and optimize code systematically.
This project is adapted from the excellent Claude Code Flow by ruvnet. Full credit goes to the original author for the innovative SPARC methodology and multi-agent orchestration concepts.
# Install Gemini CLI first
npm install -g @google/gemini-cli
# Install Gemini Code Flow
npm install -g gemini-code-flow
Gemini Code Flow supports multiple authentication methods:
Free usage with generous limits:
# Simply login with your Google account when prompted
gemini-flow init --sparc
# No API key configuration needed!
For multiple simultaneous agents or usage-based billing:
# Set your API key from Google AI Studio or Vertex AI
export GEMINI_API_KEY="your-api-key-here"
# Initialize a new project with SPARC
gemini-flow init --sparc
# Start the orchestrator
gemini-flow start
# Run a specific SPARC mode
gemini-flow sparc architect "Design a microservices architecture"
# Launch multi-agent workflow
gemini-flow sparc "Build a REST API with authentication"
gemini-flow agent "Refactor this function to use async/await"
gemini-flow sparc orchestrator "Create a full-stack application with React frontend and Node.js backend, including tests and documentation"
gemini-flow sparc designer "Convert this wireframe sketch to React components" --file ./wireframe.png
Create a .gemini-flow.json in your project root:
{
"maxAgents": 10,
"memoryPath": "./gemini-memory.json",
"authMethod": "google-account",
"modes": {
"architect": {
"temperature": 0.7,
"maxTokens": 8000
}
}
}
Configuration Options:
authMethod: "google-account" (default) or "api-key"apiKey: Only needed if using "api-key" methodmaxAgents: Number of parallel agents (consider rate limits)memoryPath: Location for persistent memory storageWe welcome contributions! Please see our Contributing Guide for details.
MIT License - see LICENSE file for details.
For detailed documentation, visit our Wiki.
Found a bug or have a suggestion? Please open an issue.
Built with ❤️ by the community, adapted from Claude Code Flow
FAQs
AI-powered development orchestration for Gemini CLI - adapted from Claude Code Flow by ruvnet
We found that gemini-code-flow demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.