rulesync 8.23.0 → 8.24.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/dist/index.d.cts CHANGED
@@ -1,9 +1,10 @@
1
1
  import { z } from 'zod/mini';
2
2
 
3
- declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "antigravity", "antigravity-cli", "antigravity-ide", "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"];
3
+ declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "amp", "antigravity", "antigravity-cli", "antigravity-ide", "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";
7
+ amp: "amp";
7
8
  antigravity: "antigravity";
8
9
  "antigravity-cli": "antigravity-cli";
9
10
  "antigravity-ide": "antigravity-ide";
@@ -151,6 +152,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
151
152
  targets: z.ZodMiniDefault<z.ZodMiniArray<z.ZodMiniEnum<{
152
153
  agentsmd: "agentsmd";
153
154
  agentsskills: "agentsskills";
155
+ amp: "amp";
154
156
  antigravity: "antigravity";
155
157
  "antigravity-cli": "antigravity-cli";
156
158
  "antigravity-ide": "antigravity-ide";
@@ -204,6 +206,19 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
204
206
  copilot: z.ZodMiniOptional<z.ZodMiniObject<{
205
207
  license: z.ZodMiniOptional<z.ZodMiniString<string>>;
206
208
  }, z.core.$loose>>;
209
+ pi: z.ZodMiniOptional<z.ZodMiniObject<{
210
+ "allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
211
+ "disable-model-invocation": z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
212
+ license: z.ZodMiniOptional<z.ZodMiniString<string>>;
213
+ compatibility: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
214
+ metadata: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
215
+ }, z.core.$loose>>;
216
+ replit: z.ZodMiniOptional<z.ZodMiniObject<{
217
+ "allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
218
+ license: z.ZodMiniOptional<z.ZodMiniString<string>>;
219
+ compatibility: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
220
+ metadata: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
221
+ }, z.core.$loose>>;
207
222
  cline: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
208
223
  roo: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
209
224
  takt: z.ZodMiniOptional<z.ZodMiniObject<{
@@ -236,6 +251,19 @@ type RulesyncSkillFrontmatterInput = {
236
251
  copilot?: {
237
252
  license?: string;
238
253
  };
254
+ pi?: {
255
+ "allowed-tools"?: string[];
256
+ "disable-model-invocation"?: boolean;
257
+ license?: string;
258
+ compatibility?: Record<string, unknown>;
259
+ metadata?: Record<string, unknown>;
260
+ };
261
+ replit?: {
262
+ "allowed-tools"?: string[];
263
+ license?: string;
264
+ compatibility?: Record<string, unknown>;
265
+ metadata?: Record<string, unknown>;
266
+ };
239
267
  roo?: Record<string, unknown>;
240
268
  cline?: Record<string, unknown>;
241
269
  takt?: {
package/dist/index.d.ts CHANGED
@@ -1,9 +1,10 @@
1
1
  import { z } from 'zod/mini';
2
2
 
3
- declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "antigravity", "antigravity-cli", "antigravity-ide", "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"];
3
+ declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "amp", "antigravity", "antigravity-cli", "antigravity-ide", "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";
7
+ amp: "amp";
7
8
  antigravity: "antigravity";
8
9
  "antigravity-cli": "antigravity-cli";
9
10
  "antigravity-ide": "antigravity-ide";
@@ -151,6 +152,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
151
152
  targets: z.ZodMiniDefault<z.ZodMiniArray<z.ZodMiniEnum<{
152
153
  agentsmd: "agentsmd";
153
154
  agentsskills: "agentsskills";
155
+ amp: "amp";
154
156
  antigravity: "antigravity";
155
157
  "antigravity-cli": "antigravity-cli";
156
158
  "antigravity-ide": "antigravity-ide";
@@ -204,6 +206,19 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
204
206
  copilot: z.ZodMiniOptional<z.ZodMiniObject<{
205
207
  license: z.ZodMiniOptional<z.ZodMiniString<string>>;
206
208
  }, z.core.$loose>>;
209
+ pi: z.ZodMiniOptional<z.ZodMiniObject<{
210
+ "allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
211
+ "disable-model-invocation": z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
212
+ license: z.ZodMiniOptional<z.ZodMiniString<string>>;
213
+ compatibility: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
214
+ metadata: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
215
+ }, z.core.$loose>>;
216
+ replit: z.ZodMiniOptional<z.ZodMiniObject<{
217
+ "allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
218
+ license: z.ZodMiniOptional<z.ZodMiniString<string>>;
219
+ compatibility: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
220
+ metadata: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
221
+ }, z.core.$loose>>;
207
222
  cline: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
208
223
  roo: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
209
224
  takt: z.ZodMiniOptional<z.ZodMiniObject<{
@@ -236,6 +251,19 @@ type RulesyncSkillFrontmatterInput = {
236
251
  copilot?: {
237
252
  license?: string;
238
253
  };
254
+ pi?: {
255
+ "allowed-tools"?: string[];
256
+ "disable-model-invocation"?: boolean;
257
+ license?: string;
258
+ compatibility?: Record<string, unknown>;
259
+ metadata?: Record<string, unknown>;
260
+ };
261
+ replit?: {
262
+ "allowed-tools"?: string[];
263
+ license?: string;
264
+ compatibility?: Record<string, unknown>;
265
+ metadata?: Record<string, unknown>;
266
+ };
239
267
  roo?: Record<string, unknown>;
240
268
  cline?: Record<string, unknown>;
241
269
  takt?: {
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@ import {
7
7
  convertFromTool,
8
8
  generate,
9
9
  importFromTool
10
- } from "./chunk-G2YWSXTU.js";
10
+ } from "./chunk-YM6XKTQO.js";
11
11
 
12
12
  // src/index.ts
13
13
  async function generate2(options = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rulesync",
3
- "version": "8.23.0",
3
+ "version": "8.24.1",
4
4
  "description": "Unified AI rules management CLI tool that generates configuration files for various AI development tools",
5
5
  "keywords": [
6
6
  "ai",