feat: Add integrations folder for framework integrations

- Created integrations/ folder at repository root for optional framework integrations
- Moved integrations folder from semantica/integrations/ to root-level integrations/
- Added __init__.py with documentation for future integrations (Google ADK, Claude Agent SDK, Agno)
- Keeps core semantica package lean while enabling ecosystem integrations
- Each integration will be self-contained and installable via extras_require
This commit is contained in:
KaifAhmad1
2026-02-02 17:31:45 +05:30
parent 78e552853d
commit d884b42472
2 changed files with 7 additions and 19 deletions
+7
View File
@@ -0,0 +1,7 @@
"""
Semantica Framework Integrations
Optional integration packages for agentic frameworks (Google ADK, Claude Agent SDK, Agno, etc.).
Each integration is self-contained, independently installable via extras_require, and maintains
zero impact on core Semantica - keeping the semantic layer lean while maximizing ecosystem reach.
"""
-19
View File
@@ -1,19 +0,0 @@
"""
Semantica Integrations Module
Placeholder for future integration adapters with agentic frameworks and SDKs.
Exposes Semantica's semantic intelligence (knowledge graphs, ontologies, provenance
tracking, semantic extraction) as native components within their respective frameworks.
Planned Integrations:
- Agno Framework (Issue #249): Semantic memory and knowledge graph integration
- Google ADK (Issue #251): Semantic tools and memory interfaces
- Claude Agent SDK (Issue #250): Custom tools and hooks for explainable AI
All integrations will be opt-in via pip extras with zero breaking changes.
Status: Placeholder for future implementation
"""
__version__ = "0.1.0"
__all__ = []