Product: Edgit Version: v1.0.0 Last Updated: 2025-11-01
What is Edgit?
Edgit is a CLI tool that extends Git with component-aware functionality. It tracks components (functions, agents, configs) in a registry, uses Git tags for semantic versioning, and provides AI-powered commit message generation.Core Concepts
Component Registry
Component Registry
The 
.edgit/components.json file tracks all components in your repository with their metadata, paths, and configuration.Git Tag Versioning
Git Tag Versioning
Edgit uses Git tags in the format 
<component>-v<version> for versioning. This approach is Git-native and doesn’t require version files.AI-Powered Commits
AI-Powered Commits
When 
OPENAI_API_KEY is configured, Edgit analyzes component changes and generates conventional commit messages automatically.Deployment Tracking
Deployment Tracking
Edgit tracks which component versions are deployed to which environments using Git tag metadata.
Key Features
Component Management
- Registry-based tracking: All components in one place
 - Multiple types: Functions, agents, configs, custom types
 - Metadata support: Description, dependencies, configuration
 - Path-based detection: Automatically detect component changes in commits
 
Versioning
- Git-native tags: Use existing Git infrastructure
 - Semantic versioning: Enforced v.. format
 - Component-scoped: Each component has independent version history
 - No package.json clutter: Versions are tags, not files
 
AI Integration
- Automatic commit messages: Conventional commits based on diffs
 - Component-aware: Understands which components changed
 - Configurable: Use OpenAI or custom providers
 - Opt-in: Works with or without AI features
 
Deployment Workflows
- Environment tracking: Know what’s deployed where
 - Version history: Audit trail of all deployments
 - Git integration: Leverage existing Git workflows
 - Metadata support: Add custom deployment information
 
Architecture
Use Cases
Monorepo Component Management
Track hundreds of functions, agents, and configs in a single repository with independent versioning.
Serverless Functions
Version and deploy AWS Lambda, Cloudflare Workers, or Vercel Functions independently.
AI Agent Libraries
Manage collections of AI agents with semantic versioning and deployment tracking.
Configuration Management
Track configuration files as components with version history and environment-specific deployments.
Benefits
For Developers
- Familiar workflow: Extends Git, doesn’t replace it
 - Less boilerplate: No version bump commits
 - Better commits: AI-generated conventional commits
 - Clear history: Component-scoped version tags
 
For Teams
- Deployment visibility: Know what’s deployed where
 - Independent releases: Deploy components individually
 - Audit trail: Git-based deployment history
 - No migration: Works with existing Git repos
 
For Organizations
- Git-native: Leverages existing Git infrastructure
 - No vendor lock-in: Standard Git tags and metadata
 - Scalable: Works with repos of any size
 - Secure: Uses your Git authentication
 
Comparison
| Feature | Edgit | Lerna | Changesets | Nx | 
|---|---|---|---|---|
| Git Tag Versioning | ✅ | ❌ | ❌ | ❌ | 
| Component Registry | ✅ | ❌ | ❌ | ✅ | 
| AI Commit Messages | ✅ | ❌ | ❌ | ❌ | 
| Deployment Tracking | ✅ | ❌ | ❌ | ❌ | 
| Independent Versioning | ✅ | ✅ | ✅ | ✅ | 
| Monorepo Support | ✅ | ✅ | ✅ | ✅ | 
| Zero Config | ✅ | ❌ | ❌ | ❌ | 
Getting Started
1
Install
2
Initialize
3
Add Component
4
Create Version

