Files
a0_software_orchestrator/helpers/library/__init__.py
T
Software Orchestrator 5769c1cd22 Initial commit: a0_software_orchestrator v1.0
- Auto-Registration-Bug behoben (register_project/get_project_id/resolve_project Trennung)
- 25 Tests gruen (Pytest)
- block_compactor-Tool refactored (Option B: Soft-Check statt Hard-Block)
- 4 Restbaustellen gefixt
- DB-Schema: plugin_settings-Tabelle hinzugefuegt
- 3 Schattenprojekte aus DB geloescht
- Plan v3 + Refactor-Plan + Worklog dokumentiert
2026-06-16 22:13:06 +00:00

17 lines
603 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""
A0 Software Orchestrator Patterns-Bibliothek
Selbstlernende Wissensdatenbank für Projekt-Patterns.
Exportiert:
- PatternDB: Singleton-Datenbank-Klasse
- PatternExtractor: Extrahiert Patterns aus Projekt-Artefakten
- extract_from_project: Convenience-Funktion
- get_db: Singleton-Zugriff
"""
from usr.plugins.a0_software_orchestrator.helpers.library.db import PatternDB, get_db
from usr.plugins.a0_software_orchestrator.helpers.library.extractor import PatternExtractor, extract_from_project
__all__ = ['PatternDB', 'PatternExtractor', 'extract_from_project', 'get_db']
__version__ = '1.0.0'