@@ -33,6 +33,7 @@ Multi-file AI agent configuration manager with .agent directory support. Maintai
3333| Amazon Q Developer | ` .amazonq/rules/*.md ` | Plain Markdown | amazonq |
3434| JetBrains Junie | ` .junie/guidelines.md ` | Plain Markdown | junie |
3535| Roo Code | ` .roo/rules/*.md ` | Markdown with YAML frontmatter | roo |
36+ | Warp.dev | ` WARP.md ` | Plain Markdown | warp |
3637
3738## Installation
3839
@@ -103,7 +104,7 @@ dotagent convert my-rules.md -f cursor
103104| Flag | Short | Description |
104105| ------| -------| -------------|
105106| ` --help ` | ` -h ` | Show help message |
106- | ` --format ` | ` -f ` | Export to single format (copilot\| cursor\| cline\| windsurf\| zed\| codex\| aider\| claude\| gemini\| qodo\| junie\| roo\| opencode) |
107+ | ` --format ` | ` -f ` | Export to single format (copilot\| cursor\| cline\| windsurf\| zed\| codex\| aider\| claude\| gemini\| qodo\| junie\| roo\| opencode\| warp ) |
107108| ` --formats ` | | Export to multiple formats (comma-separated list) |
108109| ` --output ` | ` -o ` | Output directory path |
109110| ` --overwrite ` | ` -w ` | Overwrite existing files |
@@ -223,6 +224,7 @@ Confidential requirements
223224| Gemini | ` GEMINI.md ` | ` GEMINI.local.md ` |
224225| Junie | ` .junie/guidelines.md ` | ` .junie/guidelines.local.md ` |
225226| Roo Code | ` .roo/rules/*.md ` | ` .roo/rules/*.local.md ` |
227+ | Warp.dev | ` WARP.md ` | ` WARP.local.md ` |
226228
227229### CLI Options
228230
@@ -255,6 +257,7 @@ CLAUDE.local.md
255257GEMINI.local.md
256258.junie/guidelines.local.md
257259.roo/rules/*.local.md
260+ WARP.local.md
258261```
259262
260263## Programmatic Usage
@@ -323,6 +326,7 @@ interface RuleMetadata {
323326- ` importAmazonQ(rulesDir: string): ImportResult ` - Import Amazon Q Developer rules
324327- ` importJunie(filePath: string): ImportResult ` - Import JetBrains Junie guidelines
325328- ` importRoo(rulesDir: string): ImportResult ` - Import Roo Code rules
329+ - ` importWarp(filePath: string): ImportResult ` - Import Warp.dev rules
326330
327331### Export Functions
328332
@@ -340,6 +344,7 @@ interface RuleMetadata {
340344- ` exportToQodo(rules: RuleBlock[], outputPath: string): void `
341345- ` exportToJunie(rules: RuleBlock[], outputPath: string): void `
342346- ` exportToRoo(rules: RuleBlock[], outputDir: string): void `
347+ - ` exportToWarp(rules: RuleBlock[], outputPath: string): void `
343348
344349## Development
345350
0 commit comments