rulesync 4.3.0 → 4.3.2
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 +0 -33
- package/dist/index.cjs +197 -198
- package/dist/index.js +197 -198
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -787,39 +787,6 @@ Add the Rulesync MCP server to your `.rulesync/mcp.json`:
|
|
|
787
787
|
}
|
|
788
788
|
```
|
|
789
789
|
|
|
790
|
-
## Contributing
|
|
791
|
-
|
|
792
|
-
Issues and Pull Requests are welcome!
|
|
793
|
-
|
|
794
|
-
For development setup:
|
|
795
|
-
|
|
796
|
-
```bash
|
|
797
|
-
git clone https://github.com/dyoshikawa/rulesync # Should be your fork repository url actually
|
|
798
|
-
cd rulesync
|
|
799
|
-
pnpm i
|
|
800
|
-
pnpm cicheck # Run code style check, type check, and tests
|
|
801
|
-
|
|
802
|
-
# Manual test using current code
|
|
803
|
-
pnpm dev generate -t claudecode -f "*"
|
|
804
|
-
pnpm dev import -t claudecode -f "*"
|
|
805
|
-
|
|
806
|
-
# Once you create .rulesync/rules/my-language.md and `pnpm dev generate`, you can use coding agents with your language.
|
|
807
|
-
# Japanese setting example:
|
|
808
|
-
cat << 'EOF' > .rulesync/rules/my-language.md
|
|
809
|
-
---
|
|
810
|
-
root: false
|
|
811
|
-
targets: ['*']
|
|
812
|
-
description: "It's a rule about language. If the rule file exists, you must always follow this."
|
|
813
|
-
globs: ["**/*"]
|
|
814
|
-
---
|
|
815
|
-
|
|
816
|
-
I'm a Japanese developer. So you must always answer in Japanese. On the other hand, reasoning(thinking) should be in English to improve token efficiency.
|
|
817
|
-
|
|
818
|
-
However, this project is for English speaking people. So when you write any code, comments, documentation, commit messages, PR title and PR descriptions, you must always use English.
|
|
819
|
-
EOF
|
|
820
|
-
pnpm dev generate
|
|
821
|
-
```
|
|
822
|
-
|
|
823
790
|
## FAQ
|
|
824
791
|
|
|
825
792
|
### Q. The generated `.mcp.json` doesn't work properly in Claude Code.
|