Getting Started with Kodely
Welcome to Kodely! This guide will help you get started with Kodely, an AI-powered autonomous coding agent that lives in your editor. Follow these steps to install Kodely, connect your AI provider, and try your first task.
Installing Kodely
Kodely is available as a VS Code extension. You can install it directly from the VS Code Marketplace or from the Open VSX Registry.
From VS Code Marketplace
- Open VS Code
- Click on the Extensions icon in the Activity Bar (or press
Ctrl+Shift+X
/Cmd+Shift+X
) - Search for "Kodely"
- Click "Install" on the Kodely extension
Alternatively, you can install it directly from the marketplace:
From Open VSX Registry
If you're using an open-source VS Code alternative like VSCodium, you can install Kodely from the Open VSX Registry:
Manual Installation
If you prefer to install the extension manually:
- Download the latest
.vsix
file from the GitHub releases page - In VS Code, go to the Extensions view
- Click on the "..." menu in the top-right corner
- Select "Install from VSIX..."
- Navigate to the downloaded
.vsix
file and select it
System Requirements
- VS Code 1.85.0 or higher
- Node.js 18 or higher (for some features)
Connecting Your AI Provider
Kodely supports multiple AI providers. To use Kodely, you'll need to connect it to at least one AI provider.
Supported Providers
Kodely currently supports the following AI providers:
- Anthropic (Claude)
- OpenAI (GPT-4, GPT-3.5)
- Google (Gemini)
- Ollama (Local Models)
- Azure OpenAI
- Custom API Endpoints
Setting Up Your API Key
- Open VS Code
- Click on the Kodely icon in the Activity Bar
- Click on the "Settings" icon (gear) in the Kodely panel
- Select "API Configuration"
- Choose your preferred provider
- Enter your API key
Getting API Keys
Anthropic (Claude)
- Go to console.anthropic.com
- Sign up or log in
- Navigate to the API Keys section
- Create a new API key
- Copy the key and paste it into Kodely
OpenAI (GPT-4, GPT-3.5)
- Go to platform.openai.com
- Sign up or log in
- Navigate to the API Keys section
- Create a new API key
- Copy the key and paste it into Kodely
Google (Gemini)
- Go to ai.google.dev
- Sign up or log in
- Navigate to the API Keys section
- Create a new API key
- Copy the key and paste it into Kodely
Your First Task with Kodely
Now that you've installed Kodely and connected your AI provider, it's time to try your first task.
Opening the Kodely Panel
- Open VS Code
- Click on the Kodely icon in the Activity Bar (or press
Ctrl+Shift+K
/Cmd+Shift+K
) - The Kodely panel will open, showing the chat interface
Starting a Conversation
Let's start with a simple task. Type one of these prompts in the chat input:
- "Create a simple React component that displays a counter with increment and decrement buttons"
- "Explain how async/await works in JavaScript"
- "Help me debug this function" (after selecting some code in your editor)
Understanding the Response
Kodely will respond with:
- A detailed explanation of what it's going to do
- The code or information you requested
- Additional context or suggestions
Using Tools
One of Kodely's powerful features is its ability to use tools to interact with your development environment. For example:
- Ask Kodely to "Create a new file called HelloWorld.js with a React component"
- Kodely will:
- Ask for your permission to create a file
- Create the file with the component code
- Provide an explanation of the code
Trying Different Modes
Kodely offers different modes for different types of tasks:
- Click on the mode selector in the Kodely panel
- Choose a different mode, such as "Architect" or "Debug"
- Try a task appropriate for that mode:
- Architect: "Design a system for a todo app with user authentication"
- Debug: "Help me find the bug in this code" (after selecting some code)
Next Steps
Now that you've tried your first task with Kodely, you can explore more advanced features: