rulesync 7.6.2 → 7.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/{chunk-MG4OE47A.js → chunk-KDYNNWMK.js} +987 -606
- package/dist/cli/index.cjs +1275 -890
- package/dist/cli/index.js +8 -4
- package/dist/index.cjs +1011 -630
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/package.json +13 -13
package/dist/index.d.cts
CHANGED
|
@@ -175,6 +175,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
175
175
|
copilot: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
176
176
|
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
177
177
|
}, z.core.$loose>>;
|
|
178
|
+
cline: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
178
179
|
roo: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
179
180
|
}, z.core.$loose>;
|
|
180
181
|
type RulesyncSkillFrontmatterInput = {
|
|
@@ -194,6 +195,7 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
194
195
|
license?: string;
|
|
195
196
|
};
|
|
196
197
|
roo?: Record<string, unknown>;
|
|
198
|
+
cline?: Record<string, unknown>;
|
|
197
199
|
};
|
|
198
200
|
type RulesyncSkillFrontmatter = z.infer<typeof RulesyncSkillFrontmatterSchemaInternal>;
|
|
199
201
|
type RulesyncSkillParams = {
|
package/dist/index.d.ts
CHANGED
|
@@ -175,6 +175,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
175
175
|
copilot: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
176
176
|
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
177
177
|
}, z.core.$loose>>;
|
|
178
|
+
cline: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
178
179
|
roo: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
179
180
|
}, z.core.$loose>;
|
|
180
181
|
type RulesyncSkillFrontmatterInput = {
|
|
@@ -194,6 +195,7 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
194
195
|
license?: string;
|
|
195
196
|
};
|
|
196
197
|
roo?: Record<string, unknown>;
|
|
198
|
+
cline?: Record<string, unknown>;
|
|
197
199
|
};
|
|
198
200
|
type RulesyncSkillFrontmatter = z.infer<typeof RulesyncSkillFrontmatterSchemaInternal>;
|
|
199
201
|
type RulesyncSkillParams = {
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rulesync",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.7.0",
|
|
4
4
|
"description": "Unified AI rules management CLI tool that generates configuration files for various AI development tools",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
"@valibot/to-json-schema": "1.5.0",
|
|
56
56
|
"commander": "14.0.3",
|
|
57
57
|
"consola": "3.4.2",
|
|
58
|
-
"effect": "3.19.
|
|
58
|
+
"effect": "3.19.18",
|
|
59
59
|
"es-toolkit": "1.44.0",
|
|
60
|
-
"fastmcp": "3.
|
|
61
|
-
"globby": "16.1.
|
|
60
|
+
"fastmcp": "3.33.0",
|
|
61
|
+
"globby": "16.1.1",
|
|
62
62
|
"gray-matter": "4.0.3",
|
|
63
63
|
"js-yaml": "4.1.1",
|
|
64
64
|
"jsonc-parser": "3.3.1",
|
|
@@ -67,26 +67,26 @@
|
|
|
67
67
|
"zod": "4.3.6"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@anthropic-ai/claude-agent-sdk": "0.2.
|
|
70
|
+
"@anthropic-ai/claude-agent-sdk": "0.2.47",
|
|
71
71
|
"@eslint/js": "9.39.2",
|
|
72
72
|
"@openrouter/sdk": "0.8.0",
|
|
73
73
|
"@secretlint/secretlint-rule-preset-recommend": "11.3.1",
|
|
74
74
|
"@tsconfig/node24": "24.0.4",
|
|
75
75
|
"@types/js-yaml": "4.0.9",
|
|
76
|
-
"@types/node": "25.
|
|
77
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
76
|
+
"@types/node": "25.3.0",
|
|
77
|
+
"@typescript/native-preview": "7.0.0-dev.20260218.1",
|
|
78
78
|
"@vitest/coverage-v8": "4.0.18",
|
|
79
79
|
"cspell": "9.6.4",
|
|
80
80
|
"eslint": "9.39.2",
|
|
81
81
|
"eslint-plugin-import": "2.32.0",
|
|
82
82
|
"eslint-plugin-no-type-assertion": "1.3.0",
|
|
83
|
-
"eslint-plugin-oxlint": "1.
|
|
84
|
-
"eslint-plugin-strict-dependencies": "1.3.
|
|
83
|
+
"eslint-plugin-oxlint": "1.48.0",
|
|
84
|
+
"eslint-plugin-strict-dependencies": "1.3.31",
|
|
85
85
|
"eslint-plugin-zod-import": "0.3.0",
|
|
86
|
-
"knip": "5.
|
|
86
|
+
"knip": "5.84.1",
|
|
87
87
|
"lint-staged": "16.2.7",
|
|
88
|
-
"oxfmt": "0.
|
|
89
|
-
"oxlint": "1.
|
|
88
|
+
"oxfmt": "0.33.0",
|
|
89
|
+
"oxlint": "1.48.0",
|
|
90
90
|
"repomix": "1.11.1",
|
|
91
91
|
"resend": "6.9.2",
|
|
92
92
|
"secretlint": "11.3.1",
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"tsup": "8.5.1",
|
|
96
96
|
"tsx": "4.21.0",
|
|
97
97
|
"typescript": "5.9.3",
|
|
98
|
-
"typescript-eslint": "8.
|
|
98
|
+
"typescript-eslint": "8.56.0",
|
|
99
99
|
"vitepress": "1.6.4",
|
|
100
100
|
"vitest": "4.0.18"
|
|
101
101
|
},
|