rulesync 8.24.0 → 8.25.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 +5 -5
- package/dist/{chunk-KWUW4DM2.js → chunk-YJH5W5OM.js} +3095 -1476
- package/dist/cli/index.cjs +3377 -1757
- package/dist/cli/index.js +23 -22
- package/dist/index.cjs +3138 -1519
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +1 -1
- package/package.json +3 -13
package/dist/index.d.cts
CHANGED
|
@@ -213,6 +213,9 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
213
213
|
compatibility: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
214
214
|
metadata: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
215
215
|
}, z.core.$loose>>;
|
|
216
|
+
zed: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
217
|
+
"disable-model-invocation": z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
218
|
+
}, z.core.$loose>>;
|
|
216
219
|
replit: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
217
220
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
218
221
|
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
@@ -258,6 +261,9 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
258
261
|
compatibility?: Record<string, unknown>;
|
|
259
262
|
metadata?: Record<string, unknown>;
|
|
260
263
|
};
|
|
264
|
+
zed?: {
|
|
265
|
+
"disable-model-invocation"?: boolean;
|
|
266
|
+
};
|
|
261
267
|
replit?: {
|
|
262
268
|
"allowed-tools"?: string[];
|
|
263
269
|
license?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -213,6 +213,9 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
213
213
|
compatibility: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
214
214
|
metadata: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
215
215
|
}, z.core.$loose>>;
|
|
216
|
+
zed: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
217
|
+
"disable-model-invocation": z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
218
|
+
}, z.core.$loose>>;
|
|
216
219
|
replit: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
217
220
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
218
221
|
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
@@ -258,6 +261,9 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
258
261
|
compatibility?: Record<string, unknown>;
|
|
259
262
|
metadata?: Record<string, unknown>;
|
|
260
263
|
};
|
|
264
|
+
zed?: {
|
|
265
|
+
"disable-model-invocation"?: boolean;
|
|
266
|
+
};
|
|
261
267
|
replit?: {
|
|
262
268
|
"allowed-tools"?: string[];
|
|
263
269
|
license?: string;
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rulesync",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.25.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",
|
|
@@ -67,7 +67,6 @@
|
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@anthropic-ai/claude-agent-sdk": "0.2.79",
|
|
70
|
-
"@eslint/js": "9.39.4",
|
|
71
70
|
"@opencode-ai/sdk": "1.2.27",
|
|
72
71
|
"@openrouter/sdk": "0.9.11",
|
|
73
72
|
"@secretlint/secretlint-rule-preset-recommend": "11.3.1",
|
|
@@ -77,12 +76,6 @@
|
|
|
77
76
|
"@typescript/native-preview": "7.0.0-dev.20260318.1",
|
|
78
77
|
"@vitest/coverage-v8": "4.1.0",
|
|
79
78
|
"cspell": "9.7.0",
|
|
80
|
-
"eslint": "9.39.4",
|
|
81
|
-
"eslint-plugin-import": "2.32.0",
|
|
82
|
-
"eslint-plugin-no-type-assertion": "1.3.0",
|
|
83
|
-
"eslint-plugin-oxlint": "1.56.0",
|
|
84
|
-
"eslint-plugin-strict-dependencies": "1.3.32",
|
|
85
|
-
"eslint-plugin-zod-import": "0.3.0",
|
|
86
79
|
"knip": "5.88.0",
|
|
87
80
|
"lint-staged": "16.4.0",
|
|
88
81
|
"oxfmt": "0.41.0",
|
|
@@ -96,7 +89,6 @@
|
|
|
96
89
|
"tsup": "8.5.1",
|
|
97
90
|
"tsx": "4.21.0",
|
|
98
91
|
"typescript": "5.9.3",
|
|
99
|
-
"typescript-eslint": "8.57.1",
|
|
100
92
|
"vite": "7.3.1",
|
|
101
93
|
"vitepress": "1.6.4",
|
|
102
94
|
"vitest": "4.1.0"
|
|
@@ -110,7 +102,7 @@
|
|
|
110
102
|
},
|
|
111
103
|
"scripts": {
|
|
112
104
|
"build": "tsup src/cli/index.ts src/index.ts --format cjs,esm --dts --clean",
|
|
113
|
-
"check": "pnpm run fmt:check && pnpm run oxlint && pnpm run
|
|
105
|
+
"check": "pnpm run fmt:check && pnpm run oxlint && pnpm run typecheck",
|
|
114
106
|
"check:sync-skill-docs": "tsx scripts/check-skill-docs-sync.ts",
|
|
115
107
|
"cicheck": "pnpm run cicheck:code && pnpm run cicheck:content",
|
|
116
108
|
"cicheck:code": "pnpm run check && pnpm run test",
|
|
@@ -120,9 +112,7 @@
|
|
|
120
112
|
"docs:build": "vitepress build docs",
|
|
121
113
|
"docs:dev": "vitepress dev docs",
|
|
122
114
|
"docs:preview": "vitepress preview docs",
|
|
123
|
-
"
|
|
124
|
-
"eslint:fix": "eslint . --fix --max-warnings 0 --cache",
|
|
125
|
-
"fix": "pnpm run fmt && pnpm run oxlint:fix && pnpm run eslint:fix",
|
|
115
|
+
"fix": "pnpm run fmt && pnpm run oxlint:fix",
|
|
126
116
|
"fmt": "oxfmt .",
|
|
127
117
|
"fmt:check": "oxfmt --check .",
|
|
128
118
|
"generate": "pnpm run dev generate",
|