Kestrel Sovereign SDK — lightweight interfaces and protocols for feature packages
Project description
kestrel-sovereign-sdk
Lightweight SDK providing base interfaces, protocols, and utilities for Kestrel Sovereign feature package development. Feature packages depend on this SDK instead of the full framework, keeping dependencies minimal and development fast.
Installation
uv pip install git+https://github.com/KestrelSovereignAI/kestrel-sovereign-sdk.git
With encryption helpers:
uv pip install "kestrel-sovereign-sdk[crypto] @ git+https://github.com/KestrelSovereignAI/kestrel-sovereign-sdk.git"
Dependencies
pydantic>=2.0- Optional:
cryptography>=42.0(via[crypto]extra)
Usage
from kestrel_sdk.features.base import Feature, Tool
class MyFeature(Feature):
name = "my-feature"
def get_tools(self):
return [Tool(name="my-tool", description="Does something", handler=self.handle)]
Database surface (entity feature packages)
Feature packages that need raw SQL or ORM access (e.g. kestrel-feature-entities)
develop against kestrel_sdk.storage.database:
from kestrel_sdk.storage.database import (
DatabaseBackend, # async ABC: execute / fetch_* / transaction
PrivacyMode, # 6-mode enum
EngineTarget, # frozen dataclass: url, persistent, description
resolve_engine_target, # PrivacyMode + fallback_url -> EngineTarget
)
target = resolve_engine_target(PrivacyMode.NORMAL, "postgresql+asyncpg://...")
# target.url is the SQLAlchemy URL the feature should bind its ORM engine to.
# Volatile modes (EPHEMERAL/ISOLATED) ignore fallback_url and return
# in-memory or tempfile sqlite URLs with persistent=False.
To get the active DatabaseBackend instance at runtime, features access it
through the agent context they already receive in their Feature.__init__:
class MyEntityFeature(Feature):
def __init__(self, agent):
super().__init__(agent)
self.db: DatabaseBackend = agent.db # provided by sovereign
The SDK declares the DatabaseBackend ABC; sovereign provides the concrete
SQLiteBackend / PostgresBackend instance via agent.db. Feature packages
should never instantiate their own backend — that creates a parallel
connection pool and bypasses the agent's privacy enforcement.
Channels, Delivery, And Output Contracts
Channel and delivery packages use SDK contracts rather than importing from the full framework:
from kestrel_sdk.channels import ChannelAdapter, ChannelMessage
from kestrel_sdk.delivery import DeliveryProvider, DeliveryTask, DeliveryResult
from kestrel_sdk.outputs import OutputEvent, OutputKind
Feature packages register concrete channel adapters through:
[project.entry-points."kestrel_sovereign.channel_adapters"]
telegram = "kestrel_channel_telegram:TelegramAdapter"
Delivery providers register through:
[project.entry-points."kestrel_sovereign.delivery_providers"]
sendgrid = "kestrel_delivery_sendgrid:SendGridDeliveryProvider"
The SDK owns only the public contracts. The framework owns runtime privacy checks, signal dispatch, durable queues, and server composition.
Timeline Protocols
Timeline implementations (e.g., story archive, health timelines) use SDK protocols for cross-package interoperability. The SDK provides three core protocols: TimelineProtocol defines the minimal shape any timeline must conform to, TimelineSharingProtocol enables pluggable serialization formats (JSON, FHIR, IPFS), and VectorSearchBackend abstracts semantic search across different vector stores (pgvector, pure-Python cosine).
Implementing TimelineProtocol
Any class with the required attributes can serve as a timeline:
from datetime import datetime
class StoryTimeline:
def __init__(self):
self.id = "timeline-123"
self.agent_did = "did:key:abc"
self.subject_name = "Jane Doe"
self.title = "Jane's Life Story"
self.coherence_score = 0.95
self.created_at = datetime.now()
Sharing and Serialization
Use JSONTimelineSerializer for default JSON output, or implement TimelineSharingProtocol for custom formats:
from kestrel_sdk.timeline import JSONTimelineSerializer, TimelineSharingProtocol
import json
# Default JSON sharing
serializer = JSONTimelineSerializer()
data = serializer.serialize(timeline, events, people)
# Custom FHIR serializer
class FHIRTimelineSerializer:
content_type = "application/fhir+json"
def serialize(self, timeline, events, people) -> bytes:
# Convert to FHIR Bundle format
bundle = {"resourceType": "Bundle", "entry": [...]}
return json.dumps(bundle).encode("utf-8")
Vector Search
Implement VectorSearchBackend for semantic timeline search. The SDK ships two reference implementations in kestrel-feature-story-archive: PgVectorBackend (PostgreSQL with pgvector extension) and PurePythonBackend (SQLite with cosine similarity).
from kestrel_sdk.timeline import VectorSearchBackend
class MyVectorBackend:
async def knn(self, query_embedding: bytes, k: int, filter: dict | None = None):
# Return k-nearest neighbors by cosine similarity
return [("event-5", 0.95), ("event-12", 0.89)]
@property
def supports_filters(self) -> bool:
return True # Can filter by timeline_id at query time
For a full timeline implementation with persistence, embeddings, and IPFS export, see kestrel-feature-story-archive.
Configuration
No environment variables required. This is a development-time dependency only.
Development
uv pip install kestrel-sovereign-sdk && uv pip install -e .
uv run pytest
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kestrel_sovereign_sdk-0.24.0.tar.gz.
File metadata
- Download URL: kestrel_sovereign_sdk-0.24.0.tar.gz
- Upload date:
- Size: 105.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0170bfe1cc92d79112d4bd2e2ac0d3a2a2af8368452d3efd4242ff89be000f5
|
|
| MD5 |
738a9b4ab29729bbedb4beaaaf76a2a6
|
|
| BLAKE2b-256 |
d3553fa30e62f032b82e5897b2f3a08af615bb6cabf37ee7da569aaf287af314
|
Provenance
The following attestation bundles were made for kestrel_sovereign_sdk-0.24.0.tar.gz:
Publisher:
publish.yml on KestrelSovereignAI/kestrel-sovereign-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
kestrel_sovereign_sdk-0.24.0.tar.gz -
Subject digest:
d0170bfe1cc92d79112d4bd2e2ac0d3a2a2af8368452d3efd4242ff89be000f5 - Sigstore transparency entry: 1900803019
- Sigstore integration time:
-
Permalink:
KestrelSovereignAI/kestrel-sovereign-sdk@461025714ea8840984693cb7374120986f476597 -
Branch / Tag:
refs/tags/v0.24.0 - Owner: https://github.com/KestrelSovereignAI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@461025714ea8840984693cb7374120986f476597 -
Trigger Event:
push
-
Statement type:
File details
Details for the file kestrel_sovereign_sdk-0.24.0-py3-none-any.whl.
File metadata
- Download URL: kestrel_sovereign_sdk-0.24.0-py3-none-any.whl
- Upload date:
- Size: 134.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a46afb5a739132c938064bf450881625a236ece473659a934212238cc3c6c0a6
|
|
| MD5 |
2f860f8531e69b5d8951c5c38479cade
|
|
| BLAKE2b-256 |
95d0b4bdbeaa1d32bd624bfbd5922b7832dd80a24f8c9e0ee82f9ff99daeb50a
|
Provenance
The following attestation bundles were made for kestrel_sovereign_sdk-0.24.0-py3-none-any.whl:
Publisher:
publish.yml on KestrelSovereignAI/kestrel-sovereign-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
kestrel_sovereign_sdk-0.24.0-py3-none-any.whl -
Subject digest:
a46afb5a739132c938064bf450881625a236ece473659a934212238cc3c6c0a6 - Sigstore transparency entry: 1900803135
- Sigstore integration time:
-
Permalink:
KestrelSovereignAI/kestrel-sovereign-sdk@461025714ea8840984693cb7374120986f476597 -
Branch / Tag:
refs/tags/v0.24.0 - Owner: https://github.com/KestrelSovereignAI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@461025714ea8840984693cb7374120986f476597 -
Trigger Event:
push
-
Statement type: