rulesync 3.17.0 → 3.18.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 CHANGED
@@ -70,16 +70,38 @@ chmod +x rulesync
70
70
  sudo mv rulesync /usr/local/bin/
71
71
  ```
72
72
 
73
+ #### Windows (x64)
74
+
75
+ ```powershell
76
+ # PowerShell
77
+ Invoke-WebRequest -Uri "https://github.com/dyoshikawa/rulesync/releases/latest/download/rulesync-windows-x64.exe" -OutFile "rulesync.exe"
78
+ # Add to PATH or place in a directory already in PATH
79
+ Move-Item rulesync.exe C:\Windows\System32\
80
+ ```
81
+
82
+ Or using curl (if available):
83
+
84
+ ```bash
85
+ curl -L https://github.com/dyoshikawa/rulesync/releases/latest/download/rulesync-windows-x64.exe -o rulesync.exe
86
+ # Place the binary wherever set PATH
87
+ ```
88
+
73
89
  #### Verify checksums
74
90
 
75
91
  ```bash
76
92
  curl -L https://github.com/dyoshikawa/rulesync/releases/latest/download/SHA256SUMS -o SHA256SUMS
77
- sha256sum -c SHA256SUMS
78
- ```
79
93
 
80
- #### Windows support?
94
+ # Linux/macOS
95
+ sha256sum -c SHA256SUMS
81
96
 
82
- Though Windows is not supported yet, we are positively considering it.
97
+ # Windows (PowerShell)
98
+ # Download SHA256SUMS file first, then verify:
99
+ Get-FileHash rulesync.exe -Algorithm SHA256 | ForEach-Object {
100
+ $actual = $_.Hash.ToLower()
101
+ $expected = (Get-Content SHA256SUMS | Select-String "rulesync-windows-x64.exe").ToString().Split()[0]
102
+ if ($actual -eq $expected) { "✓ Checksum verified" } else { "✗ Checksum mismatch" }
103
+ }
104
+ ```
83
105
  </details>
84
106
 
85
107
  ## Getting Started
package/dist/index.cjs CHANGED
@@ -7707,7 +7707,7 @@ Attention, again, you are just the planner, so though you can read any files and
7707
7707
  }
7708
7708
 
7709
7709
  // src/cli/index.ts
7710
- var getVersion = () => "3.17.0";
7710
+ var getVersion = () => "3.18.0";
7711
7711
  var main = async () => {
7712
7712
  const program = new import_commander.Command();
7713
7713
  const version = getVersion();
package/dist/index.js CHANGED
@@ -7684,7 +7684,7 @@ Attention, again, you are just the planner, so though you can read any files and
7684
7684
  }
7685
7685
 
7686
7686
  // src/cli/index.ts
7687
- var getVersion = () => "3.17.0";
7687
+ var getVersion = () => "3.18.0";
7688
7688
  var main = async () => {
7689
7689
  const program = new Command();
7690
7690
  const version = getVersion();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rulesync",
3
- "version": "3.17.0",
3
+ "version": "3.18.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",
@@ -91,6 +91,7 @@
91
91
  "bcheck": "biome check .",
92
92
  "bcheck:fix": "biome check --write .",
93
93
  "build": "tsup src/cli/index.ts --format cjs,esm --dts --clean",
94
+ "bundle:deno": "tsup --config tsup.deno.config.ts",
94
95
  "check": "pnpm run bcheck && pnpm run oxlint && pnpm run eslint && pnpm run typecheck",
95
96
  "cicheck": "pnpm run cicheck:code && pnpm run cicheck:content",
96
97
  "cicheck:code": "pnpm run check && pnpm run test",