rulesync 8.8.1 → 8.10.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 +9 -0
- package/dist/{chunk-XIMWQREW.js → chunk-RMITDFVW.js} +1362 -896
- package/dist/cli/index.cjs +19079 -18298
- package/dist/cli/index.js +329 -8
- package/dist/index.cjs +1388 -925
- 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", "copilotcli", "cursor", "deepagents", "factorydroid", "geminicli", "goose", "junie", "kilo", "kiro", "opencode", "qwencode", "replit", "roo", "rovodev", "takt", "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", "pi", "qwencode", "replit", "roo", "rovodev", "takt", "warp", "windsurf", "zed"];
|
|
4
4
|
declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
5
5
|
agentsmd: "agentsmd";
|
|
6
6
|
agentsskills: "agentsskills";
|
|
@@ -22,6 +22,7 @@ declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
|
22
22
|
kilo: "kilo";
|
|
23
23
|
kiro: "kiro";
|
|
24
24
|
opencode: "opencode";
|
|
25
|
+
pi: "pi";
|
|
25
26
|
qwencode: "qwencode";
|
|
26
27
|
replit: "replit";
|
|
27
28
|
roo: "roo";
|
|
@@ -155,6 +156,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
155
156
|
kilo: "kilo";
|
|
156
157
|
kiro: "kiro";
|
|
157
158
|
opencode: "opencode";
|
|
159
|
+
pi: "pi";
|
|
158
160
|
qwencode: "qwencode";
|
|
159
161
|
replit: "replit";
|
|
160
162
|
roo: "roo";
|
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", "takt", "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", "pi", "qwencode", "replit", "roo", "rovodev", "takt", "warp", "windsurf", "zed"];
|
|
4
4
|
declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
5
5
|
agentsmd: "agentsmd";
|
|
6
6
|
agentsskills: "agentsskills";
|
|
@@ -22,6 +22,7 @@ declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
|
22
22
|
kilo: "kilo";
|
|
23
23
|
kiro: "kiro";
|
|
24
24
|
opencode: "opencode";
|
|
25
|
+
pi: "pi";
|
|
25
26
|
qwencode: "qwencode";
|
|
26
27
|
replit: "replit";
|
|
27
28
|
roo: "roo";
|
|
@@ -155,6 +156,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
155
156
|
kilo: "kilo";
|
|
156
157
|
kiro: "kiro";
|
|
157
158
|
opencode: "opencode";
|
|
159
|
+
pi: "pi";
|
|
158
160
|
qwencode: "qwencode";
|
|
159
161
|
replit: "replit";
|
|
160
162
|
roo: "roo";
|
package/dist/index.js
CHANGED