rulesync 8.6.0 → 8.8.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 -0
- package/dist/{chunk-ILMHM7BF.js → chunk-XIMWQREW.js} +1521 -987
- package/dist/cli/index.cjs +3563 -1398
- package/dist/cli/index.js +1851 -214
- package/dist/index.cjs +1537 -1006
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +1 -1
- package/package.json +3 -2
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod/mini';
|
|
2
2
|
|
|
3
|
-
declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "antigravity", "augmentcode", "augmentcode-legacy", "claudecode", "claudecode-legacy", "cline", "codexcli", "copilot", "copilotcli", "cursor", "deepagents", "factorydroid", "geminicli", "goose", "junie", "kilo", "kiro", "opencode", "qwencode", "replit", "roo", "rovodev", "warp", "windsurf", "zed"];
|
|
3
|
+
declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "antigravity", "augmentcode", "augmentcode-legacy", "claudecode", "claudecode-legacy", "cline", "codexcli", "copilot", "copilotcli", "cursor", "deepagents", "factorydroid", "geminicli", "goose", "junie", "kilo", "kiro", "opencode", "qwencode", "replit", "roo", "rovodev", "takt", "warp", "windsurf", "zed"];
|
|
4
4
|
declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
5
5
|
agentsmd: "agentsmd";
|
|
6
6
|
agentsskills: "agentsskills";
|
|
@@ -26,6 +26,7 @@ declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
|
26
26
|
replit: "replit";
|
|
27
27
|
roo: "roo";
|
|
28
28
|
rovodev: "rovodev";
|
|
29
|
+
takt: "takt";
|
|
29
30
|
warp: "warp";
|
|
30
31
|
windsurf: "windsurf";
|
|
31
32
|
zed: "zed";
|
|
@@ -158,6 +159,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
158
159
|
replit: "replit";
|
|
159
160
|
roo: "roo";
|
|
160
161
|
rovodev: "rovodev";
|
|
162
|
+
takt: "takt";
|
|
161
163
|
warp: "warp";
|
|
162
164
|
windsurf: "windsurf";
|
|
163
165
|
zed: "zed";
|
|
@@ -185,6 +187,9 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
185
187
|
}, z.core.$loose>>;
|
|
186
188
|
cline: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
187
189
|
roo: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
190
|
+
takt: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
191
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
192
|
+
}, z.core.$loose>>;
|
|
188
193
|
}, z.core.$loose>;
|
|
189
194
|
type RulesyncSkillFrontmatterInput = {
|
|
190
195
|
name: string;
|
|
@@ -212,6 +217,9 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
212
217
|
};
|
|
213
218
|
roo?: Record<string, unknown>;
|
|
214
219
|
cline?: Record<string, unknown>;
|
|
220
|
+
takt?: {
|
|
221
|
+
name?: string;
|
|
222
|
+
};
|
|
215
223
|
};
|
|
216
224
|
type RulesyncSkillFrontmatter = z.infer<typeof RulesyncSkillFrontmatterSchemaInternal>;
|
|
217
225
|
type RulesyncSkillParams = {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod/mini';
|
|
2
2
|
|
|
3
|
-
declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "antigravity", "augmentcode", "augmentcode-legacy", "claudecode", "claudecode-legacy", "cline", "codexcli", "copilot", "copilotcli", "cursor", "deepagents", "factorydroid", "geminicli", "goose", "junie", "kilo", "kiro", "opencode", "qwencode", "replit", "roo", "rovodev", "warp", "windsurf", "zed"];
|
|
3
|
+
declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "antigravity", "augmentcode", "augmentcode-legacy", "claudecode", "claudecode-legacy", "cline", "codexcli", "copilot", "copilotcli", "cursor", "deepagents", "factorydroid", "geminicli", "goose", "junie", "kilo", "kiro", "opencode", "qwencode", "replit", "roo", "rovodev", "takt", "warp", "windsurf", "zed"];
|
|
4
4
|
declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
5
5
|
agentsmd: "agentsmd";
|
|
6
6
|
agentsskills: "agentsskills";
|
|
@@ -26,6 +26,7 @@ declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
|
26
26
|
replit: "replit";
|
|
27
27
|
roo: "roo";
|
|
28
28
|
rovodev: "rovodev";
|
|
29
|
+
takt: "takt";
|
|
29
30
|
warp: "warp";
|
|
30
31
|
windsurf: "windsurf";
|
|
31
32
|
zed: "zed";
|
|
@@ -158,6 +159,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
158
159
|
replit: "replit";
|
|
159
160
|
roo: "roo";
|
|
160
161
|
rovodev: "rovodev";
|
|
162
|
+
takt: "takt";
|
|
161
163
|
warp: "warp";
|
|
162
164
|
windsurf: "windsurf";
|
|
163
165
|
zed: "zed";
|
|
@@ -185,6 +187,9 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
185
187
|
}, z.core.$loose>>;
|
|
186
188
|
cline: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
187
189
|
roo: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
190
|
+
takt: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
191
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
192
|
+
}, z.core.$loose>>;
|
|
188
193
|
}, z.core.$loose>;
|
|
189
194
|
type RulesyncSkillFrontmatterInput = {
|
|
190
195
|
name: string;
|
|
@@ -212,6 +217,9 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
212
217
|
};
|
|
213
218
|
roo?: Record<string, unknown>;
|
|
214
219
|
cline?: Record<string, unknown>;
|
|
220
|
+
takt?: {
|
|
221
|
+
name?: string;
|
|
222
|
+
};
|
|
215
223
|
};
|
|
216
224
|
type RulesyncSkillFrontmatter = z.infer<typeof RulesyncSkillFrontmatterSchemaInternal>;
|
|
217
225
|
type RulesyncSkillParams = {
|
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.8.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",
|
|
@@ -110,9 +110,10 @@
|
|
|
110
110
|
"scripts": {
|
|
111
111
|
"build": "tsup src/cli/index.ts src/index.ts --format cjs,esm --dts --clean",
|
|
112
112
|
"check": "pnpm run fmt:check && pnpm run oxlint && pnpm run eslint && pnpm run typecheck",
|
|
113
|
+
"check:sync-skill-docs": "tsx scripts/check-skill-docs-sync.ts",
|
|
113
114
|
"cicheck": "pnpm run cicheck:code && pnpm run cicheck:content",
|
|
114
115
|
"cicheck:code": "pnpm run check && pnpm run test",
|
|
115
|
-
"cicheck:content": "pnpm run cspell && pnpm run secretlint",
|
|
116
|
+
"cicheck:content": "pnpm run check:sync-skill-docs && pnpm run cspell && pnpm run secretlint",
|
|
116
117
|
"cspell": "cspell --no-progress --gitignore .",
|
|
117
118
|
"dev": "tsx src/cli/index.ts",
|
|
118
119
|
"docs:build": "vitepress build docs",
|