Reconcile canonical GnosysLabs/Hop publishing paths with accepted release implementation
CI / powershell-installer (push) Waiting to run
CI / test (push) Failing after 2m39s

Hop-State: A_06FN5C39XCC4JXJEAKVD5S0
Hop-Proposal: R_06FN5C2KP6Z8BKCP0KK1QZ0
Hop-Task: T_06FN3MBF98GWD4NA5PA1RWG
Hop-Attempt: AT_06FN5B04YJGZ2NFP2TJWM1R
This commit is contained in:
Hop
2026-07-11 12:38:41 -07:00
parent de99aad4d4
commit aad987e762
16 changed files with 36 additions and 36 deletions
+1 -1
View File
@@ -51,4 +51,4 @@ tracks which accepted state is physically visible, allowing safe catch-up with
`hop sync` without treating a divergent folder as disposable.
For the full product direction, read the
[product blueprint](https://githop.xyz/hop/hop/src/branch/main/docs/product-blueprint.md).
[product blueprint](https://githop.xyz/GnosysLabs/Hop/src/branch/main/docs/product-blueprint.md).
+2 -2
View File
@@ -27,13 +27,13 @@ visible project folder.
macOS or Linux:
```bash
curl -fsSL https://githop.xyz/hop/hop/raw/branch/main/scripts/install.sh | sh
curl -fsSL https://githop.xyz/GnosysLabs/Hop/raw/branch/main/scripts/install.sh | sh
```
Windows PowerShell:
```powershell
irm https://githop.xyz/hop/hop/raw/branch/main/scripts/install.ps1 | iex
irm https://githop.xyz/GnosysLabs/Hop/raw/branch/main/scripts/install.ps1 | iex
```
Restart Codex Desktop, open a Git project, and ask Codex to work normally. The
+6 -6
View File
@@ -6,7 +6,7 @@ newer; they do not need a local Go toolchain.
## macOS and Linux
```bash
curl -fsSL https://githop.xyz/hop/hop/raw/branch/main/scripts/install.sh | sh
curl -fsSL https://githop.xyz/GnosysLabs/Hop/raw/branch/main/scripts/install.sh | sh
```
The installer:
@@ -21,7 +21,7 @@ The installer:
Review before execution:
```bash
curl -fsSLO https://githop.xyz/hop/hop/raw/branch/main/scripts/install.sh
curl -fsSLO https://githop.xyz/GnosysLabs/Hop/raw/branch/main/scripts/install.sh
less install.sh
sh install.sh
```
@@ -35,7 +35,7 @@ Installer options are environment variables:
| `HOP_INSTALL_SKILL` | `1` | Set to `0` to skip Codex skill installation |
| `HOP_MODIFY_PATH` | `1` | Set to `0` to leave shell profiles unchanged |
| `HOP_GITEA_URL` | `https://githop.xyz` | Gitea instance base URL |
| `HOP_REPOSITORY` | `hop/hop` | Alternate Gitea owner/repository |
| `HOP_REPOSITORY` | `GnosysLabs/Hop` | Alternate Gitea owner/repository |
Example:
@@ -48,7 +48,7 @@ HOP_VERSION=v0.1.0 HOP_INSTALL_DIR="$HOME/bin" sh install.sh
In PowerShell as your normal user:
```powershell
irm https://githop.xyz/hop/hop/raw/branch/main/scripts/install.ps1 | iex
irm https://githop.xyz/GnosysLabs/Hop/raw/branch/main/scripts/install.ps1 | iex
```
The script verifies the Windows archive, installs to
@@ -67,7 +67,7 @@ Use `-SkipSkill` only when another agent runtime will receive the skill. Use
With Go 1.26 or newer:
```bash
go install githop.xyz/hop/hop/cmd/hop@latest
go install githop.xyz/GnosysLabs/Hop/cmd/hop@latest
hop skill install --force
```
@@ -76,7 +76,7 @@ Put `$(go env GOPATH)/bin` on PATH if `hop` is not found.
## Build from source
```bash
git clone https://githop.xyz/hop/hop.git
git clone https://githop.xyz/GnosysLabs/Hop.git
cd hop
go test ./...
go build -trimpath -o hop ./cmd/hop
+4 -4
View File
@@ -3,12 +3,12 @@
Hop releases are built on `githop.xyz` by Gitea Actions and uploaded by
GoReleaser as draft Gitea Releases.
The examples assume the canonical repository is `githop.xyz/hop/hop`.
The canonical repository is `githop.xyz/GnosysLabs/Hop`.
## One-time Gitea setup
- Create the `hop/hop` repository and set its default branch to `main`.
- Configure `origin` as `https://githop.xyz/hop/hop.git`.
- Create the `GnosysLabs/Hop` repository and set its default branch to `main`.
- Configure `origin` as `https://githop.xyz/GnosysLabs/Hop.git`.
- Run a currently patched Gitea 1.26.x or newer, enable Actions, and enable
Actions for the repository. Hop's least-privilege workflow uses the 1.26 job
token permission model.
@@ -30,7 +30,7 @@ The examples assume the canonical repository is `githop.xyz/hop/hop`.
- Add `SECURITY.md` with a monitored private disclosure address.
- Create an offline-controlled release-signing key, publish its public key, and
add detached signing for `checksums.txt` before general availability.
- Confirm the `githop.xyz/hop/hop` Go import path serves valid `go-import`
- Confirm the `githop.xyz/GnosysLabs/Hop` Go import path serves valid `go-import`
metadata.
- Back up the Gitea database, repositories, release attachments, and Actions
secrets.
+4 -4
View File
@@ -5,20 +5,20 @@
Rerun the installer. It replaces the binary and refreshes the embedded skill:
```bash
curl -fsSL https://githop.xyz/hop/hop/raw/branch/main/scripts/install.sh | sh
curl -fsSL https://githop.xyz/GnosysLabs/Hop/raw/branch/main/scripts/install.sh | sh
```
Pin a release when required:
```bash
curl -fsSL https://githop.xyz/hop/hop/raw/branch/main/scripts/install.sh | \
curl -fsSL https://githop.xyz/GnosysLabs/Hop/raw/branch/main/scripts/install.sh | \
HOP_VERSION=v0.1.0 sh
```
Windows:
```powershell
irm https://githop.xyz/hop/hop/raw/branch/main/scripts/install.ps1 -OutFile install.ps1
irm https://githop.xyz/GnosysLabs/Hop/raw/branch/main/scripts/install.ps1 -OutFile install.ps1
.\install.ps1 -Version v0.1.0
Remove-Item install.ps1
```
@@ -36,7 +36,7 @@ Restart Codex Desktop when the installed skill changed.
## Upgrade Go installations
```bash
go install githop.xyz/hop/hop/cmd/hop@latest
go install githop.xyz/GnosysLabs/Hop/cmd/hop@latest
hop skill install --force
```