This release has been yanked by its maintainers, and will be ignored by installers, except when explicitly specified.
Reason given by maintainers: Merged into antcrew>=0.35.0 — pip install antcrew
antcrew-engine
Merged into antcrew. As of
antcrew>=0.35.0,antcrew_engineis bundled directly inside theantcrewwheel. You no longer need to install this package separately.pip install antcrew # antcrew_engine is included
pip install antcrew-enginestill works and installs antcrew as a dependency, but this package will no longer receive standalone updates. All future development happens in the antcrew repo.
Migration
Before (antcrew < 0.35):
pip install antcrew antcrew-engine
After (antcrew >= 0.35):
pip install antcrew # antcrew_engine bundled
All imports remain the same — from antcrew_engine import EngineLoop still works.
What was antcrew-engine
Capability-driven autonomous project execution engine — the core loop powering antcrew.
The engine iterates an EngineLoop over a natural-language goal, dispatching modular Capability executors until every condition in the desired project state is satisfied.
Quick example
from antcrew_engine.engine import EngineLoop, MemoryStore, Goal, DesiredProjectState
from antcrew_engine.engine import Condition, ConditionId, Constraints
from antcrew_engine.capabilities import Architect, TaskPlanner, CodeGenerator
from antcrew_engine.config import build_llm
llm = build_llm("claude")
store = MemoryStore()
goal = Goal("build a REST API", DesiredProjectState(conditions=[...]), Constraints())
loop = EngineLoop(registry, validators, log)
state = loop.run(store, goal)
All of the above is also available via antcrew.engine.*.
Links
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file antcrew_engine-0.4.0.tar.gz.
File metadata
- Download URL: antcrew_engine-0.4.0.tar.gz
- Upload date:
- Size: 119.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33dfe9db2bf29bcf5e02a030d9f0dc62ab422f70e1fa45ed136ec953da718b77
|
|
| MD5 |
09ff1d200283ac9dc26bbdc14fac0822
|
|
| BLAKE2b-256 |
a3a1162199d77db54f3fbcc98370dafaea994c92a826f9a17047904bd2820207
|
File details
Details for the file antcrew_engine-0.4.0-py3-none-any.whl.
File metadata
- Download URL: antcrew_engine-0.4.0-py3-none-any.whl
- Upload date:
- Size: 170.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4d468e15b0daef90c736818b6137100d0f62ff96311e6886ea88fd3ff796d36
|
|
| MD5 |
84efc818fe070679e780694680e321c7
|
|
| BLAKE2b-256 |
3026576daaa780793e40dfc4cb6d1cd4cf0d9a3be6e0c5addfb9b249bdb960c7
|