Skip to content

Commit 9ddba4f

Browse files
docs: update CHANGELOG for v0.7.0 release
1 parent 5818b4d commit 9ddba4f

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,54 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.7.0] - 2026-01-22
9+
10+
### Added
11+
12+
- **Semantic search** - AI-powered code search with natural language queries:
13+
- `agentlens index` - Build vector index from codebase
14+
- `agentlens search "query"` - Search with natural language
15+
- Symbol-based chunking with sliding window fallback
16+
- Hybrid search mode (vector + text with RRF fusion)
17+
- **Ollama embedder** - Local embedding generation via Ollama API (`nomic-embed-text` model, 768 dimensions)
18+
- **MCP semantic_search tool** - Expose search capabilities to AI tools via Model Context Protocol
19+
- **Mermaid diagrams** - Visualize module dependencies with `graph TD` diagrams in `INDEX.md`
20+
- **Interactive install TUI** - Guided setup wizard for first-time users
21+
- **Skills subcommand** (`agentlens skills`) - Manage AI tool skill configurations
22+
- **Token counting** - Usage analytics and telemetry module for tracking token consumption
23+
- **Code of Conduct** - Contributor Covenant added
24+
25+
### Changed
26+
27+
- Renamed `AgentmapServer` to `AgentlensServer` for consistency
28+
- Updated template markers to use `agentlens` naming
29+
30+
### Fixed
31+
32+
- Clippy warnings across codebase
33+
- Code formatting with `cargo fmt`
34+
35+
### Configuration
36+
37+
New `[search]` section in `agentlens.toml`:
38+
39+
```toml
40+
[search]
41+
[search.embedder]
42+
provider = "ollama"
43+
model = "nomic-embed-text"
44+
dimensions = 768
45+
46+
[search.chunking]
47+
max_tokens = 512
48+
strategy = "symbol"
49+
50+
[search.search]
51+
hybrid_enabled = true
52+
hybrid_k = 60.0
53+
default_limit = 10
54+
```
55+
856
## [0.4.2] - 2026-01-07
957

1058
### Added

0 commit comments

Comments
 (0)