| @lytics/dev-agent-cli | minor |
|---|---|
| @lytics/dev-agent-core | patch |
| @lytics/dev-agent | patch |
Remove git analytics commands to refocus on semantic value
BREAKING CHANGES:
- Remove
dev ownerscommand - usegit logor GitHub contributors instead - Remove
dev activitycommand - usegit log --sincefor activity analysis
What's Changed:
- Removed 891 lines from
dev ownerscommand - Removed 175 lines from
dev activitycommand - Cleaned up dead code in
change-frequency.ts(calculateFileAuthorContributions) - Simplified metrics collection to focus on code structure introspection
What's Kept:
code_metadatatable for debugging/introspection of indexed codecalculateChangeFrequencyfordev_mapMCP tool (shows commit activity in codebase structure)
Why:
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.
Migration:
For contributor/ownership analytics, use:
git log --format="%ae" <path> | sort | uniq -c | sort -rnfor ownershipgit log --since="1 month" --name-only | sort | uniq -c | sort -rnfor activity- GitHub's Contributors page for visualization