Skip to content

Commit 5394ea0

Browse files
committed
v0.50.0 — rename module from kode to odek (repo renamed)
BREAKING: module path changed from github.com/BackendStack21/kode to github.com/BackendStack21/odek. All Go import paths and install commands updated accordingly.
1 parent edc8b03 commit 5394ea0

54 files changed

Lines changed: 141 additions & 141 deletions

Some content is hidden

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

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
go-version: "1.24"
1818

1919
- name: build
20-
run: go build -o /tmp/odek-test github.com/BackendStack21/kode/cmd/odek && chmod +x /tmp/odek-test
20+
run: go build -o /tmp/odek-test github.com/BackendStack21/odek/cmd/odek && chmod +x /tmp/odek-test
2121

2222
- name: test
2323
run: ODEK_BINARY=/tmp/odek-test go test ./... -short -race -coverprofile=coverage.out -covermode=atomic -count=1

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# odek — the fastest, minimalistic autonomous ReAct agent CLI in Go.
2-
# https://github.com/BackendStack21/kode
2+
# https://github.com/BackendStack21/odek
33

44
GO := go
55
GOLINT := $(shell command -v golangci-lint 2>/dev/null)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ One binary. One loop. Zero frameworks. ReAct (Reasoning + Acting) — think, the
66

77
```bash
88
# Install
9-
go install github.com/BackendStack21/kode/cmd/odek@latest
9+
go install github.com/BackendStack21/odek/cmd/odek@latest
1010

1111
# Use (set ODEK_API_KEY, DEEPSEEK_API_KEY, or OPENAI_API_KEY)
1212
export ODEK_API_KEY=sk-...
@@ -172,7 +172,7 @@ odek run "@README.md what does this project do?"
172172
## Programmatic API
173173

174174
```go
175-
import "github.com/BackendStack21/kode"
175+
import "github.com/BackendStack21/odek"
176176

177177
agent, err := odek.New(odek.Config{
178178
Model: "deepseek-v4-flash",

cmd/odek/browser_tool.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
"sync"
1212

13-
"github.com/BackendStack21/kode/internal/danger"
13+
"github.com/BackendStack21/odek/internal/danger"
1414
)
1515

1616
// ── Regex helpers for HTML parsing (zero-dep) ─────────────────────────

cmd/odek/file_tool.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"syscall"
1414
"time"
1515

16-
"github.com/BackendStack21/kode"
17-
"github.com/BackendStack21/kode/internal/danger"
16+
"github.com/BackendStack21/odek"
17+
"github.com/BackendStack21/odek/internal/danger"
1818
)
1919

2020
// ── ReadFile Tool ──────────────────────────────────────────────────────

cmd/odek/file_tool_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strings"
99
"testing"
1010

11-
"github.com/BackendStack21/kode/internal/danger"
11+
"github.com/BackendStack21/odek/internal/danger"
1212
)
1313

1414
// ── ReadFile Tool ──────────────────────────────────────────────────────

cmd/odek/main.go

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

17-
"github.com/BackendStack21/kode"
18-
"github.com/BackendStack21/kode/internal/config"
19-
"github.com/BackendStack21/kode/internal/telegram"
20-
"github.com/BackendStack21/kode/internal/danger"
21-
"github.com/BackendStack21/kode/internal/llm"
22-
"github.com/BackendStack21/kode/internal/mcpclient"
23-
"github.com/BackendStack21/kode/internal/render"
24-
"github.com/BackendStack21/kode/internal/session"
25-
"github.com/BackendStack21/kode/internal/skills"
17+
"github.com/BackendStack21/odek"
18+
"github.com/BackendStack21/odek/internal/config"
19+
"github.com/BackendStack21/odek/internal/telegram"
20+
"github.com/BackendStack21/odek/internal/danger"
21+
"github.com/BackendStack21/odek/internal/llm"
22+
"github.com/BackendStack21/odek/internal/mcpclient"
23+
"github.com/BackendStack21/odek/internal/render"
24+
"github.com/BackendStack21/odek/internal/session"
25+
"github.com/BackendStack21/odek/internal/skills"
2626
)
2727

2828
// version is set at build time via ldflags: -ldflags "-X main.version=v0.2.1"

cmd/odek/main_test.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ import (
1313
"strings"
1414
"testing"
1515

16-
"github.com/BackendStack21/kode"
17-
"github.com/BackendStack21/kode/internal/config"
18-
"github.com/BackendStack21/kode/internal/danger"
19-
"github.com/BackendStack21/kode/internal/llm"
20-
"github.com/BackendStack21/kode/internal/mcpclient"
21-
"github.com/BackendStack21/kode/internal/telegram"
16+
"github.com/BackendStack21/odek"
17+
"github.com/BackendStack21/odek/internal/config"
18+
"github.com/BackendStack21/odek/internal/danger"
19+
"github.com/BackendStack21/odek/internal/llm"
20+
"github.com/BackendStack21/odek/internal/mcpclient"
21+
"github.com/BackendStack21/odek/internal/telegram"
2222
)
2323

2424
func TestGetVersion_LdFlagsOverride(t *testing.T) {

cmd/odek/mcp.go

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

8-
"github.com/BackendStack21/kode/internal/config"
9-
"github.com/BackendStack21/kode/internal/mcp"
10-
"github.com/BackendStack21/kode/internal/skills"
8+
"github.com/BackendStack21/odek/internal/config"
9+
"github.com/BackendStack21/odek/internal/mcp"
10+
"github.com/BackendStack21/odek/internal/skills"
1111
)
1212

1313
// ── MCP Command ────────────────────────────────────────────────────────

cmd/odek/mcp_e2e_test.go

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

9-
"github.com/BackendStack21/kode/internal/mcpclient"
9+
"github.com/BackendStack21/odek/internal/mcpclient"
1010
)
1111

1212
// ── E2E: MCP Client with a real MCP server subprocess ──────────────────

0 commit comments

Comments
 (0)