monoco-toolkit 0.1.7__py3-none-any.whl → 0.2.0__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.
- monoco/core/agent/__init__.py +5 -0
- monoco/core/agent/action.py +144 -0
- monoco/core/agent/adapters.py +106 -0
- monoco/core/agent/protocol.py +31 -0
- monoco/core/agent/state.py +117 -0
- monoco/core/config.py +42 -1
- monoco/core/execution.py +62 -0
- monoco/core/git.py +51 -2
- monoco/core/output.py +13 -2
- monoco/core/state.py +53 -0
- monoco/core/workspace.py +75 -12
- monoco/daemon/app.py +120 -57
- monoco/daemon/models.py +4 -0
- monoco/daemon/services.py +56 -155
- monoco/features/agent/commands.py +160 -0
- monoco/features/agent/doctor.py +30 -0
- monoco/features/issue/core.py +80 -47
- monoco/features/issue/executions/refine.md +26 -0
- monoco/features/issue/models.py +18 -6
- monoco/features/issue/monitor.py +94 -0
- monoco/main.py +13 -0
- {monoco_toolkit-0.1.7.dist-info → monoco_toolkit-0.2.0.dist-info}/METADATA +1 -1
- {monoco_toolkit-0.1.7.dist-info → monoco_toolkit-0.2.0.dist-info}/RECORD +26 -15
- {monoco_toolkit-0.1.7.dist-info → monoco_toolkit-0.2.0.dist-info}/WHEEL +0 -0
- {monoco_toolkit-0.1.7.dist-info → monoco_toolkit-0.2.0.dist-info}/entry_points.txt +0 -0
- {monoco_toolkit-0.1.7.dist-info → monoco_toolkit-0.2.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,29 +1,38 @@
|
|
|
1
|
-
monoco/main.py,sha256=
|
|
1
|
+
monoco/main.py,sha256=ZQXcATWam1Uveo_StkWZ2jJH7qkQ23ZBNy7cvEgtsoQ,3603
|
|
2
2
|
monoco/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
monoco/core/config.py,sha256=
|
|
3
|
+
monoco/core/config.py,sha256=5JUThWPMQZav-6Pws9LKfLwULuowDvu-yk-lBTm0FA0,8606
|
|
4
|
+
monoco/core/execution.py,sha256=rySL0ueJvTEQ1JhdpumsNBQHJpj08nfaHQMlX-1uh6k,1846
|
|
4
5
|
monoco/core/feature.py,sha256=oAtQWUHMuqIFbq2gj8sPfYBlJZvMMXZqyUlCMrIVGUE,2007
|
|
5
|
-
monoco/core/git.py,sha256=
|
|
6
|
+
monoco/core/git.py,sha256=i_NKT9_n57S9EKeb8kF2yTEdw70FZ88-lpMqW4lzVds,8228
|
|
6
7
|
monoco/core/injection.py,sha256=4BuQ5RVozyU99uSOzPwgc6MFMZUcECerTik5lF39I9A,7078
|
|
7
8
|
monoco/core/integrations.py,sha256=rDgSFBzBMmXX1BhlcMoFd8gBS_ziiNzkvayKi6mjocA,5659
|
|
8
|
-
monoco/core/output.py,sha256=
|
|
9
|
+
monoco/core/output.py,sha256=9JbCxqxHZlviNJXpUorGVxv_gAn4q72FPgjwBQrPiCI,3502
|
|
9
10
|
monoco/core/registry.py,sha256=xix21TDeJgRiZ2kvHitnac4RsqMdp1aERpYGSrwfIpY,1180
|
|
10
11
|
monoco/core/setup.py,sha256=MXeSKxz62Rh47E_BqLI0t_R7MkcsVeHvar5Tcz9ig4w,9335
|
|
11
12
|
monoco/core/skills.py,sha256=5qK-0YlOnNQLqyo6-T4GVBrkjsbrszb5ugXeXRRcQ00,16597
|
|
13
|
+
monoco/core/state.py,sha256=KlmOn0KXO8g9S_KUIrUylAKdBpyH_1AOBvrYSj_khdE,1884
|
|
12
14
|
monoco/core/sync.py,sha256=s0qQ5PsVn_IWGWUNThdvNFS-CncztDzsTM3QLupC6Og,8514
|
|
13
15
|
monoco/core/telemetry.py,sha256=DZQGOhvpe0XL34RCDaTZEUhmkD4abBTZumZJQlALzpY,2923
|
|
14
|
-
monoco/core/workspace.py,sha256=
|
|
16
|
+
monoco/core/workspace.py,sha256=PaCciUzUjIBkTXpF0CEx0hTQfForEPL2H0sYJP54b98,2839
|
|
17
|
+
monoco/core/agent/__init__.py,sha256=tBCm6PDqPFo81yO949nW897INjl7ot46CPup9IrXExE,108
|
|
18
|
+
monoco/core/agent/action.py,sha256=HpOLzp-mttJY0SDVbRlstDVqjFKozIAdjQdJ4Gp3xiY,5161
|
|
19
|
+
monoco/core/agent/adapters.py,sha256=3M6-8uz_WOxXY1bMdu3epQ15v9dc-8Bolq00-mwLxwM,3517
|
|
20
|
+
monoco/core/agent/protocol.py,sha256=E7y_i2JzYGpzSCRCUIuzu1ATav-Xu1K01ka6Zncm4-o,831
|
|
21
|
+
monoco/core/agent/state.py,sha256=M-VgwSMNbIkr1JNB1U6N4qBE5BV4hjQf_C9_Woms-lA,4057
|
|
15
22
|
monoco/core/resources/en/AGENTS.md,sha256=3TpCLNC1s_lIbDfJJBRmmROMoy9sZXu8BOag8M9NXI0,327
|
|
16
23
|
monoco/core/resources/en/SKILL.md,sha256=_1leQQDZ4CoSkWzTd5UmCYpDgSOeQc51uuo1-DGhTlM,2169
|
|
17
24
|
monoco/core/resources/zh/AGENTS.md,sha256=pGQOLt8mcRygJotd5oC8l9604hikQoUiS99QsHCe-UM,298
|
|
18
25
|
monoco/core/resources/zh/SKILL.md,sha256=YlO0OO-yxwtZG4pMwTMAVaZ5-tfwysNYzLJNdULLHiE,1896
|
|
19
26
|
monoco/daemon/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
-
monoco/daemon/app.py,sha256=
|
|
27
|
+
monoco/daemon/app.py,sha256=Wc5nt-zPXiV2WzE_0Ee7rM2glr6gbJ4GNNOmQrlMOro,15381
|
|
21
28
|
monoco/daemon/commands.py,sha256=dN4D8ca0vPjj0WyjCSs8senneta1afm_bnNYv_kmGlU,1125
|
|
22
|
-
monoco/daemon/models.py,sha256=
|
|
29
|
+
monoco/daemon/models.py,sha256=5T2SggaTdKWKRihjGhFOQM57s7WwF4Nx7c6C4YUeMSw,967
|
|
23
30
|
monoco/daemon/reproduce_stats.py,sha256=Q_zAj0Yj8l-77QDdtsLz1kWr68HeO7f1T6xC6VP43Vo,1261
|
|
24
|
-
monoco/daemon/services.py,sha256=
|
|
31
|
+
monoco/daemon/services.py,sha256=dMhy2ddzGtBBWTGtI14R-2aikENAgPsphxDkno1JAPU,5377
|
|
25
32
|
monoco/daemon/stats.py,sha256=r-L0k6CdxkAkwLZV3V-jW7PldB9S3uNklQGLCEKA3Sc,4563
|
|
26
33
|
monoco/features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
+
monoco/features/agent/commands.py,sha256=hM5vc4KBzMP6V4Vee3fHLjyCU7oUOKJ0C6Mukz-mBYE,5638
|
|
35
|
+
monoco/features/agent/doctor.py,sha256=qqUu_rUjVp7ur1sYpL4VSpw8vwbwbjvXAFvXQP-lbNQ,924
|
|
27
36
|
monoco/features/config/commands.py,sha256=wUh0R2GoXoR-DfNxE_i_oqrBOZr5JSjPhfg2xmkhd5s,4284
|
|
28
37
|
monoco/features/i18n/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
38
|
monoco/features/i18n/adapter.py,sha256=M9iSEKykEiUe1YobHKmvfEjv7x7KgGuh-6yhgUJuN_s,973
|
|
@@ -35,10 +44,12 @@ monoco/features/i18n/resources/zh/AGENTS.md,sha256=lKkwLLCADRH7UDq9no4eQY2sRfJrb
|
|
|
35
44
|
monoco/features/i18n/resources/zh/SKILL.md,sha256=y2UuwhZmCBy0pXGxWLNrhxb94zcNfGEMBA_imJgDqVg,1894
|
|
36
45
|
monoco/features/issue/adapter.py,sha256=Y-ghwRoSEgm_A-cqY8Un-5srxydXdb9ytlKHLm89eJQ,1265
|
|
37
46
|
monoco/features/issue/commands.py,sha256=tDp4LgCWMFvzJttr6BUQOW7APhUDEPRC2YRx6aO8zdI,29446
|
|
38
|
-
monoco/features/issue/core.py,sha256=
|
|
47
|
+
monoco/features/issue/core.py,sha256=whvUONF4Fak3xU6YBg-Ywg2OVlyaToP30Pb25Bly33w,44702
|
|
39
48
|
monoco/features/issue/linter.py,sha256=ZMNpp_0ehbzBMYROfPtCr4O4JL8mhdO9L0F3EAi96lE,7657
|
|
40
49
|
monoco/features/issue/migration.py,sha256=9gtgFi1V1pzwXo0-H4cIoBvSBERIWopXLCB4oSxTQLc,4715
|
|
41
|
-
monoco/features/issue/models.py,sha256=
|
|
50
|
+
monoco/features/issue/models.py,sha256=mSepSUX4kM4IEc60yyRWmB37VWWuGD8ZQA4hDyxILJM,5434
|
|
51
|
+
monoco/features/issue/monitor.py,sha256=QEN0mqZ3tKwBfMjN87-LdrVoIEe0prA-uMHOBGy1VZk,3476
|
|
52
|
+
monoco/features/issue/executions/refine.md,sha256=SMTxPB3W-oH3FPoRDdRTYmg2l1Jpez3UhZNcj0GMIrQ,867
|
|
42
53
|
monoco/features/issue/resources/en/AGENTS.md,sha256=N25fg10hiUgBIFmb1P2a6H1qzMsnLEmdYrvdqnYqh6E,451
|
|
43
54
|
monoco/features/issue/resources/en/SKILL.md,sha256=pGIgqgMnIpMIB0NwfSm2aJCuhpdk8fe8Q4wAm5kLG3M,1394
|
|
44
55
|
monoco/features/issue/resources/zh/AGENTS.md,sha256=2aK2QTsKZqYxpE2fg9yFK_ORrhONo8t9ueebUN2k-KQ,461
|
|
@@ -55,8 +66,8 @@ monoco/features/spike/resources/en/AGENTS.md,sha256=NG3CMnlDk_0J8hnRUcueAM9lgIQr
|
|
|
55
66
|
monoco/features/spike/resources/en/SKILL.md,sha256=qKDcVh0D3pDRvfNLh1Bzo4oQU3obpl4tqdlzxeiWYMk,1911
|
|
56
67
|
monoco/features/spike/resources/zh/AGENTS.md,sha256=5RHNl7fc3RdYYTFH483ojJl_arGPKkyYziOuGgFbqqg,290
|
|
57
68
|
monoco/features/spike/resources/zh/SKILL.md,sha256=boGPgAfTHbEzdwomRh-qVEveWSgvYaPUdi_4YZVXGHI,1714
|
|
58
|
-
monoco_toolkit-0.
|
|
59
|
-
monoco_toolkit-0.
|
|
60
|
-
monoco_toolkit-0.
|
|
61
|
-
monoco_toolkit-0.
|
|
62
|
-
monoco_toolkit-0.
|
|
69
|
+
monoco_toolkit-0.2.0.dist-info/METADATA,sha256=UAqgkj_DM96kCtwK4_6k-9RLlqJ8Xk3mWRwL82i01ok,3743
|
|
70
|
+
monoco_toolkit-0.2.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
71
|
+
monoco_toolkit-0.2.0.dist-info/entry_points.txt,sha256=iYj7FWYBdtClU15-Du1skqD0s6SFSIhJvxJ29VWp8ng,43
|
|
72
|
+
monoco_toolkit-0.2.0.dist-info/licenses/LICENSE,sha256=ACAGGjV6aod4eIlVUTx1q9PZbnZGN5bBwkSs9RHj83s,1071
|
|
73
|
+
monoco_toolkit-0.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|