Skip to content

Commit 8fa29c9

Browse files
committed
Update rulesync configuration to disable deletion and enable command simulation
- Changed "delete" from true to false to prevent deletion of custom YAML attributes in Claude Code slash commands. - Updated "experimentalSimulateCommands" to true for enhanced command simulation capabilities. - Commented out "mcp" feature for clarity and future reference.
1 parent 108930d commit 8fa29c9

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

rulesync.jsonc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,23 @@
22
"targets": [
33
"copilot",
44
"cursor",
5-
"claudecode" //,
5+
"claudecode"
66
// "codexcli"
77
],
88
"features": [
99
"rules",
1010
"ignore",
11-
"mcp",
11+
// "mcp",
1212
"commands",
1313
"subagents"
1414
],
1515
"baseDirs": [
1616
"."
1717
],
18-
"delete": true,
18+
// marking as delete false because rulesync does not yet support custom yaml attrs in claude code slash commands
19+
// see [Feature request: for claude code slash commands, support passing through claude-code-specific yaml markdown frontmatter keys to the generated command markdown files · Issue #413 · dyoshikawa/rulesync](https://github.com/dyoshikawa/rulesync/issues/413)
20+
"delete": false,
1921
"verbose": true,
20-
"experimentalSimulateCommands": false,
22+
"experimentalSimulateCommands": true,
2123
"experimentalSimulateSubagents": false
2224
}

0 commit comments

Comments
 (0)