mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-18 11:06:19 +00:00
* feat: support annotate * feat: extract supports --feature * feat: support classify in dev cli
16 lines
437 B
Python
Generated
16 lines
437 B
Python
Generated
"""
|
|
Annotate module - Create git commits organized by features.
|
|
|
|
Provides commands for creating feature-based commits:
|
|
- annotate_features: Create commits for all features with modified files
|
|
- annotate_single_feature: Create a commit for a specific feature
|
|
"""
|
|
|
|
from .annotate import annotate_features, annotate_single_feature, AnnotateModule
|
|
|
|
__all__ = [
|
|
"annotate_features",
|
|
"annotate_single_feature",
|
|
"AnnotateModule",
|
|
]
|