All checks were successful
Deploy Development / deploy (push) Successful in 38s
Test Suite / pytest-backend (push) Successful in 18s
Test Suite / lint-backend (push) Successful in 1s
Test Suite / compose-smoke (push) Has been skipped
Test Suite / k6 /api/health Baseline (push) Successful in 18s
Test Suite / playwright-smoke (push) Successful in 24s
Migration 005, Registry-Sync, Placeholder-Validation, capability-geschuetzte API, Tests und Abschlussbericht v0.1. Co-authored-by: Cursor <cursoragent@cursor.com>
33 lines
806 B
Python
33 lines
806 B
Python
"""Platform feature catalog entries."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from feature_registry import FeatureRegistration, register_feature
|
|
|
|
register_feature(
|
|
FeatureRegistration(
|
|
key="kairo.feature.registry",
|
|
module="platform",
|
|
name="Feature Registry",
|
|
description="Metadatenkatalog registrierter Kairo-Features",
|
|
)
|
|
)
|
|
|
|
register_feature(
|
|
FeatureRegistration(
|
|
key="kairo.config.registry",
|
|
module="config",
|
|
name="Configuration Registry",
|
|
description="Zentrale fachliche Konfiguration (global/tenant)",
|
|
)
|
|
)
|
|
|
|
register_feature(
|
|
FeatureRegistration(
|
|
key="kairo.prompt.registry",
|
|
module="prompt",
|
|
name="Prompt Registry",
|
|
description="Workflow-ready Prompt-Definitionen und Versionen",
|
|
)
|
|
)
|