rulesync 7.5.0 → 7.6.1
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 +24 -23
- package/dist/{chunk-WZ7IUX6M.js → chunk-MG4OE47A.js} +421 -184
- package/dist/cli/index.cjs +693 -451
- package/dist/cli/index.js +8 -3
- package/dist/index.cjs +428 -191
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
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", "cursor", "factorydroid", "geminicli", "junie", "kilo", "kiro", "opencode", "qwencode", "replit", "roo", "warp", "windsurf", "zed"];
|
|
3
|
+
declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "antigravity", "augmentcode", "augmentcode-legacy", "claudecode", "claudecode-legacy", "cline", "codexcli", "copilot", "cursor", "factorydroid", "geminicli", "goose", "junie", "kilo", "kiro", "opencode", "qwencode", "replit", "roo", "warp", "windsurf", "zed"];
|
|
4
4
|
declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
5
5
|
agentsmd: "agentsmd";
|
|
6
6
|
agentsskills: "agentsskills";
|
|
@@ -15,6 +15,7 @@ declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
|
15
15
|
cursor: "cursor";
|
|
16
16
|
factorydroid: "factorydroid";
|
|
17
17
|
geminicli: "geminicli";
|
|
18
|
+
goose: "goose";
|
|
18
19
|
junie: "junie";
|
|
19
20
|
kilo: "kilo";
|
|
20
21
|
kiro: "kiro";
|
|
@@ -149,6 +150,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
149
150
|
cursor: "cursor";
|
|
150
151
|
factorydroid: "factorydroid";
|
|
151
152
|
geminicli: "geminicli";
|
|
153
|
+
goose: "goose";
|
|
152
154
|
junie: "junie";
|
|
153
155
|
kilo: "kilo";
|
|
154
156
|
kiro: "kiro";
|
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", "cursor", "factorydroid", "geminicli", "junie", "kilo", "kiro", "opencode", "qwencode", "replit", "roo", "warp", "windsurf", "zed"];
|
|
3
|
+
declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "antigravity", "augmentcode", "augmentcode-legacy", "claudecode", "claudecode-legacy", "cline", "codexcli", "copilot", "cursor", "factorydroid", "geminicli", "goose", "junie", "kilo", "kiro", "opencode", "qwencode", "replit", "roo", "warp", "windsurf", "zed"];
|
|
4
4
|
declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
5
5
|
agentsmd: "agentsmd";
|
|
6
6
|
agentsskills: "agentsskills";
|
|
@@ -15,6 +15,7 @@ declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
|
15
15
|
cursor: "cursor";
|
|
16
16
|
factorydroid: "factorydroid";
|
|
17
17
|
geminicli: "geminicli";
|
|
18
|
+
goose: "goose";
|
|
18
19
|
junie: "junie";
|
|
19
20
|
kilo: "kilo";
|
|
20
21
|
kiro: "kiro";
|
|
@@ -149,6 +150,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
149
150
|
cursor: "cursor";
|
|
150
151
|
factorydroid: "factorydroid";
|
|
151
152
|
geminicli: "geminicli";
|
|
153
|
+
goose: "goose";
|
|
152
154
|
junie: "junie";
|
|
153
155
|
kilo: "kilo";
|
|
154
156
|
kiro: "kiro";
|
package/dist/index.js
CHANGED