rulesync 8.9.0 → 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 +8 -0
- package/dist/{chunk-EHXIVMY2.js → chunk-RMITDFVW.js} +3 -0
- package/dist/cli/index.cjs +13607 -13293
- package/dist/cli/index.js +324 -7
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -58,6 +58,14 @@ rulesync import --targets cursor # From .cursorrules
|
|
|
58
58
|
rulesync import --targets copilot # From .github/copilot-instructions.md
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
+
Want to convert configuration from one AI tool to another directly, without
|
|
62
|
+
adopting the `.rulesync/` source-of-truth workflow?
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
# Convert Cursor rules to Copilot and Claude Code in one shot (no .rulesync/ files written)
|
|
66
|
+
rulesync convert --from cursor --to copilot,claudecode
|
|
67
|
+
```
|
|
68
|
+
|
|
61
69
|
See [Quick Start guide](https://dyoshikawa.github.io/rulesync/getting-started/quick-start) for more details.
|
|
62
70
|
|
|
63
71
|
## Supported Tools and Features
|
|
@@ -878,6 +878,7 @@ var ErrorCodes = {
|
|
|
878
878
|
VALIDATION_FAILED: "VALIDATION_FAILED",
|
|
879
879
|
GENERATION_FAILED: "GENERATION_FAILED",
|
|
880
880
|
IMPORT_FAILED: "IMPORT_FAILED",
|
|
881
|
+
CONVERT_FAILED: "CONVERT_FAILED",
|
|
881
882
|
INSTALL_FAILED: "INSTALL_FAILED",
|
|
882
883
|
UPDATE_FAILED: "UPDATE_FAILED",
|
|
883
884
|
GITIGNORE_FAILED: "GITIGNORE_FAILED",
|
|
@@ -23034,6 +23035,7 @@ export {
|
|
|
23034
23035
|
isFeatureValueEnabled,
|
|
23035
23036
|
ALL_TOOL_TARGETS,
|
|
23036
23037
|
ALL_TOOL_TARGETS_WITH_WILDCARD,
|
|
23038
|
+
ToolTargetSchema,
|
|
23037
23039
|
findControlCharacter,
|
|
23038
23040
|
GITIGNORE_DESTINATION_KEY,
|
|
23039
23041
|
ConfigResolver,
|
|
@@ -23052,6 +23054,7 @@ export {
|
|
|
23052
23054
|
CLIError,
|
|
23053
23055
|
ConsoleLogger,
|
|
23054
23056
|
JsonLogger,
|
|
23057
|
+
PermissionsProcessor,
|
|
23055
23058
|
SKILL_FILE_NAME,
|
|
23056
23059
|
RulesyncSkillFrontmatterSchema,
|
|
23057
23060
|
RulesyncSkill,
|