generated from coulomb/repo-seed
25 lines
775 B
Python
25 lines
775 B
Python
"""
|
|
issue-core — Authoritative Task Lifecycle Manager
|
|
|
|
The single observable place in the Coulomb org where tasks land —
|
|
regardless of whether they were created by a human, by activity-core,
|
|
or by an agent. Backend-agnostic via a plugin architecture.
|
|
|
|
Features:
|
|
- Unified issue model across all backends
|
|
- Plugin-based backend architecture
|
|
- Local SQLite backend for offline work
|
|
- Bidirectional synchronization
|
|
- CLI-first interface
|
|
- REST ingestion endpoint for activity-core's IssueSink
|
|
|
|
Supported Backends:
|
|
- Local SQLite (offline/standalone)
|
|
- Gitea (GitHub-compatible API)
|
|
- Future: GitHub, GitLab, JIRA, Redmine
|
|
"""
|
|
|
|
__version__ = "0.2.1"
|
|
__author__ = "Coulomb / MarkiTect Project"
|
|
__description__ = "Authoritative task lifecycle manager with plugin architecture"
|