|
1 | 1 | # @lytics/dev-agent-cli |
2 | 2 |
|
| 3 | +## 0.2.0 |
| 4 | + |
| 5 | +### Minor Changes |
| 6 | + |
| 7 | +- f578042: feat: Go language support |
| 8 | + |
| 9 | + Add comprehensive Go language support to dev-agent: |
| 10 | + |
| 11 | + **Go Scanner** |
| 12 | + |
| 13 | + - Tree-sitter WASM infrastructure (reusable for Python/Rust later) |
| 14 | + - Extract functions, methods, structs, interfaces, types, constants |
| 15 | + - Method receivers with pointer detection |
| 16 | + - Go 1.18+ generics support |
| 17 | + - Go doc comment extraction |
| 18 | + - Exported symbol detection (capital letter convention) |
| 19 | + - Generated file skipping (_.pb.go, _.gen.go, etc.) |
| 20 | + - 90%+ test coverage |
| 21 | + |
| 22 | + **Indexer Logging** |
| 23 | + |
| 24 | + - Add `--verbose` flag to `dev index`, `dev git index`, `dev gh index` |
| 25 | + - Progress spinner shows actual counts: `Embedding 4480/49151 documents (9%)` |
| 26 | + - Structured logging with kero logger |
| 27 | + |
| 28 | + **Go-Specific Exclusions** |
| 29 | + |
| 30 | + - Protobuf: `*.pb.go`, `*.pb.gw.go` |
| 31 | + - Generated: `*.gen.go`, `*_gen.go` |
| 32 | + - Mocks: `mock_*.go`, `mocks/` |
| 33 | + - Test fixtures: `testdata/` |
| 34 | + |
| 35 | + Tested on large Go codebase (~4k files, 49k documents). |
| 36 | + |
| 37 | +### Patch Changes |
| 38 | + |
| 39 | +- Updated dependencies [f578042] |
| 40 | + - @lytics/dev-agent-core@0.6.0 |
| 41 | + - @lytics/dev-agent-subagents@0.4.0 |
| 42 | + - @lytics/dev-agent-mcp@0.4.7 |
| 43 | + |
3 | 44 | ## 0.1.11 |
4 | 45 |
|
5 | 46 | ### Patch Changes |
|
0 commit comments