Skip to content

Commit 9980ddb

Browse files
committed
skiller
1 parent 19d0f71 commit 9980ddb

File tree

20 files changed

+84
-122
lines changed

20 files changed

+84
-122
lines changed

.claude/settings.json

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,6 @@
5454
}
5555
]
5656
}
57-
],
58-
"Stop": [
59-
{
60-
"hooks": [
61-
{
62-
"type": "command",
63-
"command": "npx ultracite fix"
64-
}
65-
]
66-
}
6757
]
6858
}
6959
}

.claude/ruler.toml renamed to .claude/skiller.toml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
1-
# Ruler Configuration for Informed Medical
2-
# This project uses Ruler to manage AI agent instructions
3-
# Source: .ruler/ directory | Generated: root AGENTS.md, CLAUDE.md, etc.
4-
51
# Default agents to apply when --agents flag is not specified
62
default_agents = ["claude", "codex"]
73

84
# --- Fork Configuration ---
95

10-
root_folder = ".claude"
11-
126
[rules]
137
merge_strategy = "cursor"
148

@@ -17,7 +11,6 @@ enabled = false
1711

1812
# --- Global Configuration ---
1913

20-
# Skills support (manages .ruler/skills/ → .claude/skills/ propagation)
2114
[skills]
2215
enabled = true
2316
generate_from_rules = true

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ bower_components
6969
*.sublime-workspace
7070
.vscode/*
7171
!.vscode/settings.json
72+
!.vscode/extensions.json
7273

7374
# Logs
7475
tracing.json
@@ -132,9 +133,8 @@ packages/plate/docs/
132133

133134
CLAUDE.local.md
134135
.codex
135-
.mcp.json
136136

137-
# START Ruler Generated Files
137+
# START Skiller Generated Files
138138
/.claude/skills
139139
/.codex/config.toml
140140
/.cursor/mcp.json
@@ -143,4 +143,4 @@ CLAUDE.local.md
143143
/.skillz
144144
/AGENTS.md
145145
/CLAUDE.md
146-
# END Ruler Generated Files
146+
# END Skiller Generated Files

.vscode/extensions.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"recommendations": [
3+
"unional.vscode-sort-package-json",
4+
"biomejs.biome",
5+
"dbaeumer.vscode-eslint",
6+
"Anthropic.claude-code",
7+
"bradlc.vscode-tailwindcss",
8+
"oven.bun-vscode"
9+
]
10+
}

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
"emmet.showExpandedAbbreviation": "never",
3535
"editor.codeActionsOnSave": {
3636
"source.fixAll.biome": "explicit",
37-
"source.organizeImports.biome": "explicit"
37+
"source.organizeImports.biome": "explicit",
38+
"source.sortPackageJson": "explicit"
3839
},
3940
"eslint.enable": true,
4041
"eslint.validate": [

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"g:typecheck": "turbo --filter \"./packages/**\" typecheck",
4242
"g:typecheck:all": "turbo typecheck",
4343
"gen:package": "yarn plop --plopfile tooling/scripts/plop/plopfile.cjs package",
44-
"postinstall": "bunx @udecode/ruler@latest apply && patch-package --patch-dir tooling/patches",
44+
"postinstall": "bunx skiller@latest apply && patch-package --patch-dir tooling/patches",
4545
"lint": "biome check . && eslint",
4646
"lint:fix": "biome check . --fix",
4747
"nuke:node_modules": "rimraf '**/node_modules'",
@@ -59,12 +59,12 @@
5959
"rd": "yarn workspace www rd",
6060
"release": "yarn build && yarn changeset publish",
6161
"shadcn:build": "yarn workspace www shadcn:build",
62+
"templates:ai": "./tooling/scripts/update-template.sh ai",
63+
"templates:basic": "./tooling/scripts/update-template.sh basic",
6264
"templates:check": "cd templates/plate-template && bun lint && bun typecheck && cd ../plate-playground-template && bun lint && bun typecheck",
6365
"templates:push": "./tooling/scripts/push-template.sh \"templates/*\"",
64-
"templates:basic": "./tooling/scripts/update-template.sh basic",
65-
"templates:ai": "./tooling/scripts/update-template.sh ai",
66-
"templates:update": "yarn templates:update:basic && yarn templates:update:ai",
6766
"templates:test": "cd templates/plate-template && npx shadcn@latest add http://localhost:3000/rd/editor-ai -o && bun lint && bun typecheck",
67+
"templates:update": "yarn templates:update:basic && yarn templates:update:ai",
6868
"test": "bun test",
6969
"test:coverage": "bun test --coverage",
7070
"test:watch": "bun test --watch",

templates/plate-playground-template/.claude/settings.json

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,6 @@
5454
}
5555
]
5656
}
57-
],
58-
"Stop": [
59-
{
60-
"hooks": [
61-
{
62-
"type": "command",
63-
"command": "bunx ultracite fix"
64-
}
65-
]
66-
}
6757
]
6858
}
6959
}

templates/plate-playground-template/.claude/ruler.toml renamed to templates/plate-playground-template/.claude/skiller.toml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
1-
# Ruler Configuration for Informed Medical
2-
# This project uses Ruler to manage AI agent instructions
3-
# Source: .ruler/ directory | Generated: root AGENTS.md, CLAUDE.md, etc.
4-
51
# Default agents to apply when --agents flag is not specified
62
default_agents = ["claude", "codex", "cursor"]
73

84
# --- Fork Configuration ---
95

10-
root_folder = ".claude"
11-
126
[rules]
137
merge_strategy = "cursor"
148

@@ -17,7 +11,6 @@ enabled = false
1711

1812
# --- Global Configuration ---
1913

20-
# Skills support (manages .ruler/skills/ → .claude/skills/ propagation)
2114
[skills]
2215
enabled = true
2316
generate_from_rules = true

templates/plate-playground-template/.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
.vscode/*
44
!.vscode/settings.json
5+
!.vscode/extensions.json
56

67
# dependencies
78
/node_modules
@@ -49,7 +50,7 @@ next-env.d.ts
4950
CLAUDE.local.md
5051
.codex
5152

52-
# START Ruler Generated Files
53+
# START Skiller Generated Files
5354
/.claude/skills
5455
/.codex/config.toml
5556
/.cursor/mcp.json
@@ -58,4 +59,4 @@ CLAUDE.local.md
5859
/.skillz
5960
/AGENTS.md
6061
/CLAUDE.md
61-
# END Ruler Generated Files
62+
# END Skiller Generated Files
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"recommendations": [
3+
"unional.vscode-sort-package-json",
4+
"biomejs.biome",
5+
"dbaeumer.vscode-eslint",
6+
"Anthropic.claude-code",
7+
"bradlc.vscode-tailwindcss",
8+
"oven.bun-vscode"
9+
]
10+
}

0 commit comments

Comments
 (0)