Metadata-Version: 2.4
Name: lolaplex
Version: 0.0.2
Summary: Lolaplex autonomous coding agent suite meta-package and CLI
Author: Lolaplex
License-Expression: MIT
Project-URL: Homepage, https://lolaplex.org
Project-URL: Repository, https://github.com/Lolaplex
Project-URL: Documentation, https://lolaplex.org
Keywords: agents,coding-assistant,mcp,memory,cdp,browser,harness,traces,terminal,ai
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: agents-memory>=1.0.0
Requires-Dist: agents-docs>=0.42.0
Requires-Dist: agents-browser>=0.43.0
Provides-Extra: traces
Requires-Dist: agents-traces>=0.0.1; extra == "traces"
Provides-Extra: harness
Requires-Dist: agents-harness>=0.0.1; extra == "harness"
Provides-Extra: keys
Requires-Dist: agents-keys>=0.0.1; extra == "keys"
Provides-Extra: terminal
Requires-Dist: agents-terminal>=0.0.2; extra == "terminal"
Provides-Extra: all
Requires-Dist: agents-memory>=1.0.0; extra == "all"
Requires-Dist: agents-docs>=0.42.0; extra == "all"
Requires-Dist: agents-browser>=0.43.0; extra == "all"
Requires-Dist: agents-traces>=0.0.1; extra == "all"
Requires-Dist: agents-harness>=0.0.1; extra == "all"
Requires-Dist: agents-keys>=0.0.1; extra == "all"
Requires-Dist: agents-terminal>=0.0.2; extra == "all"
Dynamic: license-file

# lolaplex

<p align="left">
  <a href="https://github.com/Lolaplex"><img src="https://img.shields.io/badge/version-0.0.2-blue.svg?style=flat-square" alt="Version 0.0.2"></a>
  <a href="https://modelcontextprotocol.io"><img src="https://img.shields.io/badge/MCP-Standard-orange.svg?style=flat-square" alt="MCP"></a>
  <a href="https://python.org"><img src="https://img.shields.io/badge/Python-3.10+-3776AB.svg?style=flat-square&logo=python&logoColor=white" alt="Python 3.10+"></a>
  <a href="https://pypi.org/project/lolaplex/"><img src="https://img.shields.io/pypi/v/lolaplex.svg?style=flat-square" alt="PyPI"></a>
  <a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-green.svg?style=flat-square" alt="License"></a>
</p>

**Lolaplex autonomous coding agent suite: ultra-fast, zero-bloat modular agent tools, MCP runtimes, and diagnostic CLI.**

Shared across **Cursor**, **Claude Code**, **Antigravity**, and **Zed**.

---

## Quickstart

### 1-Step Setup

```bash
# Core suite (memory + docs + browser)
pip install lolaplex

# Full autonomous suite with all runtimes & drivers
pip install "lolaplex[all]"
```

### 2. Agent-Driven Setup (Zero Friction)

> [!TIP]
> **🤖 Agent-Driven Setup (Zero Friction):**  
> Simply tell your coding agent: **"Install the Lolaplex suite and run environment diagnostics."**  
> The agent installs `lolaplex[all]` and checks your local agent stores using `lolaplex doctor`.

*Source checkouts can also be installed and managed using [vand](https://github.com/Lolaplex/vand).*

---

## The Lolaplex Ecosystem

| Package | Role | Tier | Status |
| :--- | :--- | :--- | :--- |
| [agents-memory](https://github.com/Lolaplex/agents-memory) | Local markdown memory & cross-agent context engine | Core | Stable (v1.0+) |
| [agents-docs](https://github.com/Lolaplex/agents-docs) | Ultra-fast local BM25 documentation RAG | Core | Stable (v0.42+) |
| [agents-browser](https://github.com/Lolaplex/agents-browser) | Minimal zero-Node Python CDP browser control | Core | Stable (v0.43+) |
| [agents-terminal](https://github.com/Lolaplex/agents-terminal) | Policy-bound terminal jail & sandbox execution | Runtime | Beta (v0.0.2+) |
| [agents-traces](https://github.com/Lolaplex/agents-traces) | Sub-millisecond JSONL observability & self-healing | Observability | Beta (v0.0.1+) |
| [agents-keys](https://github.com/Lolaplex/agents-keys) | Host Ed25519 agent key minting and challenge proofs | Security | Beta (v0.0.1+) |
| [agents-harness](https://github.com/Lolaplex/agents-harness) | Declarative flow runner, loop & job kernel | Runtime | Beta (v0.0.1+) |

---

## CLI & Diagnostics

```bash
# Print suite component table & versions
lolaplex

# Run local environment diagnostics on ~/.agents stores
lolaplex doctor

# Machine-readable JSON output
lolaplex --json
lolaplex --help-json
```

---

## Python API

```python
import lolaplex

# Inspect installed components programmatically
info = lolaplex.get_suite_info()
print(f"Lolaplex Suite {info['suite_version']} ({info['installed_count']}/{info['total_count']} active)")
```

---

## License

MIT License. See [LICENSE](LICENSE) for details.
