From 67c4b1d26c24b12d5cd4618422930b6f7f9f3a27 Mon Sep 17 00:00:00 2001 From: Nightly README Agent Date: Sun, 10 May 2026 02:07:17 +0000 Subject: [PATCH] docs: add missing service package import to Go library example The example used service.RepositoryAddParams and service.WithLimit but only imported github.com/helixml/kodit. The service package is not re-exported from the root package, so the example would not compile. Co-Authored-By: Claude Sonnet 4.6 --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a4e205c..35347eca 100644 --- a/README.md +++ b/README.md @@ -185,7 +185,10 @@ The enrichment tools (`architecture_docs`, `api_docs`, `database_schema`, `cookb Kodit can be embedded directly as a Go library. This is how [Helix](https://helix.ml) integrates Kodit into its platform. ```go -import "github.com/helixml/kodit" +import ( + "github.com/helixml/kodit" + "github.com/helixml/kodit/application/service" +) client, err := kodit.New( kodit.WithSQLite(".kodit/data.db"),