Skip to content

Commit 69567d0

Browse files
github-actions[bot]prosdev
authored andcommitted
chore: release packages
1 parent 8b4972a commit 69567d0

File tree

13 files changed

+142
-42
lines changed

13 files changed

+142
-42
lines changed

.changeset/remove-git-analytics.md

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

packages/cli/CHANGELOG.md

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

3+
## 0.6.0
4+
5+
### Minor Changes
6+
7+
- 8b4972a: Remove git analytics commands to refocus on semantic value
8+
9+
**BREAKING CHANGES:**
10+
11+
- Remove `dev owners` command - use `git log` or GitHub contributors instead
12+
- Remove `dev activity` command - use `git log --since` for activity analysis
13+
14+
**What's Changed:**
15+
16+
- Removed 891 lines from `dev owners` command
17+
- Removed 175 lines from `dev activity` command
18+
- Cleaned up dead code in `change-frequency.ts` (calculateFileAuthorContributions)
19+
- Simplified metrics collection to focus on code structure introspection
20+
21+
**What's Kept:**
22+
23+
- `code_metadata` table for debugging/introspection of indexed code
24+
- `calculateChangeFrequency` for `dev_map` MCP tool (shows commit activity in codebase structure)
25+
26+
**Why:**
27+
28+
Dev-agent's unique value is semantic search (embeddings + AST), not git analytics which GitHub/git already provide. This change reduces complexity by ~1,200 lines and refocuses on MCP tools for AI context.
29+
30+
**Migration:**
31+
32+
For contributor/ownership analytics, use:
33+
34+
- `git log --format="%ae" <path> | sort | uniq -c | sort -rn` for ownership
35+
- `git log --since="1 month" --name-only | sort | uniq -c | sort -rn` for activity
36+
- GitHub's Contributors page for visualization
37+
38+
### Patch Changes
39+
40+
- Updated dependencies [8b4972a]
41+
- @lytics/dev-agent-core@0.9.2
42+
- @lytics/dev-agent-mcp@0.5.3
43+
- @lytics/dev-agent-subagents@0.5.3
44+
345
## 0.5.1
446

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

packages/core/CHANGELOG.md

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

3+
## 0.9.2
4+
5+
### Patch Changes
6+
7+
- 8b4972a: Remove git analytics commands to refocus on semantic value
8+
9+
**BREAKING CHANGES:**
10+
11+
- Remove `dev owners` command - use `git log` or GitHub contributors instead
12+
- Remove `dev activity` command - use `git log --since` for activity analysis
13+
14+
**What's Changed:**
15+
16+
- Removed 891 lines from `dev owners` command
17+
- Removed 175 lines from `dev activity` command
18+
- Cleaned up dead code in `change-frequency.ts` (calculateFileAuthorContributions)
19+
- Simplified metrics collection to focus on code structure introspection
20+
21+
**What's Kept:**
22+
23+
- `code_metadata` table for debugging/introspection of indexed code
24+
- `calculateChangeFrequency` for `dev_map` MCP tool (shows commit activity in codebase structure)
25+
26+
**Why:**
27+
28+
Dev-agent's unique value is semantic search (embeddings + AST), not git analytics which GitHub/git already provide. This change reduces complexity by ~1,200 lines and refocuses on MCP tools for AI context.
29+
30+
**Migration:**
31+
32+
For contributor/ownership analytics, use:
33+
34+
- `git log --format="%ae" <path> | sort | uniq -c | sort -rn` for ownership
35+
- `git log --since="1 month" --name-only | sort | uniq -c | sort -rn` for activity
36+
- GitHub's Contributors page for visualization
37+
338
## 0.9.1
439

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

packages/dev-agent/CHANGELOG.md

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

3+
## 0.8.4
4+
5+
### Patch Changes
6+
7+
- 8b4972a: Remove git analytics commands to refocus on semantic value
8+
9+
**BREAKING CHANGES:**
10+
11+
- Remove `dev owners` command - use `git log` or GitHub contributors instead
12+
- Remove `dev activity` command - use `git log --since` for activity analysis
13+
14+
**What's Changed:**
15+
16+
- Removed 891 lines from `dev owners` command
17+
- Removed 175 lines from `dev activity` command
18+
- Cleaned up dead code in `change-frequency.ts` (calculateFileAuthorContributions)
19+
- Simplified metrics collection to focus on code structure introspection
20+
21+
**What's Kept:**
22+
23+
- `code_metadata` table for debugging/introspection of indexed code
24+
- `calculateChangeFrequency` for `dev_map` MCP tool (shows commit activity in codebase structure)
25+
26+
**Why:**
27+
28+
Dev-agent's unique value is semantic search (embeddings + AST), not git analytics which GitHub/git already provide. This change reduces complexity by ~1,200 lines and refocuses on MCP tools for AI context.
29+
30+
**Migration:**
31+
32+
For contributor/ownership analytics, use:
33+
34+
- `git log --format="%ae" <path> | sort | uniq -c | sort -rn` for ownership
35+
- `git log --since="1 month" --name-only | sort | uniq -c | sort -rn` for activity
36+
- GitHub's Contributors page for visualization
37+
338
## 0.8.3
439

540
### Patch 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.8.3",
3+
"version": "0.8.4",
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.19
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [8b4972a]
8+
- @lytics/dev-agent-cli@0.6.0
9+
- @lytics/dev-agent-core@0.9.2
10+
- @lytics/dev-agent-subagents@0.5.3
11+
312
## 0.1.18
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.18",
3+
"version": "0.1.19",
44
"private": true,
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

packages/mcp-server/CHANGELOG.md

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

3+
## 0.5.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [8b4972a]
8+
- @lytics/dev-agent-core@0.9.2
9+
- @lytics/dev-agent-subagents@0.5.3
10+
311
## 0.5.2
412

513
### Patch Changes

0 commit comments

Comments
 (0)