Aura is an AI coding assistant that runs on your machine. It indexes your codebase, understands your code structure, and helps you implement features through a VS Code extension.
Command: "Aura: Start Story from Issue"
β Paste: https://github.com/org/repo/issues/42
β Aura creates a git worktree and branch
β Opens a new VS Code window in that worktree
β Shows the issue context and lets you chat with the agent
The workflow panel has a chat interface. You describe what you want:
"Add a Redis cache to the UserService"
The agent reads your codebase, writes the code, and shows you what changed. You can review, ask for modifications, or continue with the next task.
Aura indexes your code two ways:
- Text search - Finds relevant code snippets when you ask questions
- Code graph - Understands types, methods, and relationships (C# via Roslyn, other languages via Tree-sitter)
When you ask the agent to implement something, it automatically searches your codebase for relevant context.
Works with:
- Ollama - Run models locally (llama3, codellama, mistral, etc.)
- OpenAI - GPT-4, GPT-4o
- Azure OpenAI - Your own Azure deployment
Configure in appsettings.json:
{
"Llm": {
"Provider": "ollama",
"Model": "llama3.2"
}
}Agents are Markdown files. Create a new .md file in agents/ and it's immediately available:
# My Custom Agent
## System Prompt
You are an expert in...
## Capabilities
- code-review
- documentation
## Provider
openai/gpt-4oNo restart required - agents hot-reload.
Each workflow runs in its own git worktree - a separate directory with its own branch, sharing the same .git history. This means:
- Start a feature, get blocked, start another feature - no stashing, no branch switching
- Each VS Code window is isolated - changes in one don't affect the other
- No risk of git corruption - worktrees are a native git feature
- When done, merge the branch and delete the worktree
main repo: ~/projects/myapp/ (main branch)
workflow 1: ~/projects/myapp-worktrees/add-caching/ (feature/add-caching)
workflow 2: ~/projects/myapp-worktrees/fix-auth-bug/ (feature/fix-auth-bug)
You can have any number of workflows in progress, each with its own chat history and file changes, without conflicts.
The Developer Module provides workflow automation for coding tasks:
| Feature | Description |
|---|---|
| Workflows | Track a coding task from start to PR |
| Git worktrees | Each workflow gets an isolated branch and directory |
| GitHub integration | Create workflows from issues, sync status back |
| Step execution | Break work into steps, execute with different agents |
| Assisted mode | Review each step before proceeding |
| Autonomous mode | Let the agent run multiple steps automatically |
| Chat history | Conversation persists across sessions |
| Build-fix loops | Iteratively build and fix errors until success |
Aura exposes your indexed codebase to GitHub Copilot via MCP (Model Context Protocol). This means Copilot can:
- Search your codebase semantically ("find authentication code")
- Navigate code relationships (callers, implementations, derived types)
- Understand your project's structure before suggesting code
Configure in VS Code settings.json:
{
"github.copilot.chat.codeGeneration.instructions": [
{ "file": ".github/copilot-instructions.md" }
],
"mcp": {
"servers": {
"aura": {
"url": "http://localhost:5300/mcp"
}
}
}
}The agent can run iterative build-fix cycles until your code compiles:
You: "Build this and fix any errors"
Agent: π¨ Building... β 3 errors
β Fixing CS1002: Missing semicolon...
β Fixing CS0246: Type not found...
π¨ Rebuilding... β
Build succeeded
Works for C#, Rust, TypeScript, Go, and Python.
Generate diagrams of your codebase:
You: "Show me the class hierarchy for UserService"
Agent: ```mermaid
classDiagram
IUserService <|.. UserService
UserService --> ICacheService
UserService --> IUserRepository
```
Supports dependency graphs, class hierarchies, and call graphs.
Code indexing and agents work with:
| Language | Indexing | Coding Agent |
|---|---|---|
| C# | Roslyn (full semantic) | β |
| TypeScript | Tree-sitter | β |
| Python | Tree-sitter | β |
| Rust | Tree-sitter | β |
| Go | Tree-sitter | β |
| F# | Tree-sitter | β |
| PowerShell | Tree-sitter | β |
- .NET 9.0 SDK
- Docker or Podman (for PostgreSQL)
- Ollama (for local LLM) or OpenAI API key
# Clone the repository
git clone https://github.com/johnazariah/aura.git
cd aura
# Build everything
dotnet build
# Start the services (PostgreSQL + API)
dotnet run --project src/Aura.AppHost- Open the
extension/folder in VS Code - Press F5 to launch with the extension
- Or build and install:
.\scripts\Build-Extension.ps1
- Ensure Aura service is running (check system tray or Windows Services)
- Open VS Code with the extension installed
- Open a folder with code you want to index
- Run command: "Aura: Index Workspace"
- Run command: "Aura: Create Workflow" to start a coding task
Edit appsettings.json or set environment variables:
Ollama (local, default):
{ "Llm": { "Provider": "ollama", "Model": "llama3.2", "BaseUrl": "http://localhost:11434" } }OpenAI:
{ "Llm": { "Provider": "openai", "Model": "gpt-4o", "ApiKey": "sk-..." } }Azure OpenAI:
{ "Llm": { "Provider": "azure", "Endpoint": "https://xxx.openai.azure.com", "DeploymentName": "gpt-4o", "ApiKey": "..." } }To create workflows from GitHub issues and create PRs:
$env:GITHUB_TOKEN = "ghp_..."Start work directly from a GitHub issue:
Command: "Aura: Start Story from Issue"
β Paste: https://github.com/org/repo/issues/42
β Aura creates a git worktree and branch
β Opens VS Code in the isolated worktree
Step-by-step playbooks for complex operations:
- comprehensive-rename - Rename domain concepts across the codebase
- generate-tests - Comprehensive test generation with language-specific guidance
Before completing a workflow, Aura runs verification checks:
- Build verification (dotnet build, npm build, cargo build, etc.)
- Test verification (runs your test suite)
- Reports pass/fail before finalizing
Agents can self-critique their responses for higher quality output:
## Metadata
- **Reflection**: truesrc/
βββ Aura.Foundation/ # Core: LLM, RAG, agents, database
βββ Aura.Module.Developer/ # Workflows, git, code analysis
βββ Aura.Api/ # HTTP API
βββ Aura.AppHost/ # .NET Aspire orchestration
extension/ # VS Code extension
agents/ # Agent definitions (Markdown)
prompts/ # Prompt templates (Handlebars)
patterns/ # Operational patterns for complex tasks
Getting Started:
User Guide:
Configuration:
MIT - see LICENSE