You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Merge opencode and warp format support from rebase
- Add project documentation (.agent/guidelines.md, AGENTS.md)
- Update .gitignore to exclude exported AI rule files
- Fix path normalization in Amazon Q importer
- Improve Warp test coverage for private rules
- Update README to avoid hardcoding format count
dotagent is a multi-file AI agent configuration manager that maintains a single source of truth for AI coding assistant rules across multiple IDEs and tools (including VS Code Copilot, Cursor, Claude Code, OpenCode, Windsurf, and more). It converts between a unified `.agent/` directory format and tool-specific formats, supporting import/export operations, nested folders, private rules, and both CLI and TypeScript API usage.
7
+
8
+
## Package Manager
9
+
10
+
This project uses **pnpm** for dependency management.
11
+
12
+
## Available Scripts
13
+
14
+
```bash
15
+
# Install dependencies
16
+
pnpm install
17
+
18
+
# Build the project
19
+
pnpm build
20
+
21
+
# Development mode (watch)
22
+
pnpm dev
23
+
24
+
# Run tests (recommended for AI agents - non-interactive)
dotagent is a multi-file AI agent configuration manager that maintains a single source of truth for AI coding assistant rules across multiple IDEs and tools (including VS Code Copilot, Cursor, Claude Code, OpenCode, Windsurf, and more). It converts between a unified `.agent/` directory format and tool-specific formats, supporting import/export operations, nested folders, private rules, and both CLI and TypeScript API usage.
4
+
5
+
## Package Manager
6
+
7
+
This project uses **pnpm** for dependency management.
8
+
9
+
## Available Scripts
10
+
11
+
```bash
12
+
# Install dependencies
13
+
pnpm install
14
+
15
+
# Build the project
16
+
pnpm build
17
+
18
+
# Development mode (watch)
19
+
pnpm dev
20
+
21
+
# Run tests (recommended for AI agents - non-interactive)
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# dotagent
2
2
3
-
Multi-file AI agent configuration manager with .agent directory support. Maintain a single source of truth for AI coding assistant rules across Claude Code, VS Code Copilot, Cursor, Cline, Windsurf, Zed, Amazon Q Developer, and more.
3
+
Multi-file AI agent configuration manager with .agent directory support. Maintain a single source of truth for AI coding assistant rules across multiple IDEs and tools including VS Code Copilot, Cursor, Claude Code, OpenCode, and more.
0 commit comments