Skip to content

Commit afa8adb

Browse files
committed
docs: update README and website for v0.3.0 release
README changes: - Rewrite intro to focus on context provider role - Document new tools (dev_refs, dev_map) - Document dev_plan refactor to context assembly - Add example output for dev_map - Simplify structure and reduce length - Add version history section Website changes: - Add dev_refs tool documentation - Add dev_map tool documentation - Update dev_plan docs for context assembly - Update tools overview with new tools - Add 'New in v0.3.0' section Changeset: - Create changeset for v0.3.0 Context Quality release
1 parent 91bc519 commit afa8adb

File tree

7 files changed

+626
-410
lines changed

7 files changed

+626
-410
lines changed

.changeset/context-quality-v03.md

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

0 commit comments

Comments
 (0)