Skip to content
This repository was archived by the owner on Sep 18, 2025. It is now read-only.

Commit b106787

Browse files
committed
change package name
1 parent e1b2ce4 commit b106787

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+229
-229
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ OpenCode is a Go-based CLI application that brings AI assistance to your termina
2424

2525
```bash
2626
# Coming soon
27-
go install github.com/kujtimiihoxha/opencode@latest
27+
go install github.com/opencode-ai/opencode@latest
2828
```
2929

3030
## Configuration
@@ -341,7 +341,7 @@ While the LSP client implementation supports the full LSP protocol (including co
341341

342342
```bash
343343
# Clone the repository
344-
git clone https://github.com/kujtimiihoxha/opencode.git
344+
git clone https://github.com/opencode-ai/opencode.git
345345
cd opencode
346346

347347
# Build

cmd/root.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ import (
88
"time"
99

1010
tea "github.com/charmbracelet/bubbletea"
11-
"github.com/kujtimiihoxha/opencode/internal/app"
12-
"github.com/kujtimiihoxha/opencode/internal/config"
13-
"github.com/kujtimiihoxha/opencode/internal/db"
14-
"github.com/kujtimiihoxha/opencode/internal/llm/agent"
15-
"github.com/kujtimiihoxha/opencode/internal/logging"
16-
"github.com/kujtimiihoxha/opencode/internal/pubsub"
17-
"github.com/kujtimiihoxha/opencode/internal/tui"
18-
"github.com/kujtimiihoxha/opencode/internal/version"
11+
"github.com/opencode-ai/opencode/internal/app"
12+
"github.com/opencode-ai/opencode/internal/config"
13+
"github.com/opencode-ai/opencode/internal/db"
14+
"github.com/opencode-ai/opencode/internal/llm/agent"
15+
"github.com/opencode-ai/opencode/internal/logging"
16+
"github.com/opencode-ai/opencode/internal/pubsub"
17+
"github.com/opencode-ai/opencode/internal/tui"
18+
"github.com/opencode-ai/opencode/internal/version"
1919
zone "github.com/lrstanley/bubblezone"
2020
"github.com/spf13/cobra"
2121
)

cmd/schema/main.go

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

8-
"github.com/kujtimiihoxha/opencode/internal/config"
9-
"github.com/kujtimiihoxha/opencode/internal/llm/models"
8+
"github.com/opencode-ai/opencode/internal/config"
9+
"github.com/opencode-ai/opencode/internal/llm/models"
1010
)
1111

1212
// JSONSchemaType represents a JSON Schema type

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/kujtimiihoxha/opencode
1+
module github.com/opencode-ai/opencode
22

33
go 1.24.0
44

internal/app/app.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import (
77
"sync"
88
"time"
99

10-
"github.com/kujtimiihoxha/opencode/internal/config"
11-
"github.com/kujtimiihoxha/opencode/internal/db"
12-
"github.com/kujtimiihoxha/opencode/internal/history"
13-
"github.com/kujtimiihoxha/opencode/internal/llm/agent"
14-
"github.com/kujtimiihoxha/opencode/internal/logging"
15-
"github.com/kujtimiihoxha/opencode/internal/lsp"
16-
"github.com/kujtimiihoxha/opencode/internal/message"
17-
"github.com/kujtimiihoxha/opencode/internal/permission"
18-
"github.com/kujtimiihoxha/opencode/internal/session"
10+
"github.com/opencode-ai/opencode/internal/config"
11+
"github.com/opencode-ai/opencode/internal/db"
12+
"github.com/opencode-ai/opencode/internal/history"
13+
"github.com/opencode-ai/opencode/internal/llm/agent"
14+
"github.com/opencode-ai/opencode/internal/logging"
15+
"github.com/opencode-ai/opencode/internal/lsp"
16+
"github.com/opencode-ai/opencode/internal/message"
17+
"github.com/opencode-ai/opencode/internal/permission"
18+
"github.com/opencode-ai/opencode/internal/session"
1919
)
2020

2121
type App struct {

internal/app/lsp.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import (
44
"context"
55
"time"
66

7-
"github.com/kujtimiihoxha/opencode/internal/config"
8-
"github.com/kujtimiihoxha/opencode/internal/logging"
9-
"github.com/kujtimiihoxha/opencode/internal/lsp"
10-
"github.com/kujtimiihoxha/opencode/internal/lsp/watcher"
7+
"github.com/opencode-ai/opencode/internal/config"
8+
"github.com/opencode-ai/opencode/internal/logging"
9+
"github.com/opencode-ai/opencode/internal/lsp"
10+
"github.com/opencode-ai/opencode/internal/lsp/watcher"
1111
)
1212

1313
func (app *App) initLSPClients(ctx context.Context) {

internal/config/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"os"
88
"strings"
99

10-
"github.com/kujtimiihoxha/opencode/internal/llm/models"
11-
"github.com/kujtimiihoxha/opencode/internal/logging"
10+
"github.com/opencode-ai/opencode/internal/llm/models"
11+
"github.com/opencode-ai/opencode/internal/logging"
1212
"github.com/spf13/viper"
1313
)
1414

internal/db/connect.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"github.com/golang-migrate/migrate/v4/database/sqlite3"
1313
_ "github.com/mattn/go-sqlite3"
1414

15-
"github.com/kujtimiihoxha/opencode/internal/config"
16-
"github.com/kujtimiihoxha/opencode/internal/logging"
15+
"github.com/opencode-ai/opencode/internal/config"
16+
"github.com/opencode-ai/opencode/internal/logging"
1717
)
1818

1919
func Connect() (*sql.DB, error) {

internal/diff/diff.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import (
1919
"github.com/charmbracelet/x/ansi"
2020
"github.com/go-git/go-git/v5"
2121
"github.com/go-git/go-git/v5/plumbing/object"
22-
"github.com/kujtimiihoxha/opencode/internal/config"
23-
"github.com/kujtimiihoxha/opencode/internal/logging"
22+
"github.com/opencode-ai/opencode/internal/config"
23+
"github.com/opencode-ai/opencode/internal/logging"
2424
"github.com/sergi/go-diff/diffmatchpatch"
2525
)
2626

internal/history/file.go

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

1111
"github.com/google/uuid"
12-
"github.com/kujtimiihoxha/opencode/internal/db"
13-
"github.com/kujtimiihoxha/opencode/internal/pubsub"
12+
"github.com/opencode-ai/opencode/internal/db"
13+
"github.com/opencode-ai/opencode/internal/pubsub"
1414
)
1515

1616
const (

0 commit comments

Comments
 (0)