-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrulesync.jsonc
More file actions
31 lines (31 loc) · 927 Bytes
/
Copy pathrulesync.jsonc
File metadata and controls
31 lines (31 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"$schema": "https://raw.githubusercontent.com/dyoshikawa/rulesync/refs/heads/main/config-schema.json",
"targets": [
"agentsskills",
"copilot",
"cursor",
"claudecode",
"codexcli"
],
"features": [
"rules",
"ignore",
// "mcp",
"commands",
"subagents",
"skills",
"hooks",
],
"baseDirs": [
"."
],
// delete:true lets `rulesync generate` auto-remove orphaned outputs for the configured
// targets when a source under .rulesync/ is deleted (needed for the rules->skills refactor).
// Note: the claude-code-only `argument-hint` command frontmatter (Issue #413) is dropped from
// generated commands on every generate regardless of this flag, so flipping it changes nothing there.
// see https://github.com/dyoshikawa/rulesync/issues/413
"delete": true,
"verbose": true,
"experimentalSimulateCommands": true,
"experimentalSimulateSubagents": false
}