Skip to content
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ rulesync.local.jsonc
**/.codex/agents/
**/.codex/memories/
**/.codex/config.toml
**/.codex/hooks.json
**/.cursor/
**/.cursorignore
**/.deepagents/AGENTS.md
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ See [Quick Start guide](https://dyoshikawa.github.io/rulesync/getting-started/qu
| AGENTS.md | agentsmd | ✅ | | | 🎮 | 🎮 | 🎮 | |
| AgentsSkills | agentsskills | | | | | | ✅ | |
| Claude Code | claudecode | ✅ 🌏 | ✅ | ✅ 🌏 | ✅ 🌏 | ✅ 🌏 | ✅ 🌏 | ✅ 🌏 |
| Codex CLI | codexcli | ✅ 🌏 | | ✅ 🌏 🔧 | 🌏 | ✅ 🌏 | ✅ 🌏 | |
| Codex CLI | codexcli | ✅ 🌏 | | ✅ 🌏 🔧 | 🌏 | ✅ 🌏 | ✅ 🌏 | ✅ 🌏 |
| Gemini CLI | geminicli | ✅ 🌏 | ✅ | ✅ 🌏 | ✅ 🌏 | ✅ | ✅ 🌏 | ✅ 🌏 |
| Goose | goose | ✅ 🌏 | ✅ | | | | | |
| GitHub Copilot | copilot | ✅ 🌏 | | ✅ | ✅ | ✅ | ✅ | ✅ |
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/supported-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Rulesync supports both **generation** and **import** for All of the major AI cod
| AGENTS.md | agentsmd | ✅ | | | 🎮 | 🎮 | 🎮 | |
| AgentsSkills | agentsskills | | | | | | ✅ | |
| Claude Code | claudecode | ✅ 🌏 | ✅ | ✅ 🌏 | ✅ 🌏 | ✅ 🌏 | ✅ 🌏 | ✅ 🌏 |
| Codex CLI | codexcli | ✅ 🌏 | | ✅ 🌏 🔧 | 🌏 | ✅ 🌏 | ✅ 🌏 | |
| Codex CLI | codexcli | ✅ 🌏 | | ✅ 🌏 🔧 | 🌏 | ✅ 🌏 | ✅ 🌏 | ✅ 🌏 |
| Gemini CLI | geminicli | ✅ 🌏 | ✅ | ✅ 🌏 | ✅ 🌏 | ✅ | ✅ 🌏 | ✅ 🌏 |
| GitHub Copilot | copilot | ✅ 🌏 | | ✅ | ✅ | ✅ | ✅ | ✅ |
| GitHub Copilot CLI | copilotcli | ✅ 🌏 | | ✅ 🌏 | | | | |
Expand Down
2 changes: 1 addition & 1 deletion skills/rulesync/supported-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Rulesync supports both **generation** and **import** for All of the major AI cod
| AGENTS.md | agentsmd | ✅ | | | 🎮 | 🎮 | 🎮 | |
| AgentsSkills | agentsskills | | | | | | ✅ | |
| Claude Code | claudecode | ✅ 🌏 | ✅ | ✅ 🌏 | ✅ 🌏 | ✅ 🌏 | ✅ 🌏 | ✅ 🌏 |
| Codex CLI | codexcli | ✅ 🌏 | | ✅ 🌏 🔧 | 🌏 | ✅ 🌏 | ✅ 🌏 | |
| Codex CLI | codexcli | ✅ 🌏 | | ✅ 🌏 🔧 | 🌏 | ✅ 🌏 | ✅ 🌏 | ✅ 🌏 |
| Gemini CLI | geminicli | ✅ 🌏 | ✅ | ✅ 🌏 | ✅ 🌏 | ✅ | ✅ 🌏 | ✅ 🌏 |
| GitHub Copilot | copilot | ✅ 🌏 | | ✅ | ✅ | ✅ | ✅ | ✅ |
| GitHub Copilot CLI | copilotcli | ✅ 🌏 | | ✅ 🌏 | | | | |
Expand Down
1 change: 1 addition & 0 deletions src/cli/commands/gitignore-entries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ export const GITIGNORE_ENTRY_REGISTRY: ReadonlyArray<GitignoreEntryTag> = [
{ target: "codexcli", feature: "subagents", entry: "**/.codex/agents/" },
{ target: "codexcli", feature: "general", entry: "**/.codex/memories/" },
{ target: "codexcli", feature: "general", entry: "**/.codex/config.toml" },
{ target: "codexcli", feature: "hooks", entry: "**/.codex/hooks.json" },

// Cursor
{ target: "cursor", feature: "rules", entry: "**/.cursor/" },
Expand Down
Loading