rulesync 7.28.0 → 8.0.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 +29 -27
- package/dist/{chunk-AKHOQKVV.js → chunk-GB6XLCGB.js} +1951 -761
- package/dist/cli/index.cjs +1956 -747
- package/dist/cli/index.js +29 -10
- package/dist/index.cjs +1981 -791
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -261,6 +261,8 @@ type GenerateResult = {
|
|
|
261
261
|
skillsPaths: string[];
|
|
262
262
|
hooksCount: number;
|
|
263
263
|
hooksPaths: string[];
|
|
264
|
+
permissionsCount: number;
|
|
265
|
+
permissionsPaths: string[];
|
|
264
266
|
skills: RulesyncSkill[];
|
|
265
267
|
hasDiff: boolean;
|
|
266
268
|
};
|
|
@@ -273,6 +275,7 @@ type ImportResult = {
|
|
|
273
275
|
subagentsCount: number;
|
|
274
276
|
skillsCount: number;
|
|
275
277
|
hooksCount: number;
|
|
278
|
+
permissionsCount: number;
|
|
276
279
|
};
|
|
277
280
|
|
|
278
281
|
type BaseOptions = {
|
package/dist/index.d.ts
CHANGED
|
@@ -261,6 +261,8 @@ type GenerateResult = {
|
|
|
261
261
|
skillsPaths: string[];
|
|
262
262
|
hooksCount: number;
|
|
263
263
|
hooksPaths: string[];
|
|
264
|
+
permissionsCount: number;
|
|
265
|
+
permissionsPaths: string[];
|
|
264
266
|
skills: RulesyncSkill[];
|
|
265
267
|
hasDiff: boolean;
|
|
266
268
|
};
|
|
@@ -273,6 +275,7 @@ type ImportResult = {
|
|
|
273
275
|
subagentsCount: number;
|
|
274
276
|
skillsCount: number;
|
|
275
277
|
hooksCount: number;
|
|
278
|
+
permissionsCount: number;
|
|
276
279
|
};
|
|
277
280
|
|
|
278
281
|
type BaseOptions = {
|
package/dist/index.js
CHANGED