Skip to content

Commit bf71083

Browse files
committed
docs: update README with release instructions and v1.2.0 details
1 parent 54cdbea commit bf71083

1 file changed

Lines changed: 32 additions & 5 deletions

File tree

README.md

Lines changed: 32 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,20 @@ The bot runs on your development machine alongside OpenCode. When you send a com
5858

5959
### Prerequisites
6060

61-
- **Node.js 22+**[Download](https://nodejs.org/)
6261
- **OpenCode CLI** — Must be installed and working on your machine
6362
- **Discord Account** — With a server where you have admin permissions
6463

64+
### Standalone Executable (Windows)
65+
66+
The easiest way to use **remote-opencode** is to download the standalone `.exe` from our [Releases](https://github.com/Dayclone/remote-opencode/releases) page.
67+
68+
- **No Node.js required** — Everything is bundled inside the binary
69+
- **Portable** — Run it from any folder
70+
6571
### Install via npm
6672

73+
If you have **Node.js 22+** installed:
74+
6775
```bash
6876
# Global installation (recommended)
6977
npm install -g remote-opencode
@@ -72,19 +80,19 @@ npm install -g remote-opencode
7280
npx remote-opencode
7381
```
7482

75-
### Install from source
83+
### Build from source
7684

7785
```bash
78-
git clone https://github.com/RoundTable02/remote-opencode.git
86+
git clone https://github.com/Dayclone/remote-opencode.git
7987
cd remote-opencode
8088
npm install
8189
npm run build
8290
npm link # Makes 'remote-opencode' available globally
8391
```
8492

85-
### Build Standalone Executable (Windows)
93+
### Create your own Standalone Executable
8694

87-
If you want to create a single `.exe` that runs without Node.js installed:
95+
If you want to package your current source into a single `.exe`:
8896

8997
```bash
9098
# Generates dist/remote-opencode.exe
@@ -541,6 +549,11 @@ npm install
541549
npm run dev setup # Run setup
542550
npm run dev start # Start bot
543551

552+
# Code Quality
553+
npm run lint # Run ESLint
554+
npm run type-check # Run TypeScript check
555+
npm run format:check # Verify code formatting
556+
544557
# Build and run production
545558
npm run build
546559
npm start
@@ -593,6 +606,20 @@ src/
593606

594607
See [CHANGELOG.md](CHANGELOG.md) for a full history of changes.
595608

609+
### [1.2.0] - 2026-02-05
610+
611+
#### Added
612+
613+
- **Standalone Executable**: Full support for building a single, standalone `.exe` using Node.js SEA.
614+
- **New `/diff` Command**: View git changes (staged or unstaged) directly in Discord.
615+
- **CI/CD Pipeline**: Fully automated testing and release system that builds and attaches the EXE to every release.
616+
- **Node 24 Support**: Optimized for the latest Node.js runtimes.
617+
618+
#### Fixed
619+
620+
- **Security**: Forced `undici@^6.23.0` to resolve security advisories.
621+
- **Cleanup**: Removed unused `node-pty` dependency.
622+
596623
### [1.1.0] - 2026-02-05
597624

598625
#### Added

0 commit comments

Comments
 (0)