Skip to content

Commit 83ab41a

Browse files
github-actions[bot]prosdev
authored andcommitted
chore: release packages
1 parent afa8adb commit 83ab41a

File tree

13 files changed

+255
-57
lines changed

13 files changed

+255
-57
lines changed

.changeset/context-quality-v03.md

Lines changed: 0 additions & 51 deletions
This file was deleted.

packages/cli/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @lytics/dev-agent-cli
22

3+
## 0.1.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [afa8adb]
8+
- @lytics/dev-agent-core@0.3.0
9+
- @lytics/dev-agent-mcp@0.3.0
10+
- @lytics/dev-agent-subagents@0.2.0
11+
312
## 0.1.1
413

514
### Patch Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lytics/dev-agent-cli",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"private": true,
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

packages/core/CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,60 @@
11
# @lytics/dev-agent-core
22

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+
358
## 0.2.0
459

560
### Minor Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lytics/dev-agent-core",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"private": true,
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

packages/dev-agent/CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,60 @@
11
# @lytics/dev-agent
22

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+
358
## 0.2.0
459

560
### Minor Changes

packages/dev-agent/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lytics/dev-agent",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"private": false,
55
"description": "Deep code intelligence + AI subagents via MCP. Local-first semantic code search, GitHub integration, and development planning for AI tools like Cursor and Claude Code.",
66
"keywords": [

packages/integrations/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @lytics/dev-agent-integrations
22

3+
## 0.1.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [afa8adb]
8+
- @lytics/dev-agent-core@0.3.0
9+
- @lytics/dev-agent-subagents@0.2.0
10+
- @lytics/dev-agent-cli@0.1.2
11+
312
## 0.1.1
413

514
### Patch Changes

packages/integrations/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lytics/dev-agent-integrations",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"private": true,
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

packages/mcp-server/CHANGELOG.md

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,66 @@
11
# @lytics/dev-agent-mcp
22

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+
364
## 0.2.0
465

566
### Minor Changes

0 commit comments

Comments
 (0)