Skip to main content
     _                                    
    | |                                   
  __| |  ____  _____  _   _   ___   ____  
 / _  | / ___)| ___ || | | | / _ \ |  _ \ 
( (_| || |    | ____| \ V / | |_| || | | |
 \____||_|    |_____)  \_/   \___/ |_| |_|

What is Drevon?

Drevon is a CLI framework that transforms any directory into an AI-native workspace. One config file generates custom instructions for 8 different coding agents — with persistent memory, pluggable skills, and reusable prompts. Your AI agents stop being stateless tools and start becoming self-evolving collaborators that remember context, learn patterns, and improve across sessions.

The Problem

Every AI coding agent uses a different config format:
  • Copilot reads .github/copilot-instructions.md
  • Claude Code reads CLAUDE.md
  • Cursor reads .cursor/rules/*.mdc
  • Codex reads AGENTS.md
  • And 4 more agents, each with their own format…
Maintaining these manually is painful. When you switch agents or add a teammate who uses a different one, instructions get fragmented and context is lost between sessions.

The Solution

Single Source of Truth

One drevon.config.json compiles into every agent’s native format. Edit once, every agent stays in sync.

Persistent Memory

Agents read and write to memory files across sessions — building context that compounds over time.

Pluggable Skills

Install capabilities from the skills.sh marketplace. Skills are automatically injected into all agent configs.

Reusable Prompts

Structured workflow templates for code review, debugging, feature implementation, and more.

How It Works

npx drevon init
This single command:
1

Detects your workspace

Automatically determines whether you need Hub mode (multi-project) or Project mode (single codebase).
2

Configures your identity

Choose a preset (founder, developer, team, researcher) that defines how agents behave.
3

Generates agent configs

Creates native config files for every agent you enable — Copilot, Claude, Cursor, Codex, and more.
4

Sets up memory & skills

Initializes the memory system and installs the bundled skill discovery tool.
The result: a workspace where every AI agent knows who you are, what you’re building, and how to help — and gets better at it over time.

Supported Agents

AgentConfig FileFormat
GitHub Copilot.github/copilot-instructions.mdMarkdown
Claude CodeCLAUDE.mdMarkdown
Cursor.cursor/rules/*.mdcMDC (YAML + Markdown)
OpenAI CodexAGENTS.mdMarkdown
Windsurf.windsurfrulesMarkdown
Cline.clinerulesMarkdown
Aider.aider/instructions.mdMarkdown + YAML
Continue.dev.continue/rules/drevon.mdMarkdown

Next Steps

Quickstart

Get up and running in 60 seconds.

Core Concepts

Understand the architecture behind Drevon.

CLI Reference

Complete reference for every command.

Guides

Step-by-step tutorials for common workflows.