Back to Home
Getting Started

Quick Start

Get up and running with GemKit in under 5 minutes

1. Install Prerequisites

Install Gemini CLI and GemKit CLI globally:

bash
npm install -g @google/gemini-cli
npm install -g gemkit-cli

2. Initialize Your Project

Navigate to your project directory and run:

bash
gk init

This creates the .gemini folder structure with agents, commands, extensions, and hooks.

3. Configure Your API Key

Ensure your Gemini API key is set in your environment:

bash
# Windows
setx GEMINI_API_KEY "your_key_here"

# macOS/Linux
export GEMINI_API_KEY="your_key_here"

4. Spawn Your First Agent

Use the Researcher agent to test your setup:

bash
gk agent spawn -a researcher -p "Analyze the project structure"

You can also search for the best agent and skill combination for a task:

bash
gk agent search "implement user authentication"

5. Start the Agent Office

Visualize your agents in action with the gamified dashboard:

bash
gk office start --port 4000

This launches a web dashboard at http://localhost:4000.

6. Check Your Session

View your current session details:

bash
gk session status

Next Steps

Caught a mistake? Edit this page on GitHub
Updated: Jan 20, 2026