Metadata-Version: 2.4
Name: memory-share-kit
Version: 1.2.1
Summary: Deterministic memory and governance for developers and AI agents.
Author-email: Chief Architect <architect@memory-share.kit>
License: MIT
Keywords: agents,ai,deterministic,graph,memory,sqlite
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: <3.15,>=3.14
Requires-Dist: requests>=2.31.0
Description-Content-Type: text/markdown

# memory-share-kit

Deterministic memory and governance for AI agents.

## Install
```bash
pip install memory-share-kit
```
Requires Python 3.14.x only.

## Quick Start
```bash
kit init

kit learn --tag invariant --content "Auth MUST use JWT only."

kit-agent ask "Can I use session cookies?"
```
Expected: `DECISION: BLOCK`

## Core Commands
- `kit learn`     # store facts / invariants
- `kit recall`    # retrieve memory
- `kit doctor`    # system status
- `kit-agent ask` # run agent with memory

## Principles
- Deterministic memory (SQLite, append-only)
- Same input → same decision
- Invariants override everything
- No dynamic data in long-term memory

## Notes
- Use `kit-agent` for runtime / dynamic context
- `kit learn` is for stable facts only
- Designed for CLI, scripts, and CI

## License
MIT
