chore(consistency): sync task status from DB [auto]

Updated by fix-consistency on 2026-05-17:
  - update .custodian-brief.md for issue-core
This commit is contained in:
2026-05-17 05:06:10 +02:00
parent 663d1961cf
commit 99ea1fbc45
17 changed files with 23 additions and 0 deletions

24
issue_core/__init__.py Normal file
View File

@@ -0,0 +1,24 @@
"""
Universal Issue Tracking System
A backend-agnostic issue tracking system that supports multiple backends
through a plugin architecture. Designed to be extracted into a standalone
repository for use across multiple projects.
Features:
- Unified issue model across all backends
- Plugin-based backend architecture
- Local SQLite backend for offline work
- Bidirectional synchronization
- CLI-first interface
- Support for GitHub-style and other issue tracking systems
Supported Backends:
- Local SQLite (for offline/standalone use)
- Gitea (GitHub-compatible API)
- Future: GitHub, GitLab, JIRA, Redmine, etc.
"""
__version__ = "0.1.0"
__author__ = "MarkiTect Project"
__description__ = "Universal Issue Tracking System with Plugin Architecture"