You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- README: Add supported languages table, update version history
- AGENTS.md/CLAUDE.md: Add Go to tech stack, update test count
- Website: Add v0.6.0 release notes, update architecture
- Fix dates from 2024 to 2025
Copy file name to clipboardExpand all lines: website/content/updates/index.mdx
+67-2Lines changed: 67 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,9 +9,73 @@ What's new in dev-agent. We ship improvements regularly to help AI assistants un
9
9
10
10
---
11
11
12
+
## v0.6.0 — Go Language Support
13
+
14
+
*December 10, 2025*
15
+
16
+
**Full Go language support with tree-sitter.** Index Go codebases with the same quality as TypeScript — functions, methods, structs, interfaces, and generics.
Go teams can now use dev-agent for semantic code search across their entire codebase. Search for "authentication middleware" and find your Go handlers, not just TypeScript files.
63
+
64
+
**Tested on:** Large Go codebase (~4k files, 49k documents) ✅
65
+
66
+
### Technical Details
67
+
68
+
Go parsing uses **tree-sitter WASM** — the same parser used by GitHub, Neovim, and other tools. This provides:
69
+
- Fast, incremental parsing
70
+
- No Go installation required
71
+
- Portable across platforms
72
+
- Foundation for future Python/Rust support
73
+
74
+
---
75
+
12
76
## v0.5.2 — GitHub Indexing for Large Repositories
13
77
14
-
*December 6, 2024*
78
+
*December 6, 2025*
15
79
16
80
**Fixed `ENOBUFS` errors when indexing repositories with many GitHub issues/PRs.** Large active repositories can now be fully indexed without buffer overflow issues.
17
81
@@ -283,7 +347,8 @@ dev mcp install --cursor
283
347
284
348
We're working on:
285
349
286
-
-**More languages** — Better Go and Python support via tree-sitter
350
+
-**Python support** — Using tree-sitter infrastructure from Go scanner
0 commit comments