|
1 | 1 | # @lytics/dev-agent-mcp |
2 | 2 |
|
| 3 | +## 0.3.0 |
| 4 | + |
| 5 | +### Minor Changes |
| 6 | + |
| 7 | +- afa8adb: feat: Context Quality release (v0.3.0) |
| 8 | + |
| 9 | + This release significantly enhances dev-agent's ability to provide rich, actionable context to AI assistants. |
| 10 | + |
| 11 | + ## New Tools |
| 12 | + |
| 13 | + ### `dev_refs` - Relationship Queries |
| 14 | + |
| 15 | + Query code relationships to understand what calls what: |
| 16 | + |
| 17 | + - Find all callers of a function |
| 18 | + - Find all callees (what a function calls) |
| 19 | + - Includes file paths, line numbers, and snippets |
| 20 | + |
| 21 | + ### `dev_map` - Codebase Overview |
| 22 | + |
| 23 | + Get a high-level view of repository structure: |
| 24 | + |
| 25 | + - Directory tree with component counts |
| 26 | + - **Hot Paths**: Most referenced files in the codebase |
| 27 | + - **Smart Depth**: Adaptive expansion based on information density |
| 28 | + - **Signatures**: Function/class signatures in export listings |
| 29 | + - Configurable depth and focus directory |
| 30 | + |
| 31 | + ## Enhanced Tools |
| 32 | + |
| 33 | + ### `dev_plan` - Context Assembler (Breaking Change) |
| 34 | + |
| 35 | + Completely refactored from heuristic task breakdown to context assembly: |
| 36 | + |
| 37 | + - Returns rich context package instead of task lists |
| 38 | + - Includes issue details with comments |
| 39 | + - Includes relevant code snippets from semantic search |
| 40 | + - Includes detected codebase patterns |
| 41 | + - Let LLMs do the reasoning with better data |
| 42 | + |
| 43 | + **Migration:** The old task breakdown output is removed. The new output provides strictly more information for LLMs to create their own plans. |
| 44 | + |
| 45 | + ### `dev_search` - Richer Results (from v0.2.0) |
| 46 | + |
| 47 | + - Code snippets included in results |
| 48 | + - Import statements for context |
| 49 | + - Caller/callee hints |
| 50 | + - Progressive disclosure based on token budget |
| 51 | + |
| 52 | + ## Philosophy |
| 53 | + |
| 54 | + This release embraces the principle: **Provide structured data, let LLMs reason.** |
| 55 | + |
| 56 | + Instead of trying to be smart with heuristics, dev-agent now focuses on assembling comprehensive context that AI assistants can use effectively. |
| 57 | + |
| 58 | +### Patch Changes |
| 59 | + |
| 60 | +- Updated dependencies [afa8adb] |
| 61 | + - @lytics/dev-agent-core@0.3.0 |
| 62 | + - @lytics/dev-agent-subagents@0.2.0 |
| 63 | + |
3 | 64 | ## 0.2.0 |
4 | 65 |
|
5 | 66 | ### Minor Changes |
|
0 commit comments