Major additions: - marketplace/: Agent template registry with FTS5 search, ratings, versioning - observability/: Prometheus metrics, distributed tracing, structured logging - ledger/migrations/: Database migration scripts for multi-tenant support - tests/governance/: 15 new test files for phases 6-12 (295 total tests) - bin/validate-phases: Full 12-phase validation script New features: - Multi-tenant support with tenant isolation and quota enforcement - Agent marketplace with semantic versioning and search - Observability with metrics, tracing, and log correlation - Tier-1 agent bootstrap scripts Updated components: - ledger/api.py: Extended API for tenants, marketplace, observability - ledger/schema.sql: Added tenant, project, marketplace tables - testing/framework.ts: Enhanced test framework - checkpoint/checkpoint.py: Improved checkpoint management Archived: - External integrations (Slack/GitHub/PagerDuty) moved to .archive/ - Old checkpoint files cleaned up Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
"""
|
|
Integration Framework for Agent Governance System
|
|
|
|
Provides base infrastructure for external service integrations.
|
|
Specific integrations (GitHub, Slack, PagerDuty) have been deprecated
|
|
and archived to .archive/integrations/.
|
|
|
|
Available components:
|
|
- BaseIntegration: Abstract base class for integrations
|
|
- IntegrationManager: Registry and event broadcast
|
|
- SecretsManager: Vault/environment credential access
|
|
- RedisConfig: DragonflyDB connection utilities
|
|
"""
|
|
|
|
from .common.base import (
|
|
IntegrationConfig,
|
|
IntegrationEvent,
|
|
BaseIntegration,
|
|
IntegrationManager
|
|
)
|
|
from .common.secrets import SecretsManager, get_secrets, get_secret, require_secret
|
|
from .common.redis_config import RedisConfig, get_redis_client, test_redis_connection
|
|
|
|
__all__ = [
|
|
# Base classes
|
|
'IntegrationConfig',
|
|
'IntegrationEvent',
|
|
'BaseIntegration',
|
|
'IntegrationManager',
|
|
# Secrets
|
|
'SecretsManager',
|
|
'get_secrets',
|
|
'get_secret',
|
|
'require_secret',
|
|
# Redis
|
|
'RedisConfig',
|
|
'get_redis_client',
|
|
'test_redis_connection',
|
|
]
|
|
|
|
|
|
def create_manager() -> IntegrationManager:
|
|
"""Create an empty integration manager.
|
|
|
|
External integrations (GitHub, Slack, PagerDuty) have been deprecated.
|
|
See .archive/integrations/ to restore if needed.
|
|
"""
|
|
return IntegrationManager()
|