Skip to content

Commit 8ffc040

Browse files
github-actions[bot]prosdev
authored andcommitted
chore: release packages
1 parent c42f5ba commit 8ffc040

File tree

13 files changed

+163
-36
lines changed

13 files changed

+163
-36
lines changed

.changeset/intelligent-git-history.md

Lines changed: 0 additions & 30 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.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [c42f5ba]
8+
- @lytics/dev-agent-core@0.4.0
9+
- @lytics/dev-agent-mcp@0.4.0
10+
- @lytics/dev-agent-subagents@0.3.0
11+
312
## 0.1.2
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.2",
3+
"version": "0.1.3",
44
"private": true,
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

packages/core/CHANGELOG.md

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

3+
## 0.4.0
4+
5+
### Minor Changes
6+
7+
- c42f5ba: feat: Intelligent Git History (v0.4.0)
8+
9+
New capabilities for understanding codebase history:
10+
11+
**`dev_history` tool** - Semantic search over git commits
12+
13+
- Search commit messages by meaning (e.g., "authentication token fix")
14+
- Get file history with rename tracking
15+
- Token-budgeted output
16+
17+
**`dev_map` enhancements** - Change frequency indicators
18+
19+
- 🔥 Hot directories (5+ commits in 30 days)
20+
- ✏️ Active directories (1-4 commits in 30 days)
21+
- 📝 Recent activity (commits in 90 days)
22+
23+
**`dev_plan` enhancements** - Git context in planning
24+
25+
- Related commits shown alongside code snippets
26+
- Issue/PR references extracted from commits
27+
- Helps understand prior work on similar features
28+
29+
**Core infrastructure:**
30+
31+
- `GitIndexer` for semantic commit search
32+
- `LocalGitExtractor` for git operations
33+
- Extensible architecture for future git features
34+
335
## 0.3.0
436

537
### 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.3.0",
3+
"version": "0.4.0",
44
"private": true,
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

packages/dev-agent/CHANGELOG.md

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

3+
## 0.4.0
4+
5+
### Minor Changes
6+
7+
- c42f5ba: feat: Intelligent Git History (v0.4.0)
8+
9+
New capabilities for understanding codebase history:
10+
11+
**`dev_history` tool** - Semantic search over git commits
12+
13+
- Search commit messages by meaning (e.g., "authentication token fix")
14+
- Get file history with rename tracking
15+
- Token-budgeted output
16+
17+
**`dev_map` enhancements** - Change frequency indicators
18+
19+
- 🔥 Hot directories (5+ commits in 30 days)
20+
- ✏️ Active directories (1-4 commits in 30 days)
21+
- 📝 Recent activity (commits in 90 days)
22+
23+
**`dev_plan` enhancements** - Git context in planning
24+
25+
- Related commits shown alongside code snippets
26+
- Issue/PR references extracted from commits
27+
- Helps understand prior work on similar features
28+
29+
**Core infrastructure:**
30+
31+
- `GitIndexer` for semantic commit search
32+
- `LocalGitExtractor` for git operations
33+
- Extensible architecture for future git features
34+
335
## 0.3.0
436

537
### 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.3.0",
3+
"version": "0.4.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.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [c42f5ba]
8+
- @lytics/dev-agent-core@0.4.0
9+
- @lytics/dev-agent-subagents@0.3.0
10+
- @lytics/dev-agent-cli@0.1.3
11+
312
## 0.1.2
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.2",
3+
"version": "0.1.3",
44
"private": true,
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

packages/mcp-server/CHANGELOG.md

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

3+
## 0.4.0
4+
5+
### Minor Changes
6+
7+
- c42f5ba: feat: Intelligent Git History (v0.4.0)
8+
9+
New capabilities for understanding codebase history:
10+
11+
**`dev_history` tool** - Semantic search over git commits
12+
13+
- Search commit messages by meaning (e.g., "authentication token fix")
14+
- Get file history with rename tracking
15+
- Token-budgeted output
16+
17+
**`dev_map` enhancements** - Change frequency indicators
18+
19+
- 🔥 Hot directories (5+ commits in 30 days)
20+
- ✏️ Active directories (1-4 commits in 30 days)
21+
- 📝 Recent activity (commits in 90 days)
22+
23+
**`dev_plan` enhancements** - Git context in planning
24+
25+
- Related commits shown alongside code snippets
26+
- Issue/PR references extracted from commits
27+
- Helps understand prior work on similar features
28+
29+
**Core infrastructure:**
30+
31+
- `GitIndexer` for semantic commit search
32+
- `LocalGitExtractor` for git operations
33+
- Extensible architecture for future git features
34+
35+
### Patch Changes
36+
37+
- Updated dependencies [c42f5ba]
38+
- @lytics/dev-agent-core@0.4.0
39+
- @lytics/dev-agent-subagents@0.3.0
40+
341
## 0.3.0
442

543
### Minor Changes

0 commit comments

Comments
 (0)