Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "alpha-engine-lib"
version = "0.52.1"
version = "0.52.2"
description = "Shared utilities for the Alpha Engine modules: preflight, logging, ArcticDB, dates, decision capture, cost telemetry, Anthropic payload chokepoint, artifact freshness, RAG, agent schemas, SSM secrets, Telegram + SNS alerts, EC2 spot resilience, SSM log-capture, SSM dispatcher, Step-Functions execution-state projection, S3-conditional-PUT writer locks, and bounded-backoff HTTP retry. Full surface documented in README."
readme = "README.md"
# EC2 still runs Python 3.9 on the always-on micro instance (boto3 drops
Expand Down
2 changes: 1 addition & 1 deletion src/alpha_engine_lib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""alpha-engine-lib — shared utilities for Alpha Engine modules."""

__version__ = "0.52.1"
__version__ = "0.52.2"
4 changes: 4 additions & 0 deletions src/alpha_engine_lib/pipeline_status/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,10 @@ class ArtifactReason(BaseModel):
page="Report_Card",
artifact_label="System Report Card",
),
"Director": ArchivePageRef(
page="Director_Plan",
artifact_label="Director weekly action plan",
),
"NotifyComplete": ArtifactReason(
reason="Terminal success SNS publish to alpha-engine-alerts; "
"no persisted artifact (the email IS the surface)."
Expand Down