omega-memory

0.11.0 Not latest — view latest

Persistent memory for AI coding agents — #1 on LongMemEval benchmark

License
Unknown license
Published
March 3, 2026
7h ago
Package Registry
License Sources
SourceLicenseClass
Licensie (detected)
Pending-
PyPI (reported)
Not reported-

License detection is still in progress for this version.

Loading dependencies…
License File
"""OMEGA License — Community Edition.

The community edition is free and open-source. Pro features
(coordination, entity engine, cloud sync, oracle) are available
at https://omegamax.co.
"""

from __future__ import annotations

from typing import Any


def is_pro() -> bool:
    """Check if Pro features are available. Always False in community edition."""
    return False


def activate(key: str) -> bool:
    """Activate a Pro license key.

    In the community edition, this is a no-op.
    Visit https://omegamax.co for Pro activation.
    """
    print("Pro activation is available at https://omegamax.co")
    return False


def deactivate() -> None:
    """Remove the local license. No-op in community edition."""
    pass


def license_status() -> dict[str, Any]:
    """Return current license status."""
    return {"plan": "community", "pro": False, "active": False}
Versions
11 versions
VersionLicensePublishedStatus
0.11.1 Latest -Mar 3, 2026 Pending
0.11.0 Viewing-Mar 3, 2026 Pending
0.10.12 -Mar 2, 2026 Pending
0.10.11 -Mar 2, 2026 Pending
0.10.10 -Mar 2, 2026 Pending
0.10.9 Apache-2.0Feb 27, 2026 Scanned
0.10.8 Apache-2.0Feb 24, 2026 Scanned
0.10.7 Apache-2.0Feb 24, 2026 Scanned
0.10.6 Apache-2.0Feb 20, 2026 Scanned
0.10.5 Apache-2.0Feb 20, 2026 Scanned
0.10.4 Apache-2.0Feb 20, 2026 Scanned