Metadata-Version: 2.4
Name: loopsmith-cli
Version: 0.1.2
Summary: Self-evolving agent loops behind a deterministic verification gate. Installs the prebuilt Rust binary as `loopsmith`.
Author-email: bitphill <bitphill@tuta.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/bitphill/loopsmith
Project-URL: Repository, https://github.com/bitphill/loopsmith
Project-URL: Changelog, https://github.com/bitphill/loopsmith/blob/main/CHANGELOG.md
Project-URL: Issues, https://github.com/bitphill/loopsmith/issues
Keywords: agent,loop,llm,orchestration,cli,rust
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Rust
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# loopsmith-cli

Self-evolving agent loops. The gate is code, so "done" cannot be argued.

```bash
pip install loopsmith-cli
loopsmith doctor
loopsmith new --path ~/loops/my-loop --purpose "keep the module simple"
```

This package downloads the prebuilt Rust binary for your platform on first run,
from the matching
[GitHub release](https://github.com/bitphill/loopsmith/releases), and verifies it
against the release's published `SHA256SUMS` before executing it. The installed
command is `loopsmith`.

Prebuilt for Linux (x86_64 glibc and musl, aarch64), macOS (x86_64 and Apple
silicon), and Windows (x86_64). Anywhere else, build from source:

```bash
cargo install loopsmith
```

The distribution is named `loopsmith-cli` because `loopsmith` on PyPI was already
registered by an unrelated project. The command is `loopsmith` regardless.

The download happens on first run rather than during `pip install`, so an image
that is built without a network and run with one still works.

Full documentation: <https://github.com/bitphill/loopsmith>

MIT licensed.
