@bniladridas/cursor 0.1.17 → 0.1.18
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/.github/workflows/release.yml +1 -0
- package/README.md +8 -3
- package/package.json +3 -2
- package/release/checksums.txt +4 -4
- package/release/cursor-linux/cursor_v0.1.18_linux_amd64.tar.gz +0 -0
- package/release/cursor-macos/cursor-0.1.18.arm64_sequoia.bottle.tar.gz +0 -0
- package/release/cursor-macos/cursor_v0.1.18_darwin_arm64.tar.gz +0 -0
- package/release/cursor-windows/cursor__windows_amd64.zip +0 -0
- package/release/cursor-linux/cursor_v0.1.17_linux_amd64.tar.gz +0 -0
- package/release/cursor-macos/cursor-0.1.17.arm64_sequoia.bottle.tar.gz +0 -0
- package/release/cursor-macos/cursor_v0.1.17_darwin_arm64.tar.gz +0 -0
|
@@ -71,6 +71,7 @@ jobs:
|
|
|
71
71
|
# build bottle
|
|
72
72
|
mkdir -p bottle/cursor/${version}/bin
|
|
73
73
|
cp ../build/bin/cursor-agent bottle/cursor/${version}/bin/cursor-agent
|
|
74
|
+
cp ../.env.example bottle/cursor/${version}/.env.example
|
|
74
75
|
tar -C bottle -czf cursor-${version}.arm64_sequoia.bottle.tar.gz cursor
|
|
75
76
|
|
|
76
77
|
- uses: actions/upload-artifact@v6
|
package/README.md
CHANGED
|
@@ -17,15 +17,20 @@ npm i -g @bniladridas/cursor
|
|
|
17
17
|
**Homebrew** (binary: `cursor-agent`):
|
|
18
18
|
```bash
|
|
19
19
|
brew tap palmshed/cursor
|
|
20
|
-
brew install cursor
|
|
20
|
+
brew install palmshed/cursor/cursor --formula
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
**Curl** (binary: `cursor-agent`):
|
|
24
24
|
```bash
|
|
25
|
-
curl -fsSL https://github.com/bniladridas/cursor/raw/main/install.sh | sh
|
|
25
|
+
curl -fsSL https://github.com/bniladridas/cursor/raw/main/install.sh | sudo sh
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
To install to a writable directory without `sudo`:
|
|
29
|
+
```bash
|
|
30
|
+
curl -fsSL https://github.com/bniladridas/cursor/raw/main/install.sh | INSTALL_DIR=~/.local/bin sh
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
**From source** (binary: `cursor-agent`):
|
|
29
34
|
```bash
|
|
30
35
|
cmake -S . -B build && cmake --build build
|
|
31
36
|
./build/cursor-tests # run tests
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bniladridas/cursor",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.18",
|
|
4
4
|
"description": "Cross-platform AI coding agent",
|
|
5
5
|
"bin": {
|
|
6
|
-
"cursor": "cli.js"
|
|
6
|
+
"cursor": "cli.js",
|
|
7
|
+
"cursor-agent": "cli.js"
|
|
7
8
|
},
|
|
8
9
|
"scripts": {
|
|
9
10
|
"postinstall": "node install.js"
|
package/release/checksums.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
2ff08d50eccab30794af1ba14a38b687270dd5d31d7565043df0750d3d793395 release/cursor-macos/cursor_v0.1.18_darwin_arm64.tar.gz
|
|
2
|
+
fb6c8f1ebc720215c1264be0599f8412458f6826783a6f4da2b01d9f76270efe release/cursor-macos/cursor-0.1.18.arm64_sequoia.bottle.tar.gz
|
|
3
|
+
4901f6e8c246e06b17c0079070b3917d5cf1b453680337cd53042d0063486aa0 release/cursor-linux/cursor_v0.1.18_linux_amd64.tar.gz
|
|
4
|
+
e5cb825a007d33f8defc7af8c6aa43e891108b796fd14086d374e2387cb1b8c2 release/cursor-windows/cursor__windows_amd64.zip
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|