mtor 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
mtor-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: mtor
3
+ Version: 0.0.1
4
+ Summary: Architect-implementer dispatch for AI coding agents. Smart model plans, cheap model builds. Temporal-backed task queue with coaching injection, stall detection, and worker reflection.
5
+ Project-URL: Homepage, https://github.com/terryli-vt/mtor
6
+ Author: Terry Li
7
+ License-Expression: MIT
8
+ Keywords: agents,ai,coding,dispatch,llm,orchestration,temporal
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Programming Language :: Python :: 3 :: Only
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Topic :: Software Development :: Libraries
15
+ Requires-Python: >=3.11
mtor-0.0.1/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # mtor
2
+
3
+ > Named after [mTOR](https://en.wikipedia.org/wiki/MTOR), the master kinase that regulates when cells start translating mRNA into protein. mtor regulates when AI agents start translating specs into code.
4
+
5
+ Architect-implementer dispatch for AI coding agents.
6
+
7
+ **Smart model plans. Cheap model builds.**
8
+
9
+ - **Architect-implementer split**: Expensive model (Claude, GPT-4o) handles judgment and code review. Cheap model (GLM, DeepSeek, Qwen) handles bulk implementation.
10
+ - **Temporal-backed task queue**: Durable dispatch with retry, timeout, and worker pools. Ship code while you sleep.
11
+ - **Coaching injection**: Structured feedback from reviewers is prepended to every dispatch. The cheap model learns from past mistakes without fine-tuning.
12
+ - **Stall detection**: Signal-based detection (monologue, built-nothing, self-reported) replaces hard timeouts.
13
+ - **Worker reflection**: Workers self-report what surprised them after each task. Patterns compound into coaching.
14
+
15
+ ## Status
16
+
17
+ Planning. Not yet usable. See the [design doc](https://terryli.hm) for architecture details.
@@ -0,0 +1,7 @@
1
+ """mtor — architect-implementer dispatch for AI coding agents.
2
+
3
+ Smart model plans, cheap model builds. Temporal-backed task queue
4
+ with coaching injection, stall detection, and worker reflection.
5
+ """
6
+
7
+ __version__ = "0.0.1"
@@ -0,0 +1,26 @@
1
+ [build-system]
2
+ build-backend = "hatchling.build"
3
+ requires = ["hatchling"]
4
+
5
+ [project]
6
+ name = "mtor"
7
+ version = "0.0.1"
8
+ description = "Architect-implementer dispatch for AI coding agents. Smart model plans, cheap model builds. Temporal-backed task queue with coaching injection, stall detection, and worker reflection."
9
+ requires-python = ">=3.11"
10
+ license = "MIT"
11
+ authors = [{ name = "Terry Li" }]
12
+ keywords = ["ai", "agents", "coding", "dispatch", "temporal", "llm", "orchestration"]
13
+ classifiers = [
14
+ "Development Status :: 1 - Planning",
15
+ "Programming Language :: Python :: 3 :: Only",
16
+ "Programming Language :: Python :: 3.11",
17
+ "Programming Language :: Python :: 3.12",
18
+ "Programming Language :: Python :: 3.13",
19
+ "Topic :: Software Development :: Libraries",
20
+ ]
21
+
22
+ [project.urls]
23
+ Homepage = "https://github.com/terryli-vt/mtor"
24
+
25
+ [tool.hatch.build.targets.wheel]
26
+ packages = ["mtor"]