Metadata-Version: 2.4
Name: peripheral-vision
Version: 0.1.0
Summary: Self-improving loop detector — the compounding engine. Use → tiles → I2I → instincts → better.
Author-email: Oracle1 <oracle1@cocapn.ai>
License-Expression: MIT
Project-URL: Homepage, https://github.com/SuperInstance/peripheral-vision
Keywords: peripheral-vision,self-improvement,loop,compound,cocapn
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# peripheral-vision

Self-improving loop detector. The compounding engine.

Silicon should always be getting better. Track improvement loops through their stages, detect acceleration and stalls, surface signals that need attention. The loop: use → tiles → I2I → instincts → better → more use.

## Usage

```python
from peripheral_vision import PeripheralVision

pv = PeripheralVision()
loop = pv.create_loop("main", stages=["use", "tiles", "i2i", "instincts"])

for _ in range(10):
    loop.tick()
    loop.record_metric("quality", current_quality)

status = pv.diagnose("main")  # ACCELERATING, STABLE, STALLED, etc.
```

Zero deps. `pip install peripheral-vision`
