Skip to content

Commit 99c812c

Browse files
committed
feat: move to speakeasy-api org
1 parent d4cc5e1 commit 99c812c

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"name": "Daniel Kovacs <kovacsemod@gmail.com>"
77
},
88
"license": "MIT",
9-
"repository": "https://github.com/danielkov/granary",
9+
"repository": "https://github.com/speakeasy-api/granary",
1010
"skills": "./.claude-plugin/skills/",
1111
"commands": "./.claude-plugin/commands/"
1212
}

.claude-plugin/skills/setup/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ If not installed, direct the user to install it:
1919

2020
```bash
2121
# macOS/Linux
22-
curl -fsSL https://raw.githubusercontent.com/danielkov/granary/main/scripts/install.sh | sh
22+
curl -fsSL https://raw.githubusercontent.com/speakeasy-api/granary/main/scripts/install.sh | sh
2323

2424
# Windows PowerShell
25-
irm https://raw.githubusercontent.com/danielkov/granary/main/scripts/install.ps1 | iex
25+
irm https://raw.githubusercontent.com/speakeasy-api/granary/main/scripts/install.ps1 | iex
2626
```
2727

2828
## 2. Initialize Workspace

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ A CLI context hub for agentic work. Granary supercharges your agentic workflows.
1515
1. Add the granary marketplace
1616

1717
```sh
18-
claude plugin marketplace add danielkov/granary
18+
claude plugin marketplace add speakeasy-api/granary
1919
```
2020

2121
2. Install the granary plugin from the marketplace
@@ -55,13 +55,13 @@ Use similar prompts to see Granary in action.
5555
### macOS / Linux
5656

5757
```sh
58-
curl -sSfL https://raw.githubusercontent.com/danielkov/granary/main/scripts/install.sh | sh
58+
curl -sSfL https://raw.githubusercontent.com/speakeasy-api/granary/main/scripts/install.sh | sh
5959
```
6060

6161
### Windows (PowerShell)
6262

6363
```powershell
64-
irm https://raw.githubusercontent.com/danielkov/granary/main/scripts/install.ps1 | iex
64+
irm https://raw.githubusercontent.com/speakeasy-api/granary/main/scripts/install.ps1 | iex
6565
```
6666

6767
### Installing a specific version
@@ -71,13 +71,13 @@ You can install a specific version (including pre-releases) by setting the `GRAN
7171
**macOS / Linux:**
7272

7373
```sh
74-
GRANARY_VERSION=0.6.2 curl -sSfL https://raw.githubusercontent.com/danielkov/granary/main/scripts/install.sh | sh
74+
GRANARY_VERSION=0.6.2 curl -sSfL https://raw.githubusercontent.com/speakeasy-api/granary/main/scripts/install.sh | sh
7575
```
7676

7777
**Windows (PowerShell):**
7878

7979
```powershell
80-
$env:GRANARY_VERSION='0.6.2'; irm https://raw.githubusercontent.com/danielkov/granary/main/scripts/install.ps1 | iex
80+
$env:GRANARY_VERSION='0.6.2'; irm https://raw.githubusercontent.com/speakeasy-api/granary/main/scripts/install.ps1 | iex
8181
```
8282

8383
### Updating
@@ -99,7 +99,7 @@ granary update --to=0.6.3-pre.1
9999
Requires [Rust](https://rustup.rs/):
100100

101101
```sh
102-
cargo install --git https://github.com/danielkov/granary.git
102+
cargo install --git https://github.com/speakeasy-api/granary.git
103103
```
104104

105105
## Quick Start

scripts/install.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Granary installation script for Windows
2-
# Usage: irm https://raw.githubusercontent.com/danielkov/granary/main/scripts/install.ps1 | iex
2+
# Usage: irm https://raw.githubusercontent.com/speakeasy-api/granary/main/scripts/install.ps1 | iex
33

44
$ErrorActionPreference = 'Stop'
55

6-
$Repo = "danielkov/granary"
6+
$Repo = "speakeasy-api/granary"
77
$BinaryName = "granary"
88
$InstallDir = if ($env:GRANARY_INSTALL_DIR) { $env:GRANARY_INSTALL_DIR } else { "$env:USERPROFILE\.granary\bin" }
99

scripts/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/sh
22
# Granary installation script for Unix-like systems (macOS, Linux)
3-
# Usage: curl -sSfL https://raw.githubusercontent.com/danielkov/granary/main/scripts/install.sh | sh
3+
# Usage: curl -sSfL https://raw.githubusercontent.com/speakeasy-api/granary/main/scripts/install.sh | sh
44

55
set -e
66

7-
REPO="danielkov/granary"
7+
REPO="speakeasy-api/granary"
88
BINARY_NAME="granary"
99
INSTALL_DIR="${GRANARY_INSTALL_DIR:-$HOME/.granary/bin}"
1010

src/cli/update.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use serde::{Deserialize, Serialize};
77

88
use crate::error::{GranaryError, Result};
99

10-
const GITHUB_REPO: &str = "danielkov/granary";
10+
const GITHUB_REPO: &str = "speakeasy-api/granary";
1111
const CACHE_TTL_HOURS: i64 = 24;
1212

1313
#[derive(Deserialize, Clone)]
@@ -189,7 +189,7 @@ fn run_install_script(version: Option<&str>) -> Result<()> {
189189
{
190190
let mut cmd = Command::new("sh");
191191
cmd.arg("-c")
192-
.arg("curl -sSfL https://raw.githubusercontent.com/danielkov/granary/main/scripts/install.sh | sh");
192+
.arg("curl -sSfL https://raw.githubusercontent.com/speakeasy-api/granary/main/scripts/install.sh | sh");
193193

194194
// Set GRANARY_VERSION env var if a specific version is requested
195195
if let Some(v) = version {
@@ -209,11 +209,11 @@ fn run_install_script(version: Option<&str>) -> Result<()> {
209209
{
210210
let script = if let Some(v) = version {
211211
format!(
212-
"$env:GRANARY_VERSION='{}'; irm https://raw.githubusercontent.com/danielkov/granary/main/scripts/install.ps1 | iex",
212+
"$env:GRANARY_VERSION='{}'; irm https://raw.githubusercontent.com/speakeasy-api/granary/main/scripts/install.ps1 | iex",
213213
v
214214
)
215215
} else {
216-
"irm https://raw.githubusercontent.com/danielkov/granary/main/scripts/install.ps1 | iex"
216+
"irm https://raw.githubusercontent.com/speakeasy-api/granary/main/scripts/install.ps1 | iex"
217217
.to_string()
218218
};
219219

0 commit comments

Comments
 (0)