Skip to content

Installation

From PyPI

python -m pip install agentlogsafe

The runtime supports Python 3.10 and newer and has no third-party dependencies.

PyPI is the supported installation source. For development against the latest commit, install from GitHub:

python -m pip install git+https://github.com/ryan-wolbeck/agentlogsafe.git

Development environment

The repository includes a Conda definition with tests, linting, typing, and documentation tools:

conda env create -f environment.yml
conda activate agentlogsafe-dev
make check

Alternatively, use any Python environment:

python -m pip install -e ".[dev,docs]"
make check

Verify the installation

python -c "import agentlogsafe; print(agentlogsafe.__version__)"

Compatibility policy

Minor releases may add event helpers or optional configuration. Existing standard event names and serialized fields are intended to remain backward compatible within the 0.x series, but consumers should tolerate additional JSON fields. Serialized events carry schema_version; the current Draft 2020-12 JSON Schema is packaged and published with the documentation.