Metadata-Version: 2.4
Name: substr8
Version: 1.0.0
Summary: Substr8 Platform CLI - Verifiable AI Infrastructure
Author-email: Substr8 Labs <hello@substr8labs.com>
License-Expression: MIT
Keywords: acc,agents,ai,capability,fdaa,gam,memory,verifiable
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Requires-Dist: click>=8.0
Requires-Dist: gitpython>=3.1.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: rich>=13.0
Provides-Extra: crypto
Requires-Dist: cryptography>=41.0; extra == 'crypto'
Provides-Extra: dev
Requires-Dist: cryptography>=41.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: ruff>=0.1.0; extra == 'dev'
Provides-Extra: full
Requires-Dist: cryptography>=41.0; extra == 'full'
Requires-Dist: sentence-transformers>=2.0; extra == 'full'
Provides-Extra: retrieval
Requires-Dist: sentence-transformers>=2.0; extra == 'retrieval'
Description-Content-Type: text/markdown

# Substr8 CLI

Unified command-line interface for the Substr8 Platform.

## Installation

```bash
# Core CLI
pip install substr8

# With GAM (Git-Native Agent Memory)
pip install substr8[gam]

# Everything
pip install substr8[full]
```

## Usage

```bash
# Show platform status
substr8 info

# Git-Native Agent Memory
substr8 gam init
substr8 gam remember "Important fact" --tag knowledge
substr8 gam recall "important"
substr8 gam verify <memory-id>

# Identity management
substr8 gam identity create-agent ada --passphrase <secret>
substr8 gam identity list

# Permissions (W^X)
substr8 gam permissions list
substr8 gam permissions check SOUL.md
substr8 gam permissions hitl
```

## Components

| Command | Description | Status |
|---------|-------------|--------|
| `substr8 gam` | Git-Native Agent Memory | ✅ Available |
| `substr8 fdaa` | File-Driven Agent Architecture | 🔜 Planned |
| `substr8 acc` | Agent Capability Control | 🔜 Planned |

## Documentation

- [GAM Whitepaper](docs/whitepapers/GIT-NATIVE-AGENT-MEMORY.md)
- [FDAA Specification](https://fdaa.substr8labs.com)
- [Substr8 Platform](https://substr8labs.com)

## License

MIT - Substr8 Labs
