Skip to content

Commit 9b49d0d

Browse files
faricoclaude
andcommitted
chore: migrate CLI repo from webhookstash org to farico/webhookstash-cli
The webhookstash GitHub organization was deleted and won't be recoverable for 90 days. Migrate all references to the new personal repo: - Go module path: github.com/farico/webhookstash-cli - All internal Go imports - Landing page install commands - CLI README install/clone/badge URLs - CLI_SYNC.md remote and sync docs - GitHub Discussions and Issues URLs in web constants - Git remote cli-public Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7f37e2a commit 9b49d0d

9 files changed

Lines changed: 18 additions & 18 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# WebhookStash CLI
22

3-
[![CI](https://github.com/webhookstash/webhookstash-cli/actions/workflows/ci.yml/badge.svg)](https://github.com/webhookstash/webhookstash-cli/actions/workflows/ci.yml)
3+
[![CI](https://github.com/farico/webhookstash-cli/actions/workflows/ci.yml/badge.svg)](https://github.com/farico/webhookstash-cli/actions/workflows/ci.yml)
44

55
A CLI for inspecting and replaying captured webhooks from WebhookStash.
66

@@ -43,15 +43,15 @@ Webhook delivery, retries, storage, and evidence retention are handled by the ho
4343
## Installation
4444

4545
```bash
46-
go install github.com/webhookstash/webhookstash-cli/cmd/webhookstash@latest
46+
go install github.com/farico/webhookstash-cli/cmd/webhookstash@latest
4747
```
4848

4949
This installs the `webhookstash` binary to your `$GOPATH/bin` (or `$HOME/go/bin`).
5050

5151
### Building from Source
5252

5353
```bash
54-
git clone https://github.com/webhookstash/webhookstash-cli.git
54+
git clone https://github.com/farico/webhookstash-cli.git
5555
cd webhookstash-cli
5656
go build -o webhookstash cmd/webhookstash/*.go
5757
```
@@ -374,8 +374,8 @@ internal/
374374

375375
## Support & Feedback
376376

377-
- CLI bugs and feature requests: [GitHub Issues](https://github.com/webhookstash/webhookstash-cli/issues)
378-
- Product feedback and usage questions: [GitHub Discussions](https://github.com/orgs/WebhookStash/discussions)
377+
- CLI bugs and feature requests: [GitHub Issues](https://github.com/farico/webhookstash-cli/issues)
378+
- Product feedback and usage questions: [GitHub Discussions](https://github.com/farico/webhookstash-cli/discussions)
379379
- Hosted service and account management: [webhookstash.com](https://webhookstash.com)
380380

381381
## License

cmd/webhookstash/event.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"strings"
1010

1111
"github.com/spf13/cobra"
12-
"github.com/webhookstash/webhookstash-cli/internal/api"
13-
"github.com/webhookstash/webhookstash-cli/internal/config"
12+
"github.com/farico/webhookstash-cli/internal/api"
13+
"github.com/farico/webhookstash-cli/internal/config"
1414
)
1515

1616
var (

cmd/webhookstash/evidence.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"path/filepath"
77

88
"github.com/spf13/cobra"
9-
"github.com/webhookstash/webhookstash-cli/internal/api"
10-
"github.com/webhookstash/webhookstash-cli/internal/config"
9+
"github.com/farico/webhookstash-cli/internal/api"
10+
"github.com/farico/webhookstash-cli/internal/config"
1111
)
1212

1313
var (

cmd/webhookstash/logout.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55

66
"github.com/spf13/cobra"
7-
"github.com/webhookstash/webhookstash-cli/internal/config"
7+
"github.com/farico/webhookstash-cli/internal/config"
88
)
99

1010
func newLogoutCmd() *cobra.Command {

cmd/webhookstash/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ import (
1414
"time"
1515

1616
"github.com/spf13/cobra"
17-
"github.com/webhookstash/webhookstash-cli/internal/auth"
18-
"github.com/webhookstash/webhookstash-cli/internal/config"
19-
"github.com/webhookstash/webhookstash-cli/internal/websocket"
17+
"github.com/farico/webhookstash-cli/internal/auth"
18+
"github.com/farico/webhookstash-cli/internal/config"
19+
"github.com/farico/webhookstash-cli/internal/websocket"
2020
)
2121

2222
// ANSI color codes

cmd/webhookstash/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"testing"
77
"time"
88

9-
"github.com/webhookstash/webhookstash-cli/internal/config"
9+
"github.com/farico/webhookstash-cli/internal/config"
1010
)
1111

1212
func TestMaskToken(t *testing.T) {

cmd/webhookstash/projects.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66

77
"github.com/spf13/cobra"
8-
"github.com/webhookstash/webhookstash-cli/internal/config"
8+
"github.com/farico/webhookstash-cli/internal/config"
99
)
1010

1111
func newProjectsCmd() *cobra.Command {

cmd/webhookstash/replay.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"fmt"
66

77
"github.com/spf13/cobra"
8-
"github.com/webhookstash/webhookstash-cli/internal/api"
9-
"github.com/webhookstash/webhookstash-cli/internal/config"
8+
"github.com/farico/webhookstash-cli/internal/api"
9+
"github.com/farico/webhookstash-cli/internal/config"
1010
)
1111

1212
var (

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/webhookstash/webhookstash-cli
1+
module github.com/farico/webhookstash-cli
22

33
go 1.21
44

0 commit comments

Comments
 (0)