chore: update repository links after organization transfer

This commit is contained in:
Ogulcan Celik 2026-07-29 23:29:29 +03:00
parent 2313fb8ac3
commit 3563f5c56e
25 changed files with 406 additions and 406 deletions

View File

@ -15,7 +15,7 @@ DEFAULT_LIVE_MANIFEST_URL = "https://herdr.dev/latest.json"
SECTION_RE = re.compile(r"^##\s+(?:\[(?P<bracketed>[^\]]+)\]|(?P<plain>.+?))\s*$", re.MULTILINE)
VERSION_WITH_DATE_RE = re.compile(r"^(?P<version>.+?)\s+-\s+\d{4}-\d{2}-\d{2}$")
DEFAULT_RELEASE_REPO = "ogulcancelik/herdr"
DEFAULT_RELEASE_REPO = "herdrdev/herdr"
DEFAULT_LATEST_JSON_PATH = Path("website/latest.json")
DEFAULT_PRODUCT_ANNOUNCEMENT_PATH = Path("docs/next/product-announcement.json")
PROTOCOL_SOURCE_PATH = Path("src/protocol/wire.rs")

View File

@ -299,13 +299,13 @@ def main() -> int:
notes.add_argument("--commit", required=True)
notes.add_argument("--build-id", required=True)
notes.add_argument("--base-version", required=True)
notes.add_argument("--repo", default="ogulcancelik/herdr")
notes.add_argument("--repo", default="herdrdev/herdr")
notes.add_argument("--output", required=True)
notes.set_defaults(func=cmd_notes)
manifest = sub.add_parser("manifest")
manifest.add_argument("--output", default="website/preview.json")
manifest.add_argument("--repo", default="ogulcancelik/herdr")
manifest.add_argument("--repo", default="herdrdev/herdr")
manifest.add_argument("--tag", required=True)
manifest.add_argument("--build-id", required=True)
manifest.add_argument("--commit", required=True)

View File

@ -76,10 +76,10 @@ class ChangelogScriptTests(unittest.TestCase):
self.assertEqual(
manifest["assets"],
{
"linux-x86_64": "https://github.com/ogulcancelik/herdr/releases/download/v0.1.1/herdr-linux-x86_64",
"linux-aarch64": "https://github.com/ogulcancelik/herdr/releases/download/v0.1.1/herdr-linux-aarch64",
"macos-x86_64": "https://github.com/ogulcancelik/herdr/releases/download/v0.1.1/herdr-macos-x86_64",
"macos-aarch64": "https://github.com/ogulcancelik/herdr/releases/download/v0.1.1/herdr-macos-aarch64",
"linux-x86_64": "https://github.com/herdrdev/herdr/releases/download/v0.1.1/herdr-linux-x86_64",
"linux-aarch64": "https://github.com/herdrdev/herdr/releases/download/v0.1.1/herdr-linux-aarch64",
"macos-x86_64": "https://github.com/herdrdev/herdr/releases/download/v0.1.1/herdr-macos-x86_64",
"macos-aarch64": "https://github.com/herdrdev/herdr/releases/download/v0.1.1/herdr-macos-aarch64",
},
)
self.assertEqual(manifest["releases"]["0.1.1"]["assets"], manifest["assets"])

View File

@ -31,7 +31,7 @@ class PreviewNotesTests(unittest.TestCase):
notes = "Preview notes\n"
content = preview.build_manifest(
output=output,
repo="ogulcancelik/herdr",
repo="herdrdev/herdr",
tag="preview-2026-06-02-abcdef123456",
build_id="2026-06-02-abcdef123456",
commit="abcdef1234567890",
@ -54,7 +54,7 @@ class PreviewNotesTests(unittest.TestCase):
)
self.assertEqual(
data["assets"]["windows-x86_64"]["url"],
"https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-02-abcdef123456/herdr-windows-x86_64.zip",
"https://github.com/herdrdev/herdr/releases/download/preview-2026-06-02-abcdef123456/herdr-windows-x86_64.zip",
)
self.assertEqual(
data["assets"]["windows-x86_64"]["sha256"],
@ -68,7 +68,7 @@ class PreviewNotesTests(unittest.TestCase):
with self.assertRaisesRegex(ValueError, "windows-x86_64 requires"):
preview.build_manifest(
output=Path(tmp) / "preview.json",
repo="ogulcancelik/herdr",
repo="herdrdev/herdr",
tag="preview-test",
build_id="test",
commit="abcdef",
@ -192,7 +192,7 @@ title: Install Herdr
import ConfigReference from '../../components/ConfigReference.astro';
[Install](/docs/install/)
[Skill](https://github.com/ogulcancelik/herdr/blob/master/SKILL.md)
[Skill](https://github.com/herdrdev/herdr/blob/master/SKILL.md)
file: ../../../public/assets/logo.svg
"""
output = subprocess.check_output(

View File

@ -2,7 +2,7 @@
You are reading this because a human asked you to help them understand, set up, or troubleshoot Herdr. This file gives you the concept model, the setup path, and the diagnosis recipes so you can guide them accurately. Canonical documentation lives at https://herdr.dev/docs/ — link the human there for depth, and verify any command you are unsure about against those pages instead of guessing.
If you are running *inside* a Herdr pane (the environment variable `HERDR_ENV=1` is set), Herdr also ships a skill file that teaches you to control Herdr yourself through the `herdr` CLI: https://raw.githubusercontent.com/ogulcancelik/herdr/master/skills/herdr/SKILL.md. That file is about you operating Herdr; this file is about you teaching a human.
If you are running *inside* a Herdr pane (the environment variable `HERDR_ENV=1` is set), Herdr also ships a skill file that teaches you to control Herdr yourself through the `herdr` CLI: https://raw.githubusercontent.com/herdrdev/herdr/master/skills/herdr/SKILL.md. That file is about you operating Herdr; this file is about you teaching a human.
## What Herdr is
@ -65,9 +65,9 @@ Important framing for new users: Herdr does not require learning keybindings. Th
## Install the Herdr skill into yourself
Herdr ships `skills/herdr/SKILL.md` (https://raw.githubusercontent.com/ogulcancelik/herdr/master/skills/herdr/SKILL.md), an instruction file that teaches a coding agent to control Herdr from inside a pane — splitting panes, running commands without stealing focus, reading output, waiting on other agents.
Herdr ships `skills/herdr/SKILL.md` (https://raw.githubusercontent.com/herdrdev/herdr/master/skills/herdr/SKILL.md), an instruction file that teaches a coding agent to control Herdr from inside a pane — splitting panes, running commands without stealing focus, reading output, waiting on other agents.
Once the human is set up, offer to install it into your own harness so future sessions know Herdr natively. For agents supported by the open skills CLI, use `npx skills add ogulcancelik/herdr --skill herdr -g`. Agents without a skill system can paste the GitHub copy above into global custom instructions. Ask the human before writing to their config locations, and use the GitHub copy above as the source of truth.
Once the human is set up, offer to install it into your own harness so future sessions know Herdr natively. For agents supported by the open skills CLI, use `npx skills add herdrdev/herdr --skill herdr -g`. Agents without a skill system can paste the GitHub copy above into global custom instructions. Ask the human before writing to their config locations, and use the GitHub copy above as the source of truth.
## Configuration

View File

@ -2,7 +2,7 @@ import { defineConfig } from 'astro/config';
import sitemap from '@astrojs/sitemap';
import starlight from '@astrojs/starlight';
const repoBlob = 'https://github.com/ogulcancelik/herdr/blob/master/';
const repoBlob = 'https://github.com/herdrdev/herdr/blob/master/';
const nonCanonicalDocsPath = /^\/(?:ja\/|zh-cn\/)?docs\/(?:preview|\d+\.\d+\.\d+)(?:\/|$)/;
function rewriteHerdrLinks() {
@ -77,7 +77,7 @@ export default defineConfig({
{
icon: 'github',
label: 'GitHub',
href: 'https://github.com/ogulcancelik/herdr',
href: 'https://github.com/herdrdev/herdr',
},
],
components: {
@ -146,7 +146,7 @@ export default defineConfig({
},
],
editLink: {
baseUrl: 'https://github.com/ogulcancelik/herdr/edit/master/',
baseUrl: 'https://github.com/herdrdev/herdr/edit/master/',
},
lastUpdated: true,
disable404Route: true,

View File

@ -90,7 +90,7 @@
<a href="/docs/">Docs</a>
<a href="/docs/socket-api/">API</a>
<a href="/docs/install/">Install</a>
<a href="https://github.com/ogulcancelik/herdr">GitHub</a>
<a href="https://github.com/herdrdev/herdr">GitHub</a>
</div>
</details>
<div class="nav-links">
@ -104,7 +104,7 @@
<a href="/docs/socket-api/">API</a>
</div>
<div class="nav-tools">
<a class="nav-icon-link has-count" href="https://github.com/ogulcancelik/herdr" aria-label="Herdr on GitHub">
<a class="nav-icon-link has-count" href="https://github.com/herdrdev/herdr" aria-label="Herdr on GitHub">
<svg viewBox="0 0 16 16" aria-hidden="true">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82A7.64 7.64 0 0 1 8 3.87c.68 0 1.36.09 2 .26 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8Z" />
</svg>
@ -167,7 +167,7 @@
<button
class="install-method"
type="button"
data-command="nix run github:ogulcancelik/herdr"
data-command="nix run github:herdrdev/herdr"
data-size="normal"
aria-pressed="false"
>Nix flake</button>
@ -849,13 +849,13 @@ $ herdr</code></pre>
<a href="/docs/">Docs</a>
<a href="/docs/configuration/">Configuration</a>
<a href="/docs/socket-api/">API</a>
<a href="https://github.com/ogulcancelik/herdr/releases"
<a href="https://github.com/herdrdev/herdr/releases"
>Releases</a
>
<a href="mailto:hey@herdr.dev">hey@herdr.dev</a>
</div>
<nav class="footer-social" aria-label="Social links">
<a href="https://github.com/ogulcancelik/herdr" aria-label="Herdr on GitHub">
<a href="https://github.com/herdrdev/herdr" aria-label="Herdr on GitHub">
<svg viewBox="0 0 16 16" aria-hidden="true">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82A7.64 7.64 0 0 1 8 3.87c.68 0 1.36.09 2 .26 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8Z" />
</svg>

File diff suppressed because one or more lines are too long

View File

@ -6,26 +6,26 @@
"commit": "44b3adb125524ea9a55739eee3776f922f2115ad",
"built_at": "2026-07-29T13:32:08Z",
"protocol": 18,
"notes": "Preview build 2026-07-29-44b3adb12552\n\nBuilt from `44b3adb12552` on `master`.\nBase stable: v0.7.5\nCompare: https://github.com/ogulcancelik/herdr/compare/0f10e1453a7f9fda357352bb65ce17fa26fda447...44b3adb125524ea9a55739eee3776f922f2115ad\n\n### Added\n- Print bundled agent skill and hint next cli steps\n- Switch IME to ASCII in prefix mode on Windows (Korean IME) (#1823)\n- Filter keybind help (#1832)\n- Add grok cli integration for native session restore (#1807)\n- Publish versioned release documentation\n\n### Fixed\n- Preserve parent agent ownership\n- Preserve windows path variables during install\n- Restore system notifications and sound playback (#2019)\n- Preserve navigate mode after pane focus (#1993)\n- Restore python3 commit hook\n- Select windows python command in commit hook (#1994)\n- Count ptmx master fds under devpts layouts (#1984)\n- Preserve linked worktree workspace labels\n- Ignore nested codex session reports (#1927)\n- Resolve relative plugin commands from plugin root\n- Keep focus on the current workspace when another self-closes (#1912)\n- Make native windows checks reliable (#1925)\n- Close workspace when api closes its last tab (#1899)\n- Preserve shift-enter in windows panes (#1909)\n- Delay agent prompt submission\n- Ignore empty clipboard writes\n- Restrict unapproved pull requests to bug fixes\n- Include SKILL.md in the package fileset (#1890)\n- Repaint after transient terminal resizes\n- Preserve prefix mode for modifier events\n- Preserve focus when closing a non-focused workspace (#1877)\n- Support non-us shifted keybindings (#1876)\n- Improve sidebar worktree hierarchy and reordering (#1873)\n- Avoid renders for passive mouse motion (#1872)\n- Add rust-analyzer to development shell\n- Copy retained mouse selections with keyboard shortcuts\n- Run pi worktree ext on background\n- Bundle modern ConPTY on Windows (#1828)\n- Harden hermes lifecycle detection\n- Report truncated pane reads\n- Make known-agent exit process-owned\n- Answer XTWINOPS size queries in panes\n- Prefer branded homepage search image\n- Consume handled url click gestures\n- Preserve kitty graphics during host repaints\n- Inherit host palette in pane queries (#1759)\n- Preserve kitty printable key releases\n- Preserve physical escape on windows\n- Respect OMP config directory override\n- Keep reading while pty input is blocked\n- Fall back to sh for remote path discovery\n\n### Performance\n- Skip rendering hidden pty updates\n- Replace agent spinners with static status marks\n- Avoid full pane renders for spinner animation (#1868)\n- Eliminate repeated workspace git discovery (#1842)\n\n### Maintenance\n- Remove flaky sound timing assertion\n- Remove approved contributor bypass\n- Add simplified chinese readme (#1990)\n- Update sponsor acknowledgements\n- Harden pull request workflow execution\n- Gate pull request review by scope\n- Consolidate project skills\n- Define maintainer and agent contribution workflows\n- Relicense herdr under apache-2.0\n- Centralize new terminal cwd selection\n- Name darwin nix toolchain inputs\n- Simplify macos input source ownership\n- Clarify opencode event state mapping\n- Simplify cursor session reporting\n- Simplify kimi lifecycle reporting\n- Simplify qoder session reporting\n- Replace pane mouse and clipboard internals\n- Add alternate-screen output fallback",
"notes": "Preview build 2026-07-29-44b3adb12552\n\nBuilt from `44b3adb12552` on `master`.\nBase stable: v0.7.5\nCompare: https://github.com/herdrdev/herdr/compare/0f10e1453a7f9fda357352bb65ce17fa26fda447...44b3adb125524ea9a55739eee3776f922f2115ad\n\n### Added\n- Print bundled agent skill and hint next cli steps\n- Switch IME to ASCII in prefix mode on Windows (Korean IME) (#1823)\n- Filter keybind help (#1832)\n- Add grok cli integration for native session restore (#1807)\n- Publish versioned release documentation\n\n### Fixed\n- Preserve parent agent ownership\n- Preserve windows path variables during install\n- Restore system notifications and sound playback (#2019)\n- Preserve navigate mode after pane focus (#1993)\n- Restore python3 commit hook\n- Select windows python command in commit hook (#1994)\n- Count ptmx master fds under devpts layouts (#1984)\n- Preserve linked worktree workspace labels\n- Ignore nested codex session reports (#1927)\n- Resolve relative plugin commands from plugin root\n- Keep focus on the current workspace when another self-closes (#1912)\n- Make native windows checks reliable (#1925)\n- Close workspace when api closes its last tab (#1899)\n- Preserve shift-enter in windows panes (#1909)\n- Delay agent prompt submission\n- Ignore empty clipboard writes\n- Restrict unapproved pull requests to bug fixes\n- Include SKILL.md in the package fileset (#1890)\n- Repaint after transient terminal resizes\n- Preserve prefix mode for modifier events\n- Preserve focus when closing a non-focused workspace (#1877)\n- Support non-us shifted keybindings (#1876)\n- Improve sidebar worktree hierarchy and reordering (#1873)\n- Avoid renders for passive mouse motion (#1872)\n- Add rust-analyzer to development shell\n- Copy retained mouse selections with keyboard shortcuts\n- Run pi worktree ext on background\n- Bundle modern ConPTY on Windows (#1828)\n- Harden hermes lifecycle detection\n- Report truncated pane reads\n- Make known-agent exit process-owned\n- Answer XTWINOPS size queries in panes\n- Prefer branded homepage search image\n- Consume handled url click gestures\n- Preserve kitty graphics during host repaints\n- Inherit host palette in pane queries (#1759)\n- Preserve kitty printable key releases\n- Preserve physical escape on windows\n- Respect OMP config directory override\n- Keep reading while pty input is blocked\n- Fall back to sh for remote path discovery\n\n### Performance\n- Skip rendering hidden pty updates\n- Replace agent spinners with static status marks\n- Avoid full pane renders for spinner animation (#1868)\n- Eliminate repeated workspace git discovery (#1842)\n\n### Maintenance\n- Remove flaky sound timing assertion\n- Remove approved contributor bypass\n- Add simplified chinese readme (#1990)\n- Update sponsor acknowledgements\n- Harden pull request workflow execution\n- Gate pull request review by scope\n- Consolidate project skills\n- Define maintainer and agent contribution workflows\n- Relicense herdr under apache-2.0\n- Centralize new terminal cwd selection\n- Name darwin nix toolchain inputs\n- Simplify macos input source ownership\n- Clarify opencode event state mapping\n- Simplify cursor session reporting\n- Simplify kimi lifecycle reporting\n- Simplify qoder session reporting\n- Replace pane mouse and clipboard internals\n- Add alternate-screen output fallback",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-linux-x86_64",
"sha256": "2d50d64ab849c3d0f5d0d53e0bebd00fa94d5ed120797532c8fcfd1a679ebc19"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-linux-aarch64",
"sha256": "2167fb9127d0a67c1dad368d54e6468fd7c2a3858b832922c7f0c264d012be13"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-macos-x86_64",
"sha256": "b9316cdff4802f325f6b77b83ea36cd33deb8da4ef9efa8454423b0ce8de77fc"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-macos-aarch64",
"sha256": "99941b4a40e852c8f21694c7ec1e96f85abd4f764d9f667757c65fae6e4b065b"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-windows-x86_64.zip",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-windows-x86_64.zip",
"sha256": "ead450c21d31ea559289d45e4c60d14bb0a7ff0937668a309e74c6a3f9f6cca1",
"format": "zip"
}
@ -39,23 +39,23 @@
"tag": "preview-2026-07-29-44b3adb12552",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-linux-x86_64",
"sha256": "2d50d64ab849c3d0f5d0d53e0bebd00fa94d5ed120797532c8fcfd1a679ebc19"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-linux-aarch64",
"sha256": "2167fb9127d0a67c1dad368d54e6468fd7c2a3858b832922c7f0c264d012be13"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-macos-x86_64",
"sha256": "b9316cdff4802f325f6b77b83ea36cd33deb8da4ef9efa8454423b0ce8de77fc"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-macos-aarch64",
"sha256": "99941b4a40e852c8f21694c7ec1e96f85abd4f764d9f667757c65fae6e4b065b"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-windows-x86_64.zip",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-29-44b3adb12552/herdr-windows-x86_64.zip",
"sha256": "ead450c21d31ea559289d45e4c60d14bb0a7ff0937668a309e74c6a3f9f6cca1",
"format": "zip"
}
@ -69,23 +69,23 @@
"tag": "preview-2026-07-21-0f10e1453a7f",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-21-0f10e1453a7f/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-21-0f10e1453a7f/herdr-linux-x86_64",
"sha256": "f2d4e50e7e2492bb1a6707b2e42aa27344ceb1ec2dec3f870caa8b5223a875eb"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-21-0f10e1453a7f/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-21-0f10e1453a7f/herdr-linux-aarch64",
"sha256": "1ff9d07c0ad13e5fede74cbd2cdc79021ffafd9efcd669851c996b7e528150c6"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-21-0f10e1453a7f/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-21-0f10e1453a7f/herdr-macos-x86_64",
"sha256": "4b4952618ba3491439f14dd2e84d43a37aa320cbb57103bcf647c110225922ad"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-21-0f10e1453a7f/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-21-0f10e1453a7f/herdr-macos-aarch64",
"sha256": "5ce638f8891db503bf7a4cd25464188c9275b9fea9e9bee0615ed8ba42a9191c"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-21-0f10e1453a7f/herdr-windows-x86_64.exe",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-21-0f10e1453a7f/herdr-windows-x86_64.exe",
"sha256": "75c85763db0ca5fd13b485d0728cc3e9ea1152964a4e976e1d49f2e86b01a92b"
}
}
@ -98,23 +98,23 @@
"tag": "preview-2026-07-17-813fec141faa",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-17-813fec141faa/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-17-813fec141faa/herdr-linux-x86_64",
"sha256": "9ef34a56091f5b3e2054c2a8e6aabd9056fe22e2fad36147a51ec8dc8f4fde73"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-17-813fec141faa/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-17-813fec141faa/herdr-linux-aarch64",
"sha256": "d1fc0ddd3ce161a5718131b9fde063846ca1348bde50abf71d5e01a43fd93d8d"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-17-813fec141faa/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-17-813fec141faa/herdr-macos-x86_64",
"sha256": "f0c2541c3a21cccd95173b5e9356884415e41b77aeb66c536324fa70227b5598"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-17-813fec141faa/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-17-813fec141faa/herdr-macos-aarch64",
"sha256": "9103b90851242053a4778d5e16364c1afd178a2a2f6cf8c1705f0e75b4c470b3"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-17-813fec141faa/herdr-windows-x86_64.exe",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-17-813fec141faa/herdr-windows-x86_64.exe",
"sha256": "2b53a21755d6393515f84c246b6297d46103e7e741714bcf2244b408c1178d57"
}
}
@ -127,23 +127,23 @@
"tag": "preview-2026-07-16-e907e6a36646",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-16-e907e6a36646/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-16-e907e6a36646/herdr-linux-x86_64",
"sha256": "d0f0da4068a902c0ffc0ca1104df1e6e608cff75c16701cef84f1a71aa770a26"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-16-e907e6a36646/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-16-e907e6a36646/herdr-linux-aarch64",
"sha256": "e4211681df4eaaebf05e1917f58bb38f5487a7f6c17057b596382ccb5fffe879"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-16-e907e6a36646/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-16-e907e6a36646/herdr-macos-x86_64",
"sha256": "cebe6f87f9f03a4bf1c2d6c315d8ab6bcd16d838471164e5cb12862c57cece8f"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-16-e907e6a36646/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-16-e907e6a36646/herdr-macos-aarch64",
"sha256": "f75f6afb79b04807d7295114357612048eea16eaf9a7e8871dbb1ffda6d1fdca"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-16-e907e6a36646/herdr-windows-x86_64.exe",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-16-e907e6a36646/herdr-windows-x86_64.exe",
"sha256": "a5827b33cbd0352e4c0f1469ca6e0f71083e1333cf0250ca9dbecc41770a6d30"
}
}
@ -156,23 +156,23 @@
"tag": "preview-2026-07-15-50aaa2ec046e",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-15-50aaa2ec046e/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-15-50aaa2ec046e/herdr-linux-x86_64",
"sha256": "9ba11e56ace4286077ef279a86476f6f2f81f2faf0280f1e56249b6f4bc4b160"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-15-50aaa2ec046e/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-15-50aaa2ec046e/herdr-linux-aarch64",
"sha256": "11ef0d1a64b097e479f95e2578c2fee4e11d208640a6a98ea70ade968d145c7a"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-15-50aaa2ec046e/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-15-50aaa2ec046e/herdr-macos-x86_64",
"sha256": "b1817355df28be4fd725d1795577e400f8edd90d3e807224b508a0c8e628c3ef"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-15-50aaa2ec046e/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-15-50aaa2ec046e/herdr-macos-aarch64",
"sha256": "e1aa34cc33b3a30be4a5a5fd04bebf05c2011e4fb095f5ff20340eb200b5a1f9"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-15-50aaa2ec046e/herdr-windows-x86_64.exe",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-15-50aaa2ec046e/herdr-windows-x86_64.exe",
"sha256": "1d99fa64974a69aa451230ba0c356c8466a4fb96fecb933abf81dd00f6dfc90e"
}
}
@ -185,23 +185,23 @@
"tag": "preview-2026-07-07-f5354780e4ef",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-07-f5354780e4ef/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-07-f5354780e4ef/herdr-linux-x86_64",
"sha256": "d5bc1b05c7d6f7ad9a00cc251b840aaac09026dcacaf6cf9dd51fc6e72cbe319"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-07-f5354780e4ef/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-07-f5354780e4ef/herdr-linux-aarch64",
"sha256": "76787f396f4d791f4900c1277ab4758a3c995abb2fa0e0c458bf7158ca31af46"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-07-f5354780e4ef/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-07-f5354780e4ef/herdr-macos-x86_64",
"sha256": "7b70ca227b1265fce74cd1079257905a3061c53b8f43fdf9944ea1a0d7acf1df"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-07-f5354780e4ef/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-07-f5354780e4ef/herdr-macos-aarch64",
"sha256": "ccf23f9d057d8bee8da1868bd26726971a556b344e151a33772967aa3da47d1d"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-07-f5354780e4ef/herdr-windows-x86_64.exe",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-07-f5354780e4ef/herdr-windows-x86_64.exe",
"sha256": "9b28eb0a3a55ca2ca9d47e96397544d2cbcca965d88a40b8bd8ccacfb61333ba"
}
}
@ -214,23 +214,23 @@
"tag": "preview-2026-07-06-4dae557eefd9",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-06-4dae557eefd9/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-06-4dae557eefd9/herdr-linux-x86_64",
"sha256": "89cdcb7303b2461ed53659c1e27cabc40eb1c4d7f4014bc0d3420c7884cbdfb0"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-06-4dae557eefd9/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-06-4dae557eefd9/herdr-linux-aarch64",
"sha256": "10dc280b5df1f889d529986fbfbd2c15b6ad5104413ad5f9ea27b353321230a2"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-06-4dae557eefd9/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-06-4dae557eefd9/herdr-macos-x86_64",
"sha256": "682a9ac9eb9c23d35bb4dcf34089dc9fbdc0872e60763463c874e7207f400a73"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-06-4dae557eefd9/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-06-4dae557eefd9/herdr-macos-aarch64",
"sha256": "5d02f2f30377c1790bee0a24c38532377cf67f5c8d009302b120406c48a7a796"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-07-06-4dae557eefd9/herdr-windows-x86_64.exe",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-07-06-4dae557eefd9/herdr-windows-x86_64.exe",
"sha256": "7c2189c218d210fa253e579c3d50b9c501cb16c3d3729e1de3dba366c5773a14"
}
}
@ -243,23 +243,23 @@
"tag": "preview-2026-06-30-3459798b606d",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-30-3459798b606d/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-30-3459798b606d/herdr-linux-x86_64",
"sha256": "0302d856719ccc6e41288d2640db7361e3c2e63047d75c14d4da96177fdd76fe"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-30-3459798b606d/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-30-3459798b606d/herdr-linux-aarch64",
"sha256": "e48a407a4276491ef946f093c5a789adc53b369a78e40e7ef322b9a094db78a4"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-30-3459798b606d/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-30-3459798b606d/herdr-macos-x86_64",
"sha256": "69558cfb8afaef115d0a0a78c3b7424a1f5f2469ae8d19a2fef39af0ee10fffe"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-30-3459798b606d/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-30-3459798b606d/herdr-macos-aarch64",
"sha256": "eaa330fdb016de2130237d353371444561e6027ad19ab4e752546b81ce14c71a"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-30-3459798b606d/herdr-windows-x86_64.exe",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-30-3459798b606d/herdr-windows-x86_64.exe",
"sha256": "9e319d9d7d653fa4cc7d775e1f653886dd4080b64516ea6bf2ef4d64b33cf891"
}
}
@ -272,23 +272,23 @@
"tag": "preview-2026-06-25-7811d84f15f1",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-25-7811d84f15f1/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-25-7811d84f15f1/herdr-linux-x86_64",
"sha256": "b366db1c3aae2990b242d2ecfda1b903aa4638ce036fd4947be9c1cf210c82d6"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-25-7811d84f15f1/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-25-7811d84f15f1/herdr-linux-aarch64",
"sha256": "ad8c912720d8e2eb70bbf41505d76a46113dcf5f528eb4ba60d5e0af06548e87"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-25-7811d84f15f1/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-25-7811d84f15f1/herdr-macos-x86_64",
"sha256": "6ebecb5085f42a3adc88e9031d7567b274650f8d5fae6f1efa7a3d49e86119ab"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-25-7811d84f15f1/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-25-7811d84f15f1/herdr-macos-aarch64",
"sha256": "6adb29e6fc129ac21a5f021b8410e6e9bdae9e7fc4342a3c0d602cc725a12dfe"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-25-7811d84f15f1/herdr-windows-x86_64.exe",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-25-7811d84f15f1/herdr-windows-x86_64.exe",
"sha256": "6d45a5dacd471877b4c34ca4a6a33e3cd1e3ecf2adc72f1216eb15e6e7c5a0f6"
}
}
@ -301,23 +301,23 @@
"tag": "preview-2026-06-22-24c7377de01c",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-22-24c7377de01c/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-22-24c7377de01c/herdr-linux-x86_64",
"sha256": "c233227d6f883fe7841df43d50606faff6aa4eb5861f1057aafea447289ef49b"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-22-24c7377de01c/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-22-24c7377de01c/herdr-linux-aarch64",
"sha256": "c8684d650e20e1b2adb62076a25dc5d6ecb2db72e128c19b52b97b6e91bf7778"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-22-24c7377de01c/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-22-24c7377de01c/herdr-macos-x86_64",
"sha256": "36dced19de4cbcfdd2d92a900a07e8c49d8fe239585ac3973f8d654f3a708534"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-22-24c7377de01c/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-22-24c7377de01c/herdr-macos-aarch64",
"sha256": "04988b316d53a0b153c368bed1a69d8adf1a219fab5c2db18c5b7c1358739f65"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-22-24c7377de01c/herdr-windows-x86_64.exe",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-22-24c7377de01c/herdr-windows-x86_64.exe",
"sha256": "9eb8b028d92770c0b0c39e8c5e3edd75a8ea8592473c4d1e4396e84d769a9781"
}
}
@ -330,23 +330,23 @@
"tag": "preview-2026-06-15-517ca8163f7c",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-15-517ca8163f7c/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-15-517ca8163f7c/herdr-linux-x86_64",
"sha256": "83813cb9d154e394cfa9ccd0c0bce958ad43a4f276e7343b38f95a829ca7f2b7"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-15-517ca8163f7c/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-15-517ca8163f7c/herdr-linux-aarch64",
"sha256": "fe27f63d437e5aa9708e9767a7354b3f59d4f901794caa6d6731c2ddd98f9724"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-15-517ca8163f7c/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-15-517ca8163f7c/herdr-macos-x86_64",
"sha256": "f624cd1ca8a8742cf0ae8eb090b814ef1c5b905d83da4142f1a34e7db3bc77ec"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-15-517ca8163f7c/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-15-517ca8163f7c/herdr-macos-aarch64",
"sha256": "7b374b436c12b745e697229c5e1195ef011e4ed93ebb388eaa49c7b630f80f12"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-15-517ca8163f7c/herdr-windows-x86_64.exe",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-15-517ca8163f7c/herdr-windows-x86_64.exe",
"sha256": "9dd44fd4fb788e56e2049710f73545a7199c4eadfba4da96634e84671e5ee35a"
}
}
@ -359,23 +359,23 @@
"tag": "preview-2026-06-12-7ba4bfe90e7a",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-12-7ba4bfe90e7a/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-12-7ba4bfe90e7a/herdr-linux-x86_64",
"sha256": "08e89f24f105373f8ec0a335bf9234adf455b8392662bbbf8b53436f1beaa3b7"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-12-7ba4bfe90e7a/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-12-7ba4bfe90e7a/herdr-linux-aarch64",
"sha256": "cb01c595603330194bee4ccaf8e3ba24076391d504fb5b85b2effe0aff352152"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-12-7ba4bfe90e7a/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-12-7ba4bfe90e7a/herdr-macos-x86_64",
"sha256": "0d7a33c2c5d7734b3fff88717fca45b24de45a5e438ea90b1ccfb214ab314022"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-12-7ba4bfe90e7a/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-12-7ba4bfe90e7a/herdr-macos-aarch64",
"sha256": "4de019156ce125a7bd6b03d609b887db161d199ecae95d4762f4c9179ba31bc4"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-12-7ba4bfe90e7a/herdr-windows-x86_64.exe",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-12-7ba4bfe90e7a/herdr-windows-x86_64.exe",
"sha256": "8611f6f295da398d4601433e69a1f227d1bba5b38b31504331b9e3a2e31ade87"
}
}
@ -388,23 +388,23 @@
"tag": "preview-2026-06-10-7d6eaf5f26d1",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-10-7d6eaf5f26d1/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-10-7d6eaf5f26d1/herdr-linux-x86_64",
"sha256": "02e9ec811e6ad27471d6fb1eaca0441d77c8ebc1cb5ac406d57749263e78cac1"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-10-7d6eaf5f26d1/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-10-7d6eaf5f26d1/herdr-linux-aarch64",
"sha256": "ef9c706aabdf075bc838decac8e39e99704ad91c589cec4f003d01bbae9bafd0"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-10-7d6eaf5f26d1/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-10-7d6eaf5f26d1/herdr-macos-x86_64",
"sha256": "2f6e07147ca1015c0e454a2256118d4cb9222ba4eb921bf11ef8fe369a4386fa"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-10-7d6eaf5f26d1/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-10-7d6eaf5f26d1/herdr-macos-aarch64",
"sha256": "1b06ecfd20891138b4e0e5b58e9a4eb322d858a1a524d14372936666a0a96792"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-10-7d6eaf5f26d1/herdr-windows-x86_64.exe",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-10-7d6eaf5f26d1/herdr-windows-x86_64.exe",
"sha256": "bba72ef9f761fd07d3380800fa704b19f4a6cc03da40f1ac33fecbf1bf9d884b"
}
}
@ -417,23 +417,23 @@
"tag": "preview-2026-06-10-38f3b290deed",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-10-38f3b290deed/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-10-38f3b290deed/herdr-linux-x86_64",
"sha256": "f807d0c66b1dd93d9935b96c2673a842bb0d0e75658aed879d215855007d5e9f"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-10-38f3b290deed/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-10-38f3b290deed/herdr-linux-aarch64",
"sha256": "8fd10ad9104d9a2ef84c01cbc4c5b56573baf6ecb019d31c9cfe3deb6536fb63"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-10-38f3b290deed/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-10-38f3b290deed/herdr-macos-x86_64",
"sha256": "1b64c7230f27bcfcc3f0fa568bb5682e07482e2fbe611f570b3190cda51e4fe6"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-10-38f3b290deed/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-10-38f3b290deed/herdr-macos-aarch64",
"sha256": "72cc7201b7b31debe22b478f9f702dcce007235af74c9deed3fa8170d72943ed"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-10-38f3b290deed/herdr-windows-x86_64.exe",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-10-38f3b290deed/herdr-windows-x86_64.exe",
"sha256": "f52a8b99b1d4c49639af05d1998d1fe870eb110fd1d786dc67963ad5b77c2739"
}
}
@ -446,23 +446,23 @@
"tag": "preview-2026-06-09-3e2bdbab7b05",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-09-3e2bdbab7b05/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-09-3e2bdbab7b05/herdr-linux-x86_64",
"sha256": "5eeecb77185b11e7108e34430c3f335cec5396d0c3b0b4590beb50a6ec590a21"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-09-3e2bdbab7b05/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-09-3e2bdbab7b05/herdr-linux-aarch64",
"sha256": "9a7ca191adeab1e1400584090ce58c1cf0dc02951b881e4220f3c97dda334a5c"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-09-3e2bdbab7b05/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-09-3e2bdbab7b05/herdr-macos-x86_64",
"sha256": "d6f7c7a293e411caa8d74f240f49ff605977a6a24809a9689c6bd0504e1c96ee"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-09-3e2bdbab7b05/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-09-3e2bdbab7b05/herdr-macos-aarch64",
"sha256": "83d915384444e1ff19ccf06dfad96a31877a68bceed82d8b07234d5690011222"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-09-3e2bdbab7b05/herdr-windows-x86_64.exe",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-09-3e2bdbab7b05/herdr-windows-x86_64.exe",
"sha256": "c88561dc574158d95e12cdb887d52a40916911dd33a187eced1735522977bc4a"
}
}
@ -475,23 +475,23 @@
"tag": "preview-2026-06-07-3c8f8dcb7774",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-07-3c8f8dcb7774/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-07-3c8f8dcb7774/herdr-linux-x86_64",
"sha256": "f29bc4a93b417e4c8e7d183555396e4a38072e2b0e09e4021f5ca6a54d5ccadc"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-07-3c8f8dcb7774/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-07-3c8f8dcb7774/herdr-linux-aarch64",
"sha256": "2ed8e9d00acfa97d612b0143b49cbe4f04a8080c5b12d57451d32a5dd34a31a3"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-07-3c8f8dcb7774/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-07-3c8f8dcb7774/herdr-macos-x86_64",
"sha256": "038a480634b16fd2dcc5cbaa982ad5dd60708067644f3566fb52e08bd343919e"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-07-3c8f8dcb7774/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-07-3c8f8dcb7774/herdr-macos-aarch64",
"sha256": "d46800e1a82761e4a14ae5391847a5247e410ad3de3cf71b5c7fd93c8b895846"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-07-3c8f8dcb7774/herdr-windows-x86_64.exe",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-07-3c8f8dcb7774/herdr-windows-x86_64.exe",
"sha256": "d83fca4971afd7ecd8be1bb36a730611d6b9f461480d75084680afc2c8e84f2c"
}
}
@ -504,23 +504,23 @@
"tag": "preview-2026-06-07-3f7236f81735",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-07-3f7236f81735/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-07-3f7236f81735/herdr-linux-x86_64",
"sha256": "b5e5e539bcc34e49ea8e443c8d94ebbaf6c644e0eb3e0a5a63e134c6ebcc6407"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-07-3f7236f81735/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-07-3f7236f81735/herdr-linux-aarch64",
"sha256": "9dbf8047317fb86e3e61e00780dbdf6ff0344fc51f0d5da3dc49690bf29f80f9"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-07-3f7236f81735/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-07-3f7236f81735/herdr-macos-x86_64",
"sha256": "8d2fa2e82564b6f23e92577832fa222c9099b1e8902123d0d1d7ba118e824614"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-07-3f7236f81735/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-07-3f7236f81735/herdr-macos-aarch64",
"sha256": "1e202611df9f94e44af72cfa0975fafdaef19b514768d208a282f9f725ce8877"
},
"windows-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-07-3f7236f81735/herdr-windows-x86_64.exe",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-07-3f7236f81735/herdr-windows-x86_64.exe",
"sha256": "8a6a211edfb853615a39da8a03344a686e9bb28ee07080a8d17b116c5b1dbf13"
}
}
@ -533,19 +533,19 @@
"tag": "preview-2026-06-05-1ce4213d9ebb",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-05-1ce4213d9ebb/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-05-1ce4213d9ebb/herdr-linux-x86_64",
"sha256": "130478ead15570df80d4b71f35efb28be9da51958c2da438e0f766e76c6859fc"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-05-1ce4213d9ebb/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-05-1ce4213d9ebb/herdr-linux-aarch64",
"sha256": "35bd06cf80afaab8ecac0b1f6dc3dd74775865f6a1d682575b33f7c3424c616b"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-05-1ce4213d9ebb/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-05-1ce4213d9ebb/herdr-macos-x86_64",
"sha256": "1279ce4e1c5a73b3725af4e288153b3597aa3133a156588ce4f7f22d6b8a88d4"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-05-1ce4213d9ebb/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-05-1ce4213d9ebb/herdr-macos-aarch64",
"sha256": "4bd46e2f4e3d76bf730b105fe11de53093c5b580b7e0a042359a887c5ac6aef0"
}
}
@ -558,19 +558,19 @@
"tag": "preview-2026-06-04-670656b26f1a",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-04-670656b26f1a/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-04-670656b26f1a/herdr-linux-x86_64",
"sha256": "24dbbcc8f56d0d6fb05f08b30b42034de10155f09326a9f535810d0f4d53812a"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-04-670656b26f1a/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-04-670656b26f1a/herdr-linux-aarch64",
"sha256": "8f3708274a4e56f613709d05b4b8d56ba8d7b3a10705c12f2b57899cc5ff105b"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-04-670656b26f1a/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-04-670656b26f1a/herdr-macos-x86_64",
"sha256": "1a24cc6793a61a70c5e9a52514b809d267adde795152dd236f854048a82aa4bf"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-04-670656b26f1a/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-04-670656b26f1a/herdr-macos-aarch64",
"sha256": "396c97c613f33e490f66c36456d47cfb34dd9aca50a5911ef0adf6e1914c6c4c"
}
}
@ -583,19 +583,19 @@
"tag": "preview-2026-06-03-854fc3c1aff5",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-03-854fc3c1aff5/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-03-854fc3c1aff5/herdr-linux-x86_64",
"sha256": "7513c0d40dda605c08c909e9652cdb30333900f4602a54c0eddb2e6878599fba"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-03-854fc3c1aff5/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-03-854fc3c1aff5/herdr-linux-aarch64",
"sha256": "a25b0d226e1c43bd11713e690e962c75a42ef528f9695dfbee4be7223eba8b33"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-03-854fc3c1aff5/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-03-854fc3c1aff5/herdr-macos-x86_64",
"sha256": "0ca3b10722c9077feabcc728e56a284fb24256fbe6ec01af60a1af582f9ff690"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-03-854fc3c1aff5/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-03-854fc3c1aff5/herdr-macos-aarch64",
"sha256": "ba2ac2ba89c46a328bb87f942cac7bc18d6d91c23f81b51b7eef8e55cc488fdb"
}
}
@ -608,19 +608,19 @@
"tag": "preview-2026-06-03-5b2fce600f76",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-03-5b2fce600f76/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-03-5b2fce600f76/herdr-linux-x86_64",
"sha256": "c4575cf293f39d72dac0dd6c9618f7e7a46d2b38ebbb7dcbe55d8ebed669866b"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-03-5b2fce600f76/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-03-5b2fce600f76/herdr-linux-aarch64",
"sha256": "20e0b04335f6fb1572eee277b836146c4d4d7cf9d053978fc9e7194ce7ec13df"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-03-5b2fce600f76/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-03-5b2fce600f76/herdr-macos-x86_64",
"sha256": "607c849e721802d3c75e0b6ba677be2baaa2239b5251ab370cb6457231d1ca53"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-03-5b2fce600f76/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-03-5b2fce600f76/herdr-macos-aarch64",
"sha256": "29f3979e08420a6182f9dd0925a15d101dcbbb1eb75948cdf58f927b9f319da8"
}
}
@ -633,19 +633,19 @@
"tag": "preview-2026-06-03-fc82cbad2179",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-03-fc82cbad2179/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-03-fc82cbad2179/herdr-linux-x86_64",
"sha256": "c2291bc05f417329a233d09d769933ccccdc4e1f03e6f2d9a8223464b141728d"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-03-fc82cbad2179/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-03-fc82cbad2179/herdr-linux-aarch64",
"sha256": "bce62864bf3cff6046799acd0e8eb2d6eab546f4be9fe0e37a026704a85db3b2"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-03-fc82cbad2179/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-03-fc82cbad2179/herdr-macos-x86_64",
"sha256": "7990bdc39fa96322b37a497f85bc1963cb40f9f298d400f8da8fe13dac2adaf6"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-03-fc82cbad2179/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-03-fc82cbad2179/herdr-macos-aarch64",
"sha256": "c8bcd63323c6daf671022a6872134c6178c153ddd89c4260fbb9b28fe162c18a"
}
}
@ -658,19 +658,19 @@
"tag": "preview-2026-06-02-cce3eacc49d2",
"assets": {
"linux-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-02-cce3eacc49d2/herdr-linux-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-02-cce3eacc49d2/herdr-linux-x86_64",
"sha256": "c22aa4b2e5fadd6e04910f92bbc125aa749c6a9a9edd281082f07a839e37cbff"
},
"linux-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-02-cce3eacc49d2/herdr-linux-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-02-cce3eacc49d2/herdr-linux-aarch64",
"sha256": "26a15f394fd27425ab252424fd090913c1ae5cf644f4f3aac0f06c086bdaabb7"
},
"macos-x86_64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-02-cce3eacc49d2/herdr-macos-x86_64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-02-cce3eacc49d2/herdr-macos-x86_64",
"sha256": "c89a97b730e7e3b132a2eca53d49448ec2fb969362e903ce99b5b7b0fbd4d5b1"
},
"macos-aarch64": {
"url": "https://github.com/ogulcancelik/herdr/releases/download/preview-2026-06-02-cce3eacc49d2/herdr-macos-aarch64",
"url": "https://github.com/herdrdev/herdr/releases/download/preview-2026-06-02-cce3eacc49d2/herdr-macos-aarch64",
"sha256": "0f6c260d9cc65d01c1a58baca5f3ae8150b91f0a16a2ae223b71e76c9dda444f"
}
}

View File

@ -190,7 +190,7 @@ export function rewritePreviewDocContent(content, relativePath = '') {
);
const withEditLink = setGeneratedEditUrl(
rewritten,
`https://github.com/ogulcancelik/herdr/edit/master/docs/next/website/src/content/docs/${relativePath}`,
`https://github.com/herdrdev/herdr/edit/master/docs/next/website/src/content/docs/${relativePath}`,
);
return insertPreviewNotice(withEditLink, relativePath);
}
@ -199,17 +199,17 @@ export function rewriteVersionDocContent(content, { version, tag, sourceRoot, re
const taggedContent = content
.replaceAll('/docs/', `/docs/${version}/`)
.replaceAll(
'https://github.com/ogulcancelik/herdr/blob/master/',
`https://github.com/ogulcancelik/herdr/blob/${tag}/`,
'https://github.com/herdrdev/herdr/blob/master/',
`https://github.com/herdrdev/herdr/blob/${tag}/`,
)
.replaceAll(
'https://raw.githubusercontent.com/ogulcancelik/herdr/master/',
`https://raw.githubusercontent.com/ogulcancelik/herdr/${tag}/`,
'https://raw.githubusercontent.com/herdrdev/herdr/master/',
`https://raw.githubusercontent.com/herdrdev/herdr/${tag}/`,
);
const rewritten = rewriteRelativeDocPaths(taggedContent, 2);
return setGeneratedEditUrl(
rewritten,
`https://github.com/ogulcancelik/herdr/blob/${tag}/${sourceRoot}/${relativePath}`,
`https://github.com/herdrdev/herdr/blob/${tag}/${sourceRoot}/${relativePath}`,
);
}

View File

@ -5,7 +5,7 @@ import { docsRoute, docsTargetHref } from '../docs-path';
const { entry, locale, isFallback } = Astro.locals.starlightRoute;
const { banner } = entry.data;
const issuesUrl = 'https://github.com/ogulcancelik/herdr/issues/new?template=translation.yml';
const issuesUrl = 'https://github.com/herdrdev/herdr/issues/new?template=translation.yml';
const translationNotices = {
ja: `このページの翻訳は LLM によって生成されています。誤りに気づいた場合は <a href="${issuesUrl}">GitHub で issue を開いて</a>お知らせください。`,
'zh-cn': `本页面的翻译由 LLM 生成。如果你发现翻译有误,请<a href="${issuesUrl}">在 GitHub 上提交 issue</a> 告诉我们。`,

View File

@ -83,7 +83,7 @@ const ogImageUrl = new URL(ogImage, 'https://herdr.dev').toString();
<a href="/docs/">Docs</a>
<a href="/docs/socket-api/">API</a>
<a href="/docs/install/">Install</a>
<a href="https://github.com/ogulcancelik/herdr">GitHub</a>
<a href="https://github.com/herdrdev/herdr">GitHub</a>
</div>
</details>
<div class="nav-links">
@ -97,7 +97,7 @@ const ogImageUrl = new URL(ogImage, 'https://herdr.dev').toString();
<a href="/docs/socket-api/">API</a>
</div>
<div class="nav-tools">
<a class="nav-icon-link" href="https://github.com/ogulcancelik/herdr" aria-label="Herdr on GitHub">
<a class="nav-icon-link" href="https://github.com/herdrdev/herdr" aria-label="Herdr on GitHub">
<svg viewBox="0 0 16 16" aria-hidden="true">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82A7.64 7.64 0 0 1 8 3.87c.68 0 1.36.09 2 .26 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8Z" />
</svg>

View File

@ -82,4 +82,4 @@ This gives integrations a supported way to make panes more readable while keepin
This page highlights the product changes. The complete release notes remain on GitHub.
[Open the 0.6.3 GitHub release](https://github.com/ogulcancelik/herdr/releases/tag/v0.6.3).
[Open the 0.6.3 GitHub release](https://github.com/herdrdev/herdr/releases/tag/v0.6.3).

View File

@ -3,7 +3,7 @@ title: Agent skill file
description: Install Herdr instructions for Claude Code or another coding agent.
---
Herdr ships a reusable agent skill file at [`skills/herdr/SKILL.md`](https://github.com/ogulcancelik/herdr/blob/master/skills/herdr/SKILL.md).
Herdr ships a reusable agent skill file at [`skills/herdr/SKILL.md`](https://github.com/herdrdev/herdr/blob/master/skills/herdr/SKILL.md).
Install that file into any coding agent that supports reusable skills or custom instructions. The skill teaches the agent how to control Herdr from inside a Herdr pane.
@ -28,7 +28,7 @@ The skill is not a separate app or service. It is a markdown instruction file fo
Install the skill with `npx skills`:
```bash
npx skills add ogulcancelik/herdr --skill herdr -g
npx skills add herdrdev/herdr --skill herdr -g
```
If you installed the skill while it lived at the repository root, rerun this add command once instead of using `skills update`. The add command replaces the oversized copy and records the new location.
@ -38,7 +38,7 @@ The `-g` flag installs it globally for supported agents. Omit `-g` to install it
Use the repository copy as the manual fallback and source of truth:
```text
https://github.com/ogulcancelik/herdr/blob/master/skills/herdr/SKILL.md
https://github.com/herdrdev/herdr/blob/master/skills/herdr/SKILL.md
```
For agents with a skill system, install that file as a skill named `herdr`. For agents without a skill system, paste the file into the agent's project or user instructions.
@ -64,4 +64,4 @@ The full command guide lives in the skill file itself. It covers pane IDs, `pane
Read the source file here:
[Open `SKILL.md` on GitHub →](https://github.com/ogulcancelik/herdr/blob/master/skills/herdr/SKILL.md)
[Open `SKILL.md` on GitHub →](https://github.com/herdrdev/herdr/blob/master/skills/herdr/SKILL.md)

View File

@ -37,16 +37,16 @@ If you already use mise:
mise use -g herdr
```
If mise reports `herdr not found in mise tool registry`, update mise and retry. Older mise versions predate the Herdr registry entry; `mise use -g github:ogulcancelik/herdr` works as a temporary fallback.
If mise reports `herdr not found in mise tool registry`, update mise and retry. Older mise versions predate the Herdr registry entry; `mise use -g github:herdrdev/herdr` works as a temporary fallback.
## Install with Nix
If you already use Nix, Herdr provides a flake that builds Herdr from source:
```bash
nix run github:ogulcancelik/herdr/v0.x.y
nix build github:ogulcancelik/herdr/v0.x.y
nix profile install github:ogulcancelik/herdr/v0.x.y
nix run github:herdrdev/herdr/v0.x.y
nix build github:herdrdev/herdr/v0.x.y
nix profile install github:herdrdev/herdr/v0.x.y
```
Replace `v0.x.y` with the latest release tag. You can omit the tag to track `master`, but release tags are recommended for normal installs.
@ -54,7 +54,7 @@ Replace `v0.x.y` with the latest release tag. You can omit the tag to track `mas
The flake also exposes a development shell:
```bash
nix develop github:ogulcancelik/herdr
nix develop github:herdrdev/herdr
```
Update through the same Nix workflow you used to install Herdr. For a profile install, list your profile entries and upgrade the Herdr entry:
@ -72,7 +72,7 @@ nix flake update herdr
## Download manually
You can also download a binary from [GitHub releases](https://github.com/ogulcancelik/herdr/releases).
You can also download a binary from [GitHub releases](https://github.com/herdrdev/herdr/releases).
Choose the asset that matches your system:

View File

@ -3,7 +3,7 @@ title: エージェントスキルファイル
description: Claude Code などのコーディングエージェントに Herdr の使い方をインストールします。
---
Herdr は再利用可能なエージェントスキルファイルを [`skills/herdr/SKILL.md`](https://github.com/ogulcancelik/herdr/blob/master/skills/herdr/SKILL.md) として提供しています。
Herdr は再利用可能なエージェントスキルファイルを [`skills/herdr/SKILL.md`](https://github.com/herdrdev/herdr/blob/master/skills/herdr/SKILL.md) として提供しています。
このファイルを、再利用可能なスキルやカスタム指示に対応した任意のコーディングエージェントにインストールしてください。このスキルは、Herdr のペイン内から Herdr を制御する方法をエージェントに教えます。
@ -28,7 +28,7 @@ Herdr は別の用途向けに [`herdr.dev/agent-guide.md`](https://herdr.dev/ag
`npx skills` でスキルをインストールします:
```bash
npx skills add ogulcancelik/herdr --skill herdr -g
npx skills add herdrdev/herdr --skill herdr -g
```
スキルがリポジトリのルートにあったときにインストールした場合は、`skills update` ではなく、この add コマンドを一度再実行してください。大きすぎる既存のコピーが置き換えられ、新しい場所が記録されます。
@ -38,7 +38,7 @@ npx skills add ogulcancelik/herdr --skill herdr -g
手動でのフォールバックおよび信頼できるソースとしては、リポジトリのコピーを使ってください:
```text
https://github.com/ogulcancelik/herdr/blob/master/skills/herdr/SKILL.md
https://github.com/herdrdev/herdr/blob/master/skills/herdr/SKILL.md
```
スキルシステムを持つエージェントには、このファイルを `herdr` という名前のスキルとしてインストールしてください。スキルシステムを持たないエージェントには、ファイルの内容をプロジェクト指示またはユーザー指示に貼り付けてください。
@ -64,4 +64,4 @@ claude
ソースファイルはこちら:
[GitHub で `SKILL.md` を開く →](https://github.com/ogulcancelik/herdr/blob/master/skills/herdr/SKILL.md)
[GitHub で `SKILL.md` を開く →](https://github.com/herdrdev/herdr/blob/master/skills/herdr/SKILL.md)

View File

@ -37,16 +37,16 @@ brew install herdr
mise use -g herdr
```
mise が `herdr not found in mise tool registry` と報告する場合は、mise をアップデートして再試行してください。古い mise は Herdr のレジストリ登録より前のバージョンです。一時的な回避策として `mise use -g github:ogulcancelik/herdr` も使えます。
mise が `herdr not found in mise tool registry` と報告する場合は、mise をアップデートして再試行してください。古い mise は Herdr のレジストリ登録より前のバージョンです。一時的な回避策として `mise use -g github:herdrdev/herdr` も使えます。
## Nix でインストール
すでに Nix を使っている場合、Herdr はソースからビルドする flake を提供しています:
```bash
nix run github:ogulcancelik/herdr/v0.x.y
nix build github:ogulcancelik/herdr/v0.x.y
nix profile install github:ogulcancelik/herdr/v0.x.y
nix run github:herdrdev/herdr/v0.x.y
nix build github:herdrdev/herdr/v0.x.y
nix profile install github:herdrdev/herdr/v0.x.y
```
`v0.x.y` は最新のリリースタグに置き換えてください。タグを省略すると `master` を追跡できますが、通常のインストールにはリリースタグを推奨します。
@ -54,7 +54,7 @@ nix profile install github:ogulcancelik/herdr/v0.x.y
flake は開発用シェルも公開しています:
```bash
nix develop github:ogulcancelik/herdr
nix develop github:herdrdev/herdr
```
アップデートは、Herdr のインストールに使ったのと同じ Nix ワークフローで行います。プロファイルインストールの場合は、プロファイルのエントリを一覧して Herdr のエントリをアップグレードします:
@ -72,7 +72,7 @@ nix flake update herdr
## 手動でダウンロード
[GitHub releases](https://github.com/ogulcancelik/herdr/releases) からバイナリをダウンロードすることもできます。
[GitHub releases](https://github.com/herdrdev/herdr/releases) からバイナリをダウンロードすることもできます。
システムに合ったアセットを選んでください:

View File

@ -37,7 +37,7 @@ host_cursor = "native"
| foot | 1.20.0 |
| Alacritty | 0.15.0 |
長期サポート版 Linux ディストリビューションの古いターミナルパッケージで特に発生します。確認済みの境界キャプチャと上流参照は [Herdr issue #1116](https://github.com/ogulcancelik/herdr/issues/1116) を参照してください。現在のターミナルでも発生する場合は、正確なバージョンと Herdr の外でも発生するかを報告してください。
長期サポート版 Linux ディストリビューションの古いターミナルパッケージで特に発生します。確認済みの境界キャプチャと上流参照は [Herdr issue #1116](https://github.com/herdrdev/herdr/issues/1116) を参照してください。現在のターミナルでも発生する場合は、正確なバージョンと Herdr の外でも発生するかを報告してください。
## Option+Left または Option+Right を押すと `;3D` または `;3C` が入力される
@ -57,7 +57,7 @@ map alt+left send_text all \x1bb
map alt+right send_text all \x1bf
```
ターミナルアプリケーションが Alt+Left と Alt+Right を直接使用する場合があるため、Herdr は修飾付き矢印を意図的に書き換えません。調査の詳細は [Herdr issue #1370](https://github.com/ogulcancelik/herdr/issues/1370) を参照してください。
ターミナルアプリケーションが Alt+Left と Alt+Right を直接使用する場合があるため、Herdr は修飾付き矢印を意図的に書き換えません。調査の詳細は [Herdr issue #1370](https://github.com/herdrdev/herdr/issues/1370) を参照してください。
## Herdr を更新したのに実行中のセッションが古い

View File

@ -37,7 +37,7 @@ Update the outer terminal to a version containing its upstream fix:
| foot | 1.20.0 |
| Alacritty | 0.15.0 |
This is especially common with older terminal packages from long-term-support Linux distributions. See [Herdr issue #1116](https://github.com/ogulcancelik/herdr/issues/1116) for the confirmed boundary captures and upstream references. If the problem remains on a current terminal version, report the exact terminal version and whether it also happens outside Herdr.
This is especially common with older terminal packages from long-term-support Linux distributions. See [Herdr issue #1116](https://github.com/herdrdev/herdr/issues/1116) for the confirmed boundary captures and upstream references. If the problem remains on a current terminal version, report the exact terminal version and whether it also happens outside Herdr.
## Option+Left or Option+Right inserts `;3D` or `;3C`
@ -57,7 +57,7 @@ map alt+left send_text all \x1bb
map alt+right send_text all \x1bf
```
Herdr deliberately does not rewrite modified arrows because terminal applications may use Alt+Left and Alt+Right directly. See [Herdr issue #1370](https://github.com/ogulcancelik/herdr/issues/1370) for the investigation.
Herdr deliberately does not rewrite modified arrows because terminal applications may use Alt+Left and Alt+Right directly. See [Herdr issue #1370](https://github.com/herdrdev/herdr/issues/1370) for the investigation.
## Herdr updated, but the running session is still old

View File

@ -3,7 +3,7 @@ title: 智能体技能文件
description: 为 Claude Code 或其他编程智能体安装 Herdr 使用说明。
---
Herdr 提供了一个可复用的智能体技能文件: [`skills/herdr/SKILL.md`](https://github.com/ogulcancelik/herdr/blob/master/skills/herdr/SKILL.md)。
Herdr 提供了一个可复用的智能体技能文件: [`skills/herdr/SKILL.md`](https://github.com/herdrdev/herdr/blob/master/skills/herdr/SKILL.md)。
把这个文件安装到任何支持可复用技能或自定义指令的编程智能体中。这份技能教智能体如何在 Herdr 窗格内部控制 Herdr。
@ -28,7 +28,7 @@ Herdr 还提供了另一份用途不同的指南: [`herdr.dev/agent-guide.md`](h
用 `npx skills` 安装技能:
```bash
npx skills add ogulcancelik/herdr --skill herdr -g
npx skills add herdrdev/herdr --skill herdr -g
```
如果你是在该技能仍位于仓库根目录时安装的,请重新运行一次此 add 命令,而不要使用 `skills update`。add 命令会替换原先过大的副本并记录新位置。
@ -38,7 +38,7 @@ npx skills add ogulcancelik/herdr --skill herdr -g
以仓库中的副本作为手动兜底和事实来源:
```text
https://github.com/ogulcancelik/herdr/blob/master/skills/herdr/SKILL.md
https://github.com/herdrdev/herdr/blob/master/skills/herdr/SKILL.md
```
对于有技能系统的智能体,把这个文件安装为名为 `herdr` 的技能。对于没有技能系统的智能体,把文件内容粘贴到智能体的项目指令或用户指令中。
@ -64,4 +64,4 @@ claude
在这里阅读源文件:
[在 GitHub 上打开 `SKILL.md` →](https://github.com/ogulcancelik/herdr/blob/master/skills/herdr/SKILL.md)
[在 GitHub 上打开 `SKILL.md` →](https://github.com/herdrdev/herdr/blob/master/skills/herdr/SKILL.md)

View File

@ -37,16 +37,16 @@ brew install herdr
mise use -g herdr
```
如果 mise 报 `herdr not found in mise tool registry`,请更新 mise 后重试。旧版 mise 早于 Herdr 的注册表条目;`mise use -g github:ogulcancelik/herdr` 可以作为临时兜底。
如果 mise 报 `herdr not found in mise tool registry`,请更新 mise 后重试。旧版 mise 早于 Herdr 的注册表条目;`mise use -g github:herdrdev/herdr` 可以作为临时兜底。
## 用 Nix 安装
如果你已经在用 Nix,Herdr 提供了一个从源码构建的 flake:
```bash
nix run github:ogulcancelik/herdr/v0.x.y
nix build github:ogulcancelik/herdr/v0.x.y
nix profile install github:ogulcancelik/herdr/v0.x.y
nix run github:herdrdev/herdr/v0.x.y
nix build github:herdrdev/herdr/v0.x.y
nix profile install github:herdrdev/herdr/v0.x.y
```
把 `v0.x.y` 替换为最新的发布标签。省略标签可以跟踪 `master`,但常规安装建议使用发布标签。
@ -54,7 +54,7 @@ nix profile install github:ogulcancelik/herdr/v0.x.y
flake 还提供一个开发 shell:
```bash
nix develop github:ogulcancelik/herdr
nix develop github:herdrdev/herdr
```
更新时使用你安装 Herdr 的同一套 Nix 工作流。对于 profile 安装,列出 profile 条目并升级 Herdr 条目:
@ -72,7 +72,7 @@ nix flake update herdr
## 手动下载
也可以从 [GitHub releases](https://github.com/ogulcancelik/herdr/releases) 下载二进制文件。
也可以从 [GitHub releases](https://github.com/herdrdev/herdr/releases) 下载二进制文件。
选择匹配你系统的产物:

View File

@ -37,7 +37,7 @@ host_cursor = "native"
| foot | 1.20.0 |
| Alacritty | 0.15.0 |
长期支持版 Linux 发行版中的旧终端软件包尤其容易出现此问题。已确认的边界捕获和上游链接见 [Herdr issue #1116](https://github.com/ogulcancelik/herdr/issues/1116)。如果当前版本仍有问题,请报告准确的终端版本,以及该问题是否也会在 Herdr 外出现。
长期支持版 Linux 发行版中的旧终端软件包尤其容易出现此问题。已确认的边界捕获和上游链接见 [Herdr issue #1116](https://github.com/herdrdev/herdr/issues/1116)。如果当前版本仍有问题,请报告准确的终端版本,以及该问题是否也会在 Herdr 外出现。
## 按 Option+Left 或 Option+Right 时输入 `;3D` 或 `;3C`
@ -57,7 +57,7 @@ map alt+left send_text all \x1bb
map alt+right send_text all \x1bf
```
终端应用可能会直接使用 Alt+Left 和 Alt+Right因此 Herdr 不会改写带修饰键的方向键。调查详情见 [Herdr issue #1370](https://github.com/ogulcancelik/herdr/issues/1370)。
终端应用可能会直接使用 Alt+Left 和 Alt+Right因此 Herdr 不会改写带修饰键的方向键。调查详情见 [Herdr issue #1370](https://github.com/herdrdev/herdr/issues/1370)。
## Herdr 已更新,但运行中的会话仍是旧版本

View File

@ -69,7 +69,7 @@
<a href="/docs/">Docs</a>
<a href="/docs/socket-api/">API</a>
<a href="/docs/install/">Install</a>
<a href="https://github.com/ogulcancelik/herdr">GitHub</a>
<a href="https://github.com/herdrdev/herdr">GitHub</a>
</div>
</details>
<div class="nav-links">
@ -82,7 +82,7 @@
<a href="/docs/socket-api/">API</a>
</div>
<div class="nav-tools">
<a class="nav-icon-link" href="https://github.com/ogulcancelik/herdr" aria-label="Herdr on GitHub">
<a class="nav-icon-link" href="https://github.com/herdrdev/herdr" aria-label="Herdr on GitHub">
<svg viewBox="0 0 16 16" aria-hidden="true">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82A7.64 7.64 0 0 1 8 3.87c.68 0 1.36.09 2 .26 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8Z" />
</svg>
@ -300,11 +300,11 @@
<a href="/docs/">Docs</a>
<a href="/docs/configuration/">Configuration</a>
<a href="/docs/socket-api/">API</a>
<a href="https://github.com/ogulcancelik/herdr/releases">Releases</a>
<a href="https://github.com/herdrdev/herdr/releases">Releases</a>
<a href="mailto:hey@herdr.dev">hey@herdr.dev</a>
</div>
<nav class="footer-social" aria-label="Social links">
<a href="https://github.com/ogulcancelik/herdr" aria-label="Herdr on GitHub">
<a href="https://github.com/herdrdev/herdr" aria-label="Herdr on GitHub">
<svg viewBox="0 0 16 16" aria-hidden="true">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82A7.64 7.64 0 0 1 8 3.87c.68 0 1.36.09 2 .26 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8Z" />
</svg>

View File

@ -22,7 +22,7 @@ import MarketingLayout from '../components/MarketingLayout.astro';
page comes from sources you can check yourself, refreshed continuously.
</p>
<div class="hero-actions">
<a class="button button-primary" href="https://github.com/ogulcancelik/herdr">★ Star on GitHub</a>
<a class="button button-primary" href="https://github.com/herdrdev/herdr">★ Star on GitHub</a>
<a class="button button-secondary" href="/docs/install/">Get herdr</a>
</div>
<p class="hero-note" id="hero-note"></p>
@ -121,7 +121,7 @@ import MarketingLayout from '../components/MarketingLayout.astro';
<p class="sources-note" id="sources-note">
Every number on this page comes from publicly verifiable sources: the
<a href="https://api.github.com/repos/ogulcancelik/herdr">GitHub API</a> for stars and release downloads, and
<a href="https://api.github.com/repos/herdrdev/herdr">GitHub API</a> for stars and release downloads, and
<a href="https://formulae.brew.sh/api/analytics/install/365d.json">Homebrew analytics</a> for brew installs.
Website traffic is measured by Cloudflare (unique visitors per day, herdr.dev zone).
<span id="updated-note"></span>

View File

@ -2,7 +2,7 @@
// renders every number and chart client-side, so the static page never goes stale.
const STATS_URL = "https://assets.herdr.dev/stats/stats.json";
const REPO_API_URL = "https://api.github.com/repos/ogulcancelik/herdr";
const REPO_API_URL = "https://api.github.com/repos/herdrdev/herdr";
const LINE_H = 320;
const BAR_W = 420;