rulesync 7.22.0 → 7.23.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/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", "factorydroid", "geminicli", "goose", "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", "copilotcli", "cursor", "deepagents", "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";
@@ -14,6 +14,7 @@ declare const ToolTargetSchema: z.ZodMiniEnum<{
14
14
  copilot: "copilot";
15
15
  copilotcli: "copilotcli";
16
16
  cursor: "cursor";
17
+ deepagents: "deepagents";
17
18
  factorydroid: "factorydroid";
18
19
  geminicli: "geminicli";
19
20
  goose: "goose";
@@ -151,6 +152,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
151
152
  copilot: "copilot";
152
153
  copilotcli: "copilotcli";
153
154
  cursor: "cursor";
155
+ deepagents: "deepagents";
154
156
  factorydroid: "factorydroid";
155
157
  geminicli: "geminicli";
156
158
  goose: "goose";
@@ -177,6 +179,9 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
177
179
  opencode: z.ZodMiniOptional<z.ZodMiniObject<{
178
180
  "allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
179
181
  }, z.core.$loose>>;
182
+ deepagents: z.ZodMiniOptional<z.ZodMiniObject<{
183
+ "allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
184
+ }, z.core.$loose>>;
180
185
  copilot: z.ZodMiniOptional<z.ZodMiniObject<{
181
186
  license: z.ZodMiniOptional<z.ZodMiniString<string>>;
182
187
  }, z.core.$loose>>;
@@ -198,6 +203,9 @@ type RulesyncSkillFrontmatterInput = {
198
203
  opencode?: {
199
204
  "allowed-tools"?: string[];
200
205
  };
206
+ deepagents?: {
207
+ "allowed-tools"?: string[];
208
+ };
201
209
  copilot?: {
202
210
  license?: string;
203
211
  };
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", "factorydroid", "geminicli", "goose", "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", "copilotcli", "cursor", "deepagents", "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";
@@ -14,6 +14,7 @@ declare const ToolTargetSchema: z.ZodMiniEnum<{
14
14
  copilot: "copilot";
15
15
  copilotcli: "copilotcli";
16
16
  cursor: "cursor";
17
+ deepagents: "deepagents";
17
18
  factorydroid: "factorydroid";
18
19
  geminicli: "geminicli";
19
20
  goose: "goose";
@@ -151,6 +152,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
151
152
  copilot: "copilot";
152
153
  copilotcli: "copilotcli";
153
154
  cursor: "cursor";
155
+ deepagents: "deepagents";
154
156
  factorydroid: "factorydroid";
155
157
  geminicli: "geminicli";
156
158
  goose: "goose";
@@ -177,6 +179,9 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
177
179
  opencode: z.ZodMiniOptional<z.ZodMiniObject<{
178
180
  "allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
179
181
  }, z.core.$loose>>;
182
+ deepagents: z.ZodMiniOptional<z.ZodMiniObject<{
183
+ "allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
184
+ }, z.core.$loose>>;
180
185
  copilot: z.ZodMiniOptional<z.ZodMiniObject<{
181
186
  license: z.ZodMiniOptional<z.ZodMiniString<string>>;
182
187
  }, z.core.$loose>>;
@@ -198,6 +203,9 @@ type RulesyncSkillFrontmatterInput = {
198
203
  opencode?: {
199
204
  "allowed-tools"?: string[];
200
205
  };
206
+ deepagents?: {
207
+ "allowed-tools"?: string[];
208
+ };
201
209
  copilot?: {
202
210
  license?: string;
203
211
  };
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  checkRulesyncDirExists,
7
7
  generate,
8
8
  importFromTool
9
- } from "./chunk-4WYBBN4I.js";
9
+ } from "./chunk-GAWAOFCL.js";
10
10
 
11
11
  // src/index.ts
12
12
  async function generate2(options = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rulesync",
3
- "version": "7.22.0",
3
+ "version": "7.23.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",