Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,11 @@ unit.xml
.vscode/
*.swp

# Claude Code
.claude/settings.local.json

# OS
.DS_Store

# GSD workflow (local-only planning artifacts)
.planning/
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ formatters:
sections:
- standard
- default
- prefix(github.com/amikos-tech/gin-index)
- prefix(github.com/amikos-tech/ami-gin)
- blank
- dot
custom-order: true
284 changes: 284 additions & 0 deletions CLAUDE.md

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License

Copyright (c) 2026 Amikos Tech Ltd.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ The index decouples **pruning** (which row groups to read) from **execution** (D
## Installation

```bash
go get github.com/amikos-tech/gin-index
go get github.com/amikos-tech/ami-gin
```

## Quick Start
Expand All @@ -80,7 +80,7 @@ package main

import (
"fmt"
gin "github.com/amikos-tech/gin-index"
gin "github.com/amikos-tech/ami-gin"
)

func main() {
Expand Down Expand Up @@ -464,7 +464,7 @@ A command-line tool is provided for common operations:

```bash
# Install
go install github.com/amikos-tech/gin-index/cmd/gin-index@latest
go install github.com/amikos-tech/ami-gin/cmd/gin-index@latest

# Build sidecar index
gin-index build -c attributes data.parquet
Expand Down
2 changes: 1 addition & 1 deletion cmd/gin-index/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

"github.com/pkg/errors"

gin "github.com/amikos-tech/gin-index"
gin "github.com/amikos-tech/ami-gin"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/pkg/errors"

gin "github.com/amikos-tech/gin-index"
gin "github.com/amikos-tech/ami-gin"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/full/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/pkg/errors"

gin "github.com/amikos-tech/gin-index"
gin "github.com/amikos-tech/ami-gin"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/fulltext/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/pkg/errors"

gin "github.com/amikos-tech/gin-index"
gin "github.com/amikos-tech/ami-gin"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/nested/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/pkg/errors"

gin "github.com/amikos-tech/gin-index"
gin "github.com/amikos-tech/ami-gin"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/null/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/pkg/errors"

gin "github.com/amikos-tech/gin-index"
gin "github.com/amikos-tech/ami-gin"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/parquet/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/parquet-go/parquet-go"
"github.com/pkg/errors"

gin "github.com/amikos-tech/gin-index"
gin "github.com/amikos-tech/ami-gin"
)

type Record struct {
Expand Down
2 changes: 1 addition & 1 deletion examples/range/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/pkg/errors"

gin "github.com/amikos-tech/gin-index"
gin "github.com/amikos-tech/ami-gin"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/regex/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/pkg/errors"

gin "github.com/amikos-tech/gin-index"
gin "github.com/amikos-tech/ami-gin"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/serialize/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/pkg/errors"

gin "github.com/amikos-tech/gin-index"
gin "github.com/amikos-tech/ami-gin"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/transformers-advanced/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/pkg/errors"

gin "github.com/amikos-tech/gin-index"
gin "github.com/amikos-tech/ami-gin"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/transformers/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/pkg/errors"

gin "github.com/amikos-tech/gin-index"
gin "github.com/amikos-tech/ami-gin"
)

func main() {
Expand Down
Loading