issue-core/issue_core/__init__.py

17 lines
592 B
Python
Raw Permalink Normal View History

"""
issue-core external issue-tracker connector
Backend-agnostic CLI, library, and optional REST surface for operating on
third-party issue trackers (Gitea/Forgejo, local SQLite). Not the origin of
fleet work records (see INTENT.md / SCOPE.md).
Shipped:
- Unified issue model and IssueBackend plugin architecture
- Local SQLite + Gitea backends; bidirectional sync CLI
- CLI (`issue` / `issue-core`) and optional FastAPI REST (`issue serve`)
"""
2026-06-25 19:40:15 +02:00
__version__ = "0.2.1"
__author__ = "Coulomb / MarkiTect Project"
__description__ = "External issue-tracker connector with plugin backends"