ai-engineering-supervisor 0.5.2__py3-none-any.whl
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.
- ai_engineering_supervisor-0.5.2.dist-info/METADATA +11 -0
- ai_engineering_supervisor-0.5.2.dist-info/RECORD +52 -0
- ai_engineering_supervisor-0.5.2.dist-info/WHEEL +5 -0
- ai_engineering_supervisor-0.5.2.dist-info/entry_points.txt +2 -0
- ai_engineering_supervisor-0.5.2.dist-info/licenses/LICENSE +674 -0
- ai_engineering_supervisor-0.5.2.dist-info/top_level.txt +1 -0
- ai_orchestrator/__init__.py +3 -0
- ai_orchestrator/__main__.py +6 -0
- ai_orchestrator/agents/__init__.py +0 -0
- ai_orchestrator/agents/base.py +66 -0
- ai_orchestrator/agents/claude.py +190 -0
- ai_orchestrator/agents/codex.py +268 -0
- ai_orchestrator/agents/factory.py +146 -0
- ai_orchestrator/agents/gemini.py +17 -0
- ai_orchestrator/agents/generic.py +137 -0
- ai_orchestrator/agents/kimi.py +17 -0
- ai_orchestrator/agents/mock.py +50 -0
- ai_orchestrator/autopilot/__init__.py +31 -0
- ai_orchestrator/autopilot/queue.py +325 -0
- ai_orchestrator/autopilot/worktree_overview.py +349 -0
- ai_orchestrator/cli/__init__.py +0 -0
- ai_orchestrator/cli/app.py +6906 -0
- ai_orchestrator/config/__init__.py +0 -0
- ai_orchestrator/config/loader.py +583 -0
- ai_orchestrator/core/__init__.py +0 -0
- ai_orchestrator/core/decision.py +113 -0
- ai_orchestrator/core/fsm.py +17 -0
- ai_orchestrator/core/supervisor.py +1228 -0
- ai_orchestrator/evaluation/__init__.py +23 -0
- ai_orchestrator/evaluation/golden.py +334 -0
- ai_orchestrator/memory/__init__.py +3 -0
- ai_orchestrator/memory/codebase.py +128 -0
- ai_orchestrator/policy/__init__.py +0 -0
- ai_orchestrator/policy/engine.py +224 -0
- ai_orchestrator/process/__init__.py +0 -0
- ai_orchestrator/process/runner.py +256 -0
- ai_orchestrator/reporting/__init__.py +0 -0
- ai_orchestrator/reporting/markdown.py +564 -0
- ai_orchestrator/storage/__init__.py +0 -0
- ai_orchestrator/storage/db.py +4224 -0
- ai_orchestrator/storage/migrations.py +697 -0
- ai_orchestrator/storage/redaction.py +31 -0
- ai_orchestrator/tools/__init__.py +79 -0
- ai_orchestrator/tools/broker.py +675 -0
- ai_orchestrator/tools/calls.py +174 -0
- ai_orchestrator/tools/executors.py +309 -0
- ai_orchestrator/tools/types.py +410 -0
- ai_orchestrator/tui/__init__.py +0 -0
- ai_orchestrator/tui/app.py +230 -0
- ai_orchestrator/verification/__init__.py +0 -0
- ai_orchestrator/verification/release.py +201 -0
- ai_orchestrator/verification/runner.py +132 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ai-engineering-supervisor
|
|
3
|
+
Version: 0.5.2
|
|
4
|
+
Summary: Local supervisor orchestrator for CLI AI agents
|
|
5
|
+
Requires-Python: >=3.12
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Provides-Extra: dev
|
|
8
|
+
Requires-Dist: mypy>=1.10.0; extra == "dev"
|
|
9
|
+
Requires-Dist: pytest>=8.0.0; extra == "dev"
|
|
10
|
+
Requires-Dist: ruff>=0.8.0; extra == "dev"
|
|
11
|
+
Dynamic: license-file
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
ai_engineering_supervisor-0.5.2.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
2
|
+
ai_orchestrator/__init__.py,sha256=jdF3J6SdApglySgJ4wmH_1AwMMi639xsy37KIjE6e-k,58
|
|
3
|
+
ai_orchestrator/__main__.py,sha256=-HDsYbqfqiVS7DFxEg9VKHTD7eMIVUOA5dDFs0OwNzE,102
|
|
4
|
+
ai_orchestrator/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
ai_orchestrator/agents/base.py,sha256=8VmkO0WoeohuiG5JpAcgDoBT6uCdV4u3bZfer1nVP-A,1551
|
|
6
|
+
ai_orchestrator/agents/claude.py,sha256=LspLT50AA38qVhw7kX2qCC6C3PXcoVVfdtevq_dcgT4,6542
|
|
7
|
+
ai_orchestrator/agents/codex.py,sha256=9NYTipt2ViLbf1UhOV-ZnhGZ8SNcJ-k121avNv0iglU,9392
|
|
8
|
+
ai_orchestrator/agents/factory.py,sha256=WzsuneTRJj9lqkmWt228suyhsLyV_BhasKlla9rQZAI,4898
|
|
9
|
+
ai_orchestrator/agents/gemini.py,sha256=RWXp4b0iUli7u1v8xr3Dlnf6oBFibYMSYxyPsG2BzYE,594
|
|
10
|
+
ai_orchestrator/agents/generic.py,sha256=lPndZHBhl0ztXlpJLhBSYCd-Pddlvzckax6tpON6mT8,4662
|
|
11
|
+
ai_orchestrator/agents/kimi.py,sha256=wKX3vGfBPbk7i859N5m5qdQMhEoMEqOMQ2CvIlLVric,582
|
|
12
|
+
ai_orchestrator/agents/mock.py,sha256=iiY2NrjzPmvwFPOXC5rp6CIIlWiKTaInM7A2B-6sPyc,1799
|
|
13
|
+
ai_orchestrator/autopilot/__init__.py,sha256=B9gydGwOflHXtZIomZrWEz_fLMTVbDnojMWgIQGRTw8,698
|
|
14
|
+
ai_orchestrator/autopilot/queue.py,sha256=AxOIEvMAAQYWmpsKhofb6pLhCsvSeyUVMZMS6xGvB_A,10874
|
|
15
|
+
ai_orchestrator/autopilot/worktree_overview.py,sha256=csWeF4jtb0HsF4ceqmqjhs7ZgDsmpXbyrRQ9rh2AMRY,12007
|
|
16
|
+
ai_orchestrator/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
+
ai_orchestrator/cli/app.py,sha256=9loljYoiBaC5Yu1rLadXVwh3LyC84-K2JDc8lJAyxvU,245107
|
|
18
|
+
ai_orchestrator/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
ai_orchestrator/config/loader.py,sha256=hUPWRo4hNxoE2La9az6ib-ICMW7XWMgH46wNtfW9dzc,20076
|
|
20
|
+
ai_orchestrator/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
+
ai_orchestrator/core/decision.py,sha256=KdMqNuytlxQjSfoNKXet43bSsS9WqRbGvxg4yFU1K24,4218
|
|
22
|
+
ai_orchestrator/core/fsm.py,sha256=cHFqxParRr9yvaLS73HASKczQvKMto3b92QockJjt2A,411
|
|
23
|
+
ai_orchestrator/core/supervisor.py,sha256=idIXhy1jeIc_0ewfM21W7PTh6r9L8VA_I-Ge9K0iDew,50966
|
|
24
|
+
ai_orchestrator/evaluation/__init__.py,sha256=LXx0dJdlensp-PZYrf7N5LKTR923-R7TYThGR4xpgR0,497
|
|
25
|
+
ai_orchestrator/evaluation/golden.py,sha256=XU7YCvjDAMTWU7RnQPzwwGLFlqwobILHB7L2PxnZ7SQ,10566
|
|
26
|
+
ai_orchestrator/memory/__init__.py,sha256=r7pyberuwZXGTBs_ShhiU-WArvfnKmsjmS1W6jVknak,147
|
|
27
|
+
ai_orchestrator/memory/codebase.py,sha256=KaVlJTZdeop32FDcjxjRE-4iLLtLZfAvDEVwQ_2bZeU,4056
|
|
28
|
+
ai_orchestrator/policy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
+
ai_orchestrator/policy/engine.py,sha256=7lkHa0FFaqep40-Qyr9eMoQeZ5sTX6IcXm9VTiQ_V8g,8390
|
|
30
|
+
ai_orchestrator/process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
+
ai_orchestrator/process/runner.py,sha256=ugPxwbtLi_SsXs-XCVhpaGlnzxFoDY3HENTGVKx1Y9o,8857
|
|
32
|
+
ai_orchestrator/reporting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
+
ai_orchestrator/reporting/markdown.py,sha256=t0E0l9WOywOyOsrtIV3KkMU4yItTorDRaTU3xgVk5gA,21876
|
|
34
|
+
ai_orchestrator/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
+
ai_orchestrator/storage/db.py,sha256=kLhbw9ZXGI18HFcFD14I-9nQMLX3XnYtVFrtFBsFseA,146302
|
|
36
|
+
ai_orchestrator/storage/migrations.py,sha256=P8Oo2h84aXldWsURYFxTOv18TrVexqfBNtcIFpZyKbU,23157
|
|
37
|
+
ai_orchestrator/storage/redaction.py,sha256=XgyJBe6BJyRyRaL9j1136_ky2m7CrRwRZKL_dfGCimA,792
|
|
38
|
+
ai_orchestrator/tools/__init__.py,sha256=YyQ_b5TL0VYL6m67uXs36wGcgsJFE0e4WJ1VHbpEqzs,1883
|
|
39
|
+
ai_orchestrator/tools/broker.py,sha256=QPpN-44wtzVI2Iysusd9cCUKWVScBZdJSDJm8fj28O8,24088
|
|
40
|
+
ai_orchestrator/tools/calls.py,sha256=_IAUZa9B_ouK4MUXQSuuuafA-77dQIARmbReXY4C_h0,4378
|
|
41
|
+
ai_orchestrator/tools/executors.py,sha256=UEh2rJgzWKUxJzn82J2TpJdxMGNZ5EosCowxOlMdYM4,9489
|
|
42
|
+
ai_orchestrator/tools/types.py,sha256=tJFOijKMgZOU8dePrB2BLWjx7QhEzXQKASAN3mAVBss,12983
|
|
43
|
+
ai_orchestrator/tui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
|
+
ai_orchestrator/tui/app.py,sha256=DEjffvJ3n6P57U5_6cU6mB6rnCiTguTaG_vQ5R_HtdE,8502
|
|
45
|
+
ai_orchestrator/verification/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
|
+
ai_orchestrator/verification/release.py,sha256=WwYRFD-TxVelWEg7ocA5Kp36s15_PoS5KynEaL-vUzE,6673
|
|
47
|
+
ai_orchestrator/verification/runner.py,sha256=Tn6BmXDwknPPCB7Z1gVTThfrI3n3330QPXFHddgs-Ao,4228
|
|
48
|
+
ai_engineering_supervisor-0.5.2.dist-info/METADATA,sha256=IZFnrkTxEro4JLaDUmeZP9v8hx2KaumX8-qGlD7yRVU,346
|
|
49
|
+
ai_engineering_supervisor-0.5.2.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
|
|
50
|
+
ai_engineering_supervisor-0.5.2.dist-info/entry_points.txt,sha256=AE13uKEPeTic6h-IqsDel3uHmTBxtgMKK0oMHf0XuW4,57
|
|
51
|
+
ai_engineering_supervisor-0.5.2.dist-info/top_level.txt,sha256=UjXrm3N4iSlwavgerHnyxRm8fQOj97qrYmuA5ivRNug,16
|
|
52
|
+
ai_engineering_supervisor-0.5.2.dist-info/RECORD,,
|