monoco-toolkit 0.3.9__py3-none-any.whl → 0.3.11__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.
Files changed (132) hide show
  1. monoco/__main__.py +8 -0
  2. monoco/core/artifacts/__init__.py +16 -0
  3. monoco/core/artifacts/manager.py +575 -0
  4. monoco/core/artifacts/models.py +161 -0
  5. monoco/core/config.py +38 -4
  6. monoco/core/git.py +23 -0
  7. monoco/core/hooks/builtin/git_cleanup.py +1 -1
  8. monoco/core/ingestion/__init__.py +20 -0
  9. monoco/core/ingestion/discovery.py +248 -0
  10. monoco/core/ingestion/watcher.py +343 -0
  11. monoco/core/ingestion/worker.py +436 -0
  12. monoco/core/injection.py +63 -29
  13. monoco/core/integrations.py +2 -2
  14. monoco/core/loader.py +633 -0
  15. monoco/core/output.py +5 -5
  16. monoco/core/registry.py +34 -19
  17. monoco/core/resource/__init__.py +5 -0
  18. monoco/core/resource/finder.py +98 -0
  19. monoco/core/resource/manager.py +91 -0
  20. monoco/core/resource/models.py +35 -0
  21. monoco/core/skill_framework.py +292 -0
  22. monoco/core/skills.py +524 -385
  23. monoco/core/sync.py +73 -1
  24. monoco/core/workflow_converter.py +420 -0
  25. monoco/daemon/app.py +77 -1
  26. monoco/daemon/commands.py +10 -0
  27. monoco/daemon/mailroom_service.py +196 -0
  28. monoco/daemon/models.py +1 -0
  29. monoco/daemon/scheduler.py +236 -0
  30. monoco/daemon/services.py +185 -0
  31. monoco/daemon/triggers.py +55 -0
  32. monoco/features/agent/__init__.py +2 -2
  33. monoco/features/agent/adapter.py +41 -0
  34. monoco/features/agent/apoptosis.py +44 -0
  35. monoco/features/agent/cli.py +101 -144
  36. monoco/features/agent/config.py +35 -21
  37. monoco/features/agent/defaults.py +6 -49
  38. monoco/features/agent/engines.py +32 -6
  39. monoco/features/agent/manager.py +47 -6
  40. monoco/features/agent/models.py +2 -2
  41. monoco/features/agent/resources/atoms/atom-code-dev.yaml +61 -0
  42. monoco/features/agent/resources/atoms/atom-issue-lifecycle.yaml +73 -0
  43. monoco/features/agent/resources/atoms/atom-knowledge.yaml +55 -0
  44. monoco/features/agent/resources/atoms/atom-review.yaml +60 -0
  45. monoco/{core/resources/en → features/agent/resources/en/skills/monoco_atom_core}/SKILL.md +3 -1
  46. monoco/features/agent/resources/en/skills/monoco_workflow_agent_engineer/SKILL.md +94 -0
  47. monoco/features/agent/resources/en/skills/monoco_workflow_agent_manager/SKILL.md +93 -0
  48. monoco/features/agent/resources/en/skills/monoco_workflow_agent_planner/SKILL.md +85 -0
  49. monoco/features/agent/resources/en/skills/monoco_workflow_agent_reviewer/SKILL.md +114 -0
  50. monoco/features/agent/resources/workflows/workflow-dev.yaml +83 -0
  51. monoco/features/agent/resources/workflows/workflow-issue-create.yaml +72 -0
  52. monoco/features/agent/resources/workflows/workflow-review.yaml +94 -0
  53. monoco/features/agent/resources/zh/roles/monoco_role_engineer.yaml +49 -0
  54. monoco/features/agent/resources/zh/roles/monoco_role_manager.yaml +46 -0
  55. monoco/features/agent/resources/zh/roles/monoco_role_planner.yaml +46 -0
  56. monoco/features/agent/resources/zh/roles/monoco_role_reviewer.yaml +47 -0
  57. monoco/{core/resources/zh → features/agent/resources/zh/skills/monoco_atom_core}/SKILL.md +3 -1
  58. monoco/features/agent/resources/{skills/flow_engineer → zh/skills/monoco_workflow_agent_engineer}/SKILL.md +2 -2
  59. monoco/features/agent/resources/{skills/flow_manager → zh/skills/monoco_workflow_agent_manager}/SKILL.md +2 -2
  60. monoco/features/agent/resources/zh/skills/monoco_workflow_agent_planner/SKILL.md +259 -0
  61. monoco/features/agent/resources/zh/skills/monoco_workflow_agent_reviewer/SKILL.md +137 -0
  62. monoco/features/agent/session.py +59 -11
  63. monoco/features/agent/worker.py +38 -2
  64. monoco/features/artifact/__init__.py +0 -0
  65. monoco/features/artifact/adapter.py +33 -0
  66. monoco/features/artifact/resources/zh/AGENTS.md +14 -0
  67. monoco/features/artifact/resources/zh/skills/monoco_atom_artifact/SKILL.md +278 -0
  68. monoco/features/glossary/__init__.py +0 -0
  69. monoco/features/glossary/adapter.py +42 -0
  70. monoco/features/glossary/config.py +5 -0
  71. monoco/features/glossary/resources/en/AGENTS.md +29 -0
  72. monoco/features/glossary/resources/en/skills/monoco_atom_glossary/SKILL.md +35 -0
  73. monoco/features/glossary/resources/zh/AGENTS.md +29 -0
  74. monoco/features/glossary/resources/zh/skills/monoco_atom_glossary/SKILL.md +35 -0
  75. monoco/features/hooks/__init__.py +11 -0
  76. monoco/features/hooks/adapter.py +67 -0
  77. monoco/features/hooks/commands.py +309 -0
  78. monoco/features/hooks/core.py +441 -0
  79. monoco/features/hooks/resources/ADDING_HOOKS.md +234 -0
  80. monoco/features/i18n/adapter.py +18 -5
  81. monoco/features/i18n/core.py +482 -17
  82. monoco/features/i18n/resources/en/{SKILL.md → skills/monoco_atom_i18n/SKILL.md} +3 -1
  83. monoco/features/i18n/resources/en/skills/monoco_workflow_i18n_scan/SKILL.md +105 -0
  84. monoco/features/i18n/resources/zh/{SKILL.md → skills/monoco_atom_i18n/SKILL.md} +3 -1
  85. monoco/features/i18n/resources/{skills/i18n_scan_workflow → zh/skills/monoco_workflow_i18n_scan}/SKILL.md +2 -2
  86. monoco/features/issue/adapter.py +19 -6
  87. monoco/features/issue/commands.py +281 -7
  88. monoco/features/issue/core.py +272 -19
  89. monoco/features/issue/engine/machine.py +118 -5
  90. monoco/features/issue/linter.py +60 -5
  91. monoco/features/issue/models.py +3 -2
  92. monoco/features/issue/resources/en/AGENTS.md +109 -0
  93. monoco/features/issue/resources/en/{SKILL.md → skills/monoco_atom_issue/SKILL.md} +3 -1
  94. monoco/features/issue/resources/en/skills/monoco_workflow_issue_creation/SKILL.md +167 -0
  95. monoco/features/issue/resources/en/skills/monoco_workflow_issue_development/SKILL.md +224 -0
  96. monoco/features/issue/resources/en/skills/monoco_workflow_issue_management/SKILL.md +159 -0
  97. monoco/features/issue/resources/en/skills/monoco_workflow_issue_refinement/SKILL.md +203 -0
  98. monoco/features/issue/resources/hooks/post-checkout.sh +39 -0
  99. monoco/features/issue/resources/hooks/pre-commit.sh +41 -0
  100. monoco/features/issue/resources/hooks/pre-push.sh +35 -0
  101. monoco/features/issue/resources/zh/AGENTS.md +109 -0
  102. monoco/features/issue/resources/zh/{SKILL.md → skills/monoco_atom_issue_lifecycle/SKILL.md} +3 -1
  103. monoco/features/issue/resources/zh/skills/monoco_workflow_issue_creation/SKILL.md +167 -0
  104. monoco/features/issue/resources/zh/skills/monoco_workflow_issue_development/SKILL.md +224 -0
  105. monoco/features/issue/resources/{skills/issue_lifecycle_workflow → zh/skills/monoco_workflow_issue_management}/SKILL.md +2 -2
  106. monoco/features/issue/resources/zh/skills/monoco_workflow_issue_refinement/SKILL.md +203 -0
  107. monoco/features/issue/validator.py +101 -1
  108. monoco/features/memo/adapter.py +21 -8
  109. monoco/features/memo/cli.py +103 -10
  110. monoco/features/memo/core.py +178 -92
  111. monoco/features/memo/models.py +53 -0
  112. monoco/features/memo/resources/en/skills/monoco_atom_memo/SKILL.md +77 -0
  113. monoco/features/memo/resources/en/skills/monoco_workflow_note_processing/SKILL.md +140 -0
  114. monoco/features/memo/resources/zh/{SKILL.md → skills/monoco_atom_memo/SKILL.md} +3 -1
  115. monoco/features/memo/resources/{skills/note_processing_workflow → zh/skills/monoco_workflow_note_processing}/SKILL.md +2 -2
  116. monoco/features/spike/adapter.py +18 -5
  117. monoco/features/spike/resources/en/{SKILL.md → skills/monoco_atom_spike/SKILL.md} +3 -1
  118. monoco/features/spike/resources/en/skills/monoco_workflow_research/SKILL.md +121 -0
  119. monoco/features/spike/resources/zh/{SKILL.md → skills/monoco_atom_spike/SKILL.md} +3 -1
  120. monoco/features/spike/resources/{skills/research_workflow → zh/skills/monoco_workflow_research}/SKILL.md +2 -2
  121. monoco/main.py +38 -1
  122. monoco_toolkit-0.3.11.dist-info/METADATA +130 -0
  123. monoco_toolkit-0.3.11.dist-info/RECORD +181 -0
  124. monoco/features/agent/reliability.py +0 -106
  125. monoco/features/agent/resources/skills/flow_reviewer/SKILL.md +0 -114
  126. monoco_toolkit-0.3.9.dist-info/METADATA +0 -127
  127. monoco_toolkit-0.3.9.dist-info/RECORD +0 -115
  128. /monoco/{core → features/agent}/resources/en/AGENTS.md +0 -0
  129. /monoco/{core → features/agent}/resources/zh/AGENTS.md +0 -0
  130. {monoco_toolkit-0.3.9.dist-info → monoco_toolkit-0.3.11.dist-info}/WHEEL +0 -0
  131. {monoco_toolkit-0.3.9.dist-info → monoco_toolkit-0.3.11.dist-info}/entry_points.txt +0 -0
  132. {monoco_toolkit-0.3.9.dist-info → monoco_toolkit-0.3.11.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,181 @@
1
+ monoco/__main__.py,sha256=BNYhtz7ZAQRllC-B9oggvQJW-IFlJWhAA_D7EsktJj8,111
2
+ monoco/main.py,sha256=-KccbbitRHmTy-rMvsvvs0WlCj-lRCL5EO3U3OYYGsk,7168
3
+ monoco/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ monoco/cli/project.py,sha256=FqLaDD3hiWxa0_TKzxEF7PYH9RPsvmLyjO3NYVckgGs,2737
5
+ monoco/cli/workspace.py,sha256=vcUHjSarRZk8k3SNjtLSVD2VUPhBIUyx5J1OPtGa7-Q,1541
6
+ monoco/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ monoco/core/config.py,sha256=tmbfQd64CCOHfFTFf2zrUvCd9jvk25X6-UaksTkpaIY,16872
8
+ monoco/core/execution.py,sha256=7522s7uVWiNdMKtWlIb8JHzbAcJgLVuxUFp_6VmhWNQ,1801
9
+ monoco/core/feature.py,sha256=bcK0C1CaQgNLcdMF0RuniaaQRCYSA-0JdOpQz9W_1xM,1968
10
+ monoco/core/git.py,sha256=C0wq8z9XOVmIOW2K583rPPsHRB6eHT0TRH1qLSzqOyo,9170
11
+ monoco/core/githooks.py,sha256=QY4c74LIYDtcjtWYax1PrK5CtVNKYTfVVVBOj-SCulo,1826
12
+ monoco/core/injection.py,sha256=BCMbppPqBH_1XVT7is0UgemstSDnb98E1Df1sdE6JKY,8391
13
+ monoco/core/integrations.py,sha256=V_PgRfJt1X9rAuq0EkILaJufqbwqilyBQmH2-RV4D3U,7917
14
+ monoco/core/loader.py,sha256=olEXbG6VRLjHddKOMby68QuQOVyIP8hPVxQBPEXkUPQ,20410
15
+ monoco/core/lsp.py,sha256=GOrHzubkMWS3iBpP4H2fTFW-0JXa6D2YlU0ZEhp5zmY,2018
16
+ monoco/core/output.py,sha256=21KoFtAiPm_8hwZlNNvuxDUMRNGfoS2_H-rpwTnjxLY,3972
17
+ monoco/core/registry.py,sha256=a2qQpZQgbmkvLOcrp-UWWQ0nlh8lkWAk7X6Hnm-bzz4,1874
18
+ monoco/core/setup.py,sha256=CYADZjUF1tNu6OQ5oVZ_3X_HN7TxnyrvOWbQwluIA_E,11490
19
+ monoco/core/skill_framework.py,sha256=0EaFDigPNpY9ZO-8tqLTjp9MjsPc1CPum9ir5M862BU,13295
20
+ monoco/core/skills.py,sha256=tDZXoDmGcXzICdcIIXYpC-kolajVx_QTQ1o1dpXjhoc,30369
21
+ monoco/core/state.py,sha256=dfoTH1Sj_TSjtTEXuv4w0ZOp_Fd30XNymVSZo30Xshg,1820
22
+ monoco/core/sync.py,sha256=bR8OW0c-l8NLUmxmIClighIV-6Nms9iv9a9Jc3wDKbs,11170
23
+ monoco/core/telemetry.py,sha256=GQDbtgrZwAL1ZpjgbJZuawbTyH6J0NjMXMi4ogq-Ang,2915
24
+ monoco/core/workflow_converter.py,sha256=djAJJKi9iDHscluN7DTMDc6SDEz9YvJSYQW3XLFIbgo,13777
25
+ monoco/core/workspace.py,sha256=H_PHD5A0HZFq841u1JtLoFjkXdQg9D6x6I7QcFtJge4,3000
26
+ monoco/core/artifacts/__init__.py,sha256=emmW_RHKZbJ4ED-oPx6Eoci34f4NKCXTuBohQmQ5gcU,406
27
+ monoco/core/artifacts/manager.py,sha256=WinaVMrXWVm56CRYtSEz6O2JWZZ1A7xWiEnR8O7ppHc,19543
28
+ monoco/core/artifacts/models.py,sha256=fk_iS3kkUFEwf7O8YKO2sVVHaNS8JaGQRoHsJceSBLw,5241
29
+ monoco/core/hooks/__init__.py,sha256=8dWjDSwJG9JdghWBxgk7zH1U1FlJCiRo66mfbWcDK3M,437
30
+ monoco/core/hooks/base.py,sha256=GQ59E_VX8RmtWezyg5sMFqmKRDsD7PJflcAb2TTy8S8,3276
31
+ monoco/core/hooks/context.py,sha256=A0xwwU6JcsBH3t4h9jlodAdEMuajU8QeW_3bSMTWfPY,4005
32
+ monoco/core/hooks/registry.py,sha256=O_IO1c7R9NbHk3F-xtLowQQkzPBs6qM1Xii398ZfbNU,7100
33
+ monoco/core/hooks/builtin/__init__.py,sha256=R_e04bOLnBKy7pX5QVBkDjgUNeQ82o1IHq--CKgIX_I,177
34
+ monoco/core/hooks/builtin/git_cleanup.py,sha256=crtUv2RJoeo1qOAgLulr6Q0_M-oFTLDNq3Uku1pl3QU,9701
35
+ monoco/core/hooks/builtin/logging_hook.py,sha256=F5iN3zeczEeoumK0nUXf6ZVrO4_5gcA9dne8y4KSiXo,2796
36
+ monoco/core/ingestion/__init__.py,sha256=JbGL2DiYK9uvp2v7ZLWC-H2F_Z_XWoBy9Z0WbuVRqwM,547
37
+ monoco/core/ingestion/discovery.py,sha256=qu_adDf9pwoQHkJTDbzjqq7yIwIJxcYcFcQoH6YGuek,7966
38
+ monoco/core/ingestion/watcher.py,sha256=y6kkpqhCXI3FIVPmb8JGJbtm7eaeHq6LM5v91JbXVQc,11996
39
+ monoco/core/ingestion/worker.py,sha256=ndMsbb8PZLzRkwmuWObA8RRUOwGs_kAXuq2c2FVK3L8,14735
40
+ monoco/core/resource/__init__.py,sha256=CZvZHdtyfgrAehCjoAUuVAJ-XGaLqN7DcGE2SEKHIiU,200
41
+ monoco/core/resource/finder.py,sha256=izX-jTw0juajXbcAuk7MtCXD7Os0pzLXBgTxL-nxwe0,4329
42
+ monoco/core/resource/manager.py,sha256=ZRDyvZFvcFPhD9jzmE3jYbZHCIRkheqcR6INxTke6_Y,3484
43
+ monoco/core/resource/models.py,sha256=mJffVMZ8PpWety-yHhierfmgPst_e1mRqgLWfrUrk4g,934
44
+ monoco/daemon/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
+ monoco/daemon/app.py,sha256=SqE-IVawsZsgncCk5L4y2i5Hb2P2lBvpdmQIznVf2GY,17994
46
+ monoco/daemon/commands.py,sha256=Af0zvS4xuJFyST8LiX9J82gkR4nRNLQERKp2biHHs-k,1490
47
+ monoco/daemon/mailroom_service.py,sha256=w5hFnT1fJODAs_HZN8A8Bu65bUZic2pEyr-hYdSM14k,6811
48
+ monoco/daemon/models.py,sha256=O4NEsjrO22yOJCYFz9LH2SR9CFS57CA1SGNbjiHlxXQ,1053
49
+ monoco/daemon/reproduce_stats.py,sha256=LghJ8o1jTeDpA1zVPI2vF0okGU3h4esEI1thNa6shKI,1196
50
+ monoco/daemon/scheduler.py,sha256=AQGn8nbq8Abtx4J32F7u0p5dN5928TrBtnUL6HW1gGY,10786
51
+ monoco/daemon/services.py,sha256=prGePP9F7nGtrUTWYaypmWgT17l_sX7Wc5N5xAJsp6I,12091
52
+ monoco/daemon/stats.py,sha256=XTtuFWx68O1OA44SmN0BGVa6sswts2ExmkiavUzCYiA,4800
53
+ monoco/daemon/triggers.py,sha256=sBsXLfvI7_d3bUPzaDit1YQBypLBFJFv3l-DEIoKpbA,1815
54
+ monoco/features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
+ monoco/features/agent/__init__.py,sha256=nZ8DXHy0F6jvU6jvUUfKmLXxojYuErtmjCniY832qLQ,576
56
+ monoco/features/agent/adapter.py,sha256=T3lS2UjR5KFWwnCurUhsvM4_Xu5sdp3MJvuRkExecTU,1476
57
+ monoco/features/agent/apoptosis.py,sha256=d2q9RsGZXFAfTGGbOhmj9rAjy9-YswGolDs0-eknPmM,1524
58
+ monoco/features/agent/cli.py,sha256=HorUNabexlsVipVs4iizt8z0S5hPT_z8J6lcoYrDt8Y,9670
59
+ monoco/features/agent/config.py,sha256=nBjwZsod8DI5O4MdD_N9TED87V8dxpK8m-KJAzAsc8c,3296
60
+ monoco/features/agent/defaults.py,sha256=lw3-UIE6ZA8yR5iqczBKYtwu06pHRuuDOy4GPnmDWwU,390
61
+ monoco/features/agent/engines.py,sha256=d4D50kN-n31eiCpUdNfTAFfwI2SIT0YaZ6xg_s0YJfQ,4643
62
+ monoco/features/agent/flow_skills.py,sha256=9YQZvhebS_J2oERsGMfWd6WjDKkAWGzlJ0guIrYgsMw,9079
63
+ monoco/features/agent/manager.py,sha256=A0r81kvTXGQlK7h9vJkG9cj56Jm3TdWODfuNYsnloso,4566
64
+ monoco/features/agent/models.py,sha256=WP1i0slVdJxQfGmmxabKOLGU5qc75QXJFvkin-5sxw0,856
65
+ monoco/features/agent/session.py,sha256=A1APoF5rrQAyv6LHtldpQHeN2J6n9sZC-AwS3TSbJ_4,6144
66
+ monoco/features/agent/worker.py,sha256=wCJZQCJQ6ssQmXBb6TOttZamRRnXocjUla9r5w9wy50,5742
67
+ monoco/features/agent/resources/atoms/atom-code-dev.yaml,sha256=a4zbewWZ4bKNdA8tIIKdXt-s5Gd_M2_IU25qLpDkPlk,1790
68
+ monoco/features/agent/resources/atoms/atom-issue-lifecycle.yaml,sha256=OEDzvMqTB3CtI8ci_z6I-ZapxD6XkJFhXIAPNpQdQac,2417
69
+ monoco/features/agent/resources/atoms/atom-knowledge.yaml,sha256=hTkbUzycgtXPBGpAoVcHIi_P7WVson6zu9Kp79iU5HU,1735
70
+ monoco/features/agent/resources/atoms/atom-review.yaml,sha256=8pk4ieipw63xItlIbCFqAvUUDMUNGIJX7BjvCMJ-rkI,1965
71
+ monoco/features/agent/resources/en/AGENTS.md,sha256=vf9z43UU-LPwYKPWCrtw8TpWrmkeZ6zfMyHP4Q9JqdQ,1178
72
+ monoco/features/agent/resources/en/skills/monoco_atom_core/SKILL.md,sha256=ef0rVQ4P6a88PZa_FUZCaq-VpHZsIDE3tITZSXOGixk,3535
73
+ monoco/features/agent/resources/en/skills/monoco_workflow_agent_engineer/SKILL.md,sha256=sYneUvbcZga7jyhsLaTM73I6l5esey1nZDbywJhW3DU,2892
74
+ monoco/features/agent/resources/en/skills/monoco_workflow_agent_manager/SKILL.md,sha256=A3TkZqoA_3_1nvAFH_ynKFd2CnDGKI5o6LcQnp94Bac,2869
75
+ monoco/features/agent/resources/en/skills/monoco_workflow_agent_planner/SKILL.md,sha256=IyFhBvsofPuO4-zlKsGxpc5E7w8qzmfO5OulnLSWi2c,2792
76
+ monoco/features/agent/resources/en/skills/monoco_workflow_agent_reviewer/SKILL.md,sha256=XHaRHXJJkxV5jVtVdG2PX-g9cp3NNHEZ8EXRwRJbYuQ,2928
77
+ monoco/features/agent/resources/workflows/workflow-dev.yaml,sha256=ncj9wwsr34hBfWdsUmrSso3VwQ5KmmaOOgVl4kv97JE,2297
78
+ monoco/features/agent/resources/workflows/workflow-issue-create.yaml,sha256=WeOj_R38HU3_5ZSCR2I4GEHZA86CrRCkNMn2tGum5nI,2026
79
+ monoco/features/agent/resources/workflows/workflow-review.yaml,sha256=uNNmWgMIVgXbvObrJdGovXM2NqxowhWyrFwxkUMAOPo,2563
80
+ monoco/features/agent/resources/zh/AGENTS.md,sha256=KBNZSCPBIals6jDdvG5wJgjZuswi_1nKljggJSMtfy8,1156
81
+ monoco/features/agent/resources/zh/roles/monoco_role_engineer.yaml,sha256=KOwEtr1p-2wHfMGAHAxE4LNQL0w1BOlKvw49vZuaiy0,1677
82
+ monoco/features/agent/resources/zh/roles/monoco_role_manager.yaml,sha256=ggmaWCsJfRvFWwz15gp5EVpDWipCN-GidlsOMXOVG0k,1514
83
+ monoco/features/agent/resources/zh/roles/monoco_role_planner.yaml,sha256=E5GeGPBXIyWev5_FNyC44AUz7wpMzAqQYbodteIBQjg,1471
84
+ monoco/features/agent/resources/zh/roles/monoco_role_reviewer.yaml,sha256=LKw3DzMvzrlHhjCCOVeaaRA028EbrOU76uuashDggHI,1627
85
+ monoco/features/agent/resources/zh/skills/monoco_atom_core/SKILL.md,sha256=hF-uQk5MNJdE_YGH9zCXeIIfPusd3xgAOrv4iaTS7nI,3184
86
+ monoco/features/agent/resources/zh/skills/monoco_workflow_agent_engineer/SKILL.md,sha256=vK2pUhRK61TP9yeIeQTLWJdClJGBwriF2gmPtPpj_-0,2664
87
+ monoco/features/agent/resources/zh/skills/monoco_workflow_agent_manager/SKILL.md,sha256=Ayhy4MmomYwnCvSHlc-osiOym5tSKEr0AmfRgOFcetE,2603
88
+ monoco/features/agent/resources/zh/skills/monoco_workflow_agent_planner/SKILL.md,sha256=GNA69DcmSMjaZO384qdge_Mzhmaf0qjzOErtQTp6tzQ,6174
89
+ monoco/features/agent/resources/zh/skills/monoco_workflow_agent_reviewer/SKILL.md,sha256=To6LDTdMyV9b5WXlOjkl6ctIlSEjm231TM7Di2Mdlk0,4256
90
+ monoco/features/artifact/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
+ monoco/features/artifact/adapter.py,sha256=xk9dwrqYYuVvfgp1BAn7ANMINAsbJpbpGFA3sAvdcSc,1140
92
+ monoco/features/artifact/resources/zh/AGENTS.md,sha256=RvMxEF1KgezwOZzEPiKEdWtf7AqTdsUpSXV0v_jBKjo,959
93
+ monoco/features/artifact/resources/zh/skills/monoco_atom_artifact/SKILL.md,sha256=vr_4OPP54Sv4kmnJYroZ3l55UGlTCX-SVp-NGZypVfI,6344
94
+ monoco/features/config/commands.py,sha256=i6_fKhSGLeO8RCbWrYKxelFgaHWcPiQERS2uxUdq7H0,4894
95
+ monoco/features/glossary/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
+ monoco/features/glossary/adapter.py,sha256=8CHApyIM34Z6jn6s_dHWpuUzNG6WwDz-44O0uIckffw,1564
97
+ monoco/features/glossary/config.py,sha256=ghzIPhTFmRcrSyVrZKdmpFRMFrtfL4hJ4dNkKMXT0ys,93
98
+ monoco/features/glossary/resources/en/AGENTS.md,sha256=PfeX2JFbyuqwQySCgXV8HSTsyV-0z7E_oyBLUszkI6U,2096
99
+ monoco/features/glossary/resources/en/skills/monoco_atom_glossary/SKILL.md,sha256=4RdH3aB6AvWJKna9qP8c26ETvO-UdMTmFpBVUTJh8c0,2210
100
+ monoco/features/glossary/resources/zh/AGENTS.md,sha256=Y5zAOZRRCbGYAZitdR7gHJAjJdkXuCQvP5bH_zl8L04,1505
101
+ monoco/features/glossary/resources/zh/skills/monoco_atom_glossary/SKILL.md,sha256=NIYofU6cfKR_JYzKJNtyPVk0e_rI7YY-clFyDjq4GV0,1610
102
+ monoco/features/hooks/__init__.py,sha256=CAkPAA-O3MM8nkmVhUNTSQNtj0s6k3WNG7uGqc0xx1s,361
103
+ monoco/features/hooks/adapter.py,sha256=bMMJuHJD-uB8vnYaSJIe9Lbf3Rup21g27X8JKf3joio,2240
104
+ monoco/features/hooks/commands.py,sha256=_7EIV8f350Be0GYq3n0bxlQAxUMXARBEXgTarjCrrJo,10241
105
+ monoco/features/hooks/core.py,sha256=dyO4ggagOd1PJ9RoHrJ2SPuWQ2YV1SThZzeDyU_5PWI,15056
106
+ monoco/features/hooks/resources/ADDING_HOOKS.md,sha256=JodrGecypO4F8Bz0C-lRsaQXzp-B9IRbzxFZt9Xk7Dg,5363
107
+ monoco/features/i18n/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
+ monoco/features/i18n/adapter.py,sha256=Ag0QxkDC86KClu0eTeRxiaTcYdCCkPZBgS8ZLr4UdrI,1518
109
+ monoco/features/i18n/commands.py,sha256=NJ2lZRRjiTW-3UbqxhEKURdWSDxQPkfnBAUgnwoVCL8,8416
110
+ monoco/features/i18n/core.py,sha256=EAFWZgbRHls5xVTpqCAWKhC2d-sbAS6ZiMKhB03aNd8,28711
111
+ monoco/features/i18n/resources/en/AGENTS.md,sha256=zzuF7BW6x8Mj6LZZmeM6wTbG5CSCDMShf4rwtN7XITg,197
112
+ monoco/features/i18n/resources/en/skills/monoco_atom_i18n/SKILL.md,sha256=KmaakwZYeXf1Jnqgt5aIG4-bae8VOnTdbuS4m0gWFgE,2234
113
+ monoco/features/i18n/resources/en/skills/monoco_workflow_i18n_scan/SKILL.md,sha256=J7igWiLqG3W3unymGwDsyEwkWdEVw8UE1Z-dMTcTIo8,3172
114
+ monoco/features/i18n/resources/zh/AGENTS.md,sha256=lKkwLLCADRH7UDq9no4eQY2sRfJrb64JoZ_HNved8vA,175
115
+ monoco/features/i18n/resources/zh/skills/monoco_atom_i18n/SKILL.md,sha256=3ajNeaaPlqWCnNDIiWiiQHTuHMzUScWqD27PE-YBVrM,1915
116
+ monoco/features/i18n/resources/zh/skills/monoco_workflow_i18n_scan/SKILL.md,sha256=mBZbONW9aiIyXcSyj0ZdE0tNT9MhO8-ydtEkmrhCsmM,2759
117
+ monoco/features/issue/adapter.py,sha256=puCyGKI-S5o2wcJy8fNinIqh2pCyO2auK2pATT67B8k,1769
118
+ monoco/features/issue/commands.py,sha256=akSDFnsLRdyQH1vj8fxc57Z-CmOBKtIluHxM3zZRNMU,61148
119
+ monoco/features/issue/core.py,sha256=qWPiUhuNvmA38Ur2dSNcK-j7zOZAXRXvv2W1PSweB3o,64612
120
+ monoco/features/issue/criticality.py,sha256=Bw0xH0vpx8z59bL-WQjfy4a5zmjXNM0f-aWBzQ5JZCA,18931
121
+ monoco/features/issue/domain_commands.py,sha256=eatSF_uZp4nGpVr2PIgb00MWfEBm0OnyAd4JvUJEAAA,1535
122
+ monoco/features/issue/domain_service.py,sha256=bEs_WXOWmotgIR-lGwyWekF4nonvjsgrK1YG3pyVfwk,2564
123
+ monoco/features/issue/git_service.py,sha256=57FSWiY9qHzOWw_e-IOKinOsiqVJz-ycE1zRtRWuBw8,5956
124
+ monoco/features/issue/linter.py,sha256=jFzYr9022xPd7iPe9gHKSPHTDNCv9a8iLdHQ-vZB0Pg,41589
125
+ monoco/features/issue/migration.py,sha256=i0xlxZjrpmuHGHOAIN4iu31EwwVIvZn7yjveS-kU22c,4896
126
+ monoco/features/issue/models.py,sha256=1WfQBq97uJnpzFoAOXHafo2yFtZ49IM9wsFfnEhQjXg,8939
127
+ monoco/features/issue/monitor.py,sha256=vZN0TbR3V5fHKHRGkIhimO6UwWcwYjDHQs2qzjEG174,3549
128
+ monoco/features/issue/resolver.py,sha256=mAU9s7TNNHY9A2278JTwJvxU-jalGKTDJfJdjONev3E,5655
129
+ monoco/features/issue/test_priority_integration.py,sha256=pTBg3Wjv6lLYxWL6vjbo2NGVE-X0MRB3Ha8bqObZrU4,2791
130
+ monoco/features/issue/test_resolver.py,sha256=luFhK37DUvh4a3TTcFYVO-oOIJljQVCSYicwSWyDleQ,2530
131
+ monoco/features/issue/validator.py,sha256=Ij-n9TxU2yFlFmJSxauh6z8Ru_5WmHPkyYqSkFyL0j0,37613
132
+ monoco/features/issue/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
+ monoco/features/issue/domain/lifecycle.py,sha256=oIuLYTVy1RRHGngAzbNU4kTWOHMBhjuw_TuYCwNqMJw,4991
134
+ monoco/features/issue/domain/models.py,sha256=s4gezUIlSlKxwJ3Byfxtsemj2-qsu4wRiXTNfaesSYQ,6830
135
+ monoco/features/issue/domain/parser.py,sha256=axfB9BjY-m4DQqYwTQBm_38plOidZaDqFtsIejW_kYI,9095
136
+ monoco/features/issue/domain/workspace.py,sha256=nyTEFNmpLPuX7nssMCBiFI1XBhY9zbqG877Ppp_s0Fg,3658
137
+ monoco/features/issue/engine/__init__.py,sha256=-SBvzjlZJz0O-IB1c95d9pbhr3lydJNLq2vhnfkZ8PQ,747
138
+ monoco/features/issue/engine/config.py,sha256=7enjPW4J_fpuK08ov6LpfQ-9h2T1D4Hc5yIXOPuQvLs,5761
139
+ monoco/features/issue/engine/machine.py,sha256=PK7tRaYOdTw9eZp3Fxot3JqtEIDaKfuBb9Dv2IJHosI,12946
140
+ monoco/features/issue/engine/models.py,sha256=595Sx3ncrpg_PhnbBLthohAvuhnjA-_9oXcrsT6Lv0k,574
141
+ monoco/features/issue/lsp/__init__.py,sha256=8bl8-WzSj3C4SkPKgVGnCeyemmvHVWBsuMZsJuJggG8,77
142
+ monoco/features/issue/lsp/definition.py,sha256=cF6Quw1OztuKMJ1zLvgA_ek7lTAdzHF0m4LVznpbAPw,3203
143
+ monoco/features/issue/resources/en/AGENTS.md,sha256=tIHANP4XUskZf8GBY1A03LHFk482kbQlKYq6NhccOqo,5517
144
+ monoco/features/issue/resources/en/skills/monoco_atom_issue/SKILL.md,sha256=FOFctizqMNCccRkiMErOWSIijpjF_xYr_UbjJcSd6Fk,5587
145
+ monoco/features/issue/resources/en/skills/monoco_workflow_issue_creation/SKILL.md,sha256=aze8yZhTIsMl-FRzeGmuExTplryEsGVBoprWEEfQF7o,5420
146
+ monoco/features/issue/resources/en/skills/monoco_workflow_issue_development/SKILL.md,sha256=vb7RzVYtldnq7nNg3S8JXHtBgduk1Nq3nERDaKo-OAU,7051
147
+ monoco/features/issue/resources/en/skills/monoco_workflow_issue_management/SKILL.md,sha256=Ime1A25fbLo2R-gi2OR7WckVsaOyYm3DEJOaJcduS0g,4750
148
+ monoco/features/issue/resources/en/skills/monoco_workflow_issue_refinement/SKILL.md,sha256=XFeuGTGQ2k3elIvB7kxOT86WyQWNLc5-kT83o59QdAE,6200
149
+ monoco/features/issue/resources/hooks/post-checkout.sh,sha256=LAOnoeaCiap5jAEvFJNbeLgnfYWphqYrHqbq6mSlNHU,1271
150
+ monoco/features/issue/resources/hooks/pre-commit.sh,sha256=bOB-kNWLZmjaAHQRmIrIf5EnWnKdQzVcAnusTgYBUT4,1015
151
+ monoco/features/issue/resources/hooks/pre-push.sh,sha256=TmInCxakPiJPQ0Cf9eQr-JfgGm26h-mpvgdmQJ6XVug,1105
152
+ monoco/features/issue/resources/zh/AGENTS.md,sha256=xfHrMkJXV19OXsJnvgo4wVwIYxdIbI0FGF3m38uV-zk,5341
153
+ monoco/features/issue/resources/zh/skills/monoco_atom_issue_lifecycle/SKILL.md,sha256=roinYikfLHx6K0qPFPZRteOgAgs6pXnvV1Nu4MGZLrI,6907
154
+ monoco/features/issue/resources/zh/skills/monoco_workflow_issue_creation/SKILL.md,sha256=5jvvXoFihLHBV7jjBBJE723OLi0vMsdmhrqOUuWtsoo,4908
155
+ monoco/features/issue/resources/zh/skills/monoco_workflow_issue_development/SKILL.md,sha256=36mcHA0ZS2FKj15uB62Wq07HPCbOqNkKFHuJG6pfu0g,6563
156
+ monoco/features/issue/resources/zh/skills/monoco_workflow_issue_management/SKILL.md,sha256=C1y0gy0pWcJVCr9dZdC0581wAWIFTOEG_lgWFZs9FmE,4488
157
+ monoco/features/issue/resources/zh/skills/monoco_workflow_issue_refinement/SKILL.md,sha256=b9Vq5Siy_Nr9HCaoQf2H3_JHWtv7bqzQ93jsH8B6Ces,5197
158
+ monoco/features/memo/__init__.py,sha256=LC5vwsJw-kwzd5O5oeRo-FNSbnZnuFynanec-hA72nw,88
159
+ monoco/features/memo/adapter.py,sha256=YWcQwN-xOyz0Zt94kHZ3BUWG7SV9J_nYhP3lupDx6SI,1596
160
+ monoco/features/memo/cli.py,sha256=9wgATFdYzayg1xiAKOMhLvoPMU0Snp11k12l0k6k2DU,5989
161
+ monoco/features/memo/core.py,sha256=BPLI9MOUW8NmP478gzZmW9IPzZTjoxkZySEqnDbDvJo,6543
162
+ monoco/features/memo/models.py,sha256=dSOvPMEk3_Be_5K0gRsCBh47Y0LJoE5KSiJ0ZDsIqhM,1819
163
+ monoco/features/memo/resources/en/skills/monoco_atom_memo/SKILL.md,sha256=RFA0O588toxcRDduGEq3XxWeY74kM_5oPrsQWEq2MEI,2312
164
+ monoco/features/memo/resources/en/skills/monoco_workflow_note_processing/SKILL.md,sha256=iu83a-ww1fpQ2OTGBMPpv7CNaor4HutunYBeXbPWJNM,4830
165
+ monoco/features/memo/resources/zh/AGENTS.md,sha256=AFlzvhGxAk77np-E8XLb-tkWJCo0bLGItCrV0IiXdHQ,292
166
+ monoco/features/memo/resources/zh/skills/monoco_atom_memo/SKILL.md,sha256=XjJw6qYd99_EQcnwE9RPHjRIsgCf8R-_FHAIEQLyBno,2174
167
+ monoco/features/memo/resources/zh/skills/monoco_workflow_note_processing/SKILL.md,sha256=CfmGNy11n4uDeapQ2qB4e9lH-4D_TO-AyAhsrjKRf6g,4297
168
+ monoco/features/spike/adapter.py,sha256=DqwhFuHdBCy_gpgOuMJ7faccMJKJGVdjxTDecIZPsI8,1571
169
+ monoco/features/spike/commands.py,sha256=EuJ7trDaobIe7ae7pJ-ftpo_cO8-19R_fAZZCh2JcMg,3871
170
+ monoco/features/spike/core.py,sha256=OuNWXQ-cBttP2oIF0B5iy0aEUH2MUMyGANG8ayEmjPo,4120
171
+ monoco/features/spike/resources/en/AGENTS.md,sha256=NG3CMnlDk_0J8hnRUcueAM9lgIQr_dZ42R_31-LC48E,306
172
+ monoco/features/spike/resources/en/skills/monoco_atom_spike/SKILL.md,sha256=JwEAEZesYbbFi1UVPPv_yCGhY-W56uTNUGmOrsn6_3I,1942
173
+ monoco/features/spike/resources/en/skills/monoco_workflow_research/SKILL.md,sha256=Ww1tOC54KIogJBVqyrp26u9DKYcisXVrifOr8kdXT4w,3882
174
+ monoco/features/spike/resources/zh/AGENTS.md,sha256=5RHNl7fc3RdYYTFH483ojJl_arGPKkyYziOuGgFbqqg,290
175
+ monoco/features/spike/resources/zh/skills/monoco_atom_spike/SKILL.md,sha256=sgnRtrGsrW2jQnjYkq-PjyjtNTKSgmsuaKOCoqFWK1A,1741
176
+ monoco/features/spike/resources/zh/skills/monoco_workflow_research/SKILL.md,sha256=qDqHHIPTMDZ_bmgiApP8hCvSPP-b1UeW40fsSAGBdEE,3344
177
+ monoco_toolkit-0.3.11.dist-info/METADATA,sha256=hqdzXIfWZ_tTdtJHy6bmSo21NQlanv1zUOSAZDT5M1A,4909
178
+ monoco_toolkit-0.3.11.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
179
+ monoco_toolkit-0.3.11.dist-info/entry_points.txt,sha256=iYj7FWYBdtClU15-Du1skqD0s6SFSIhJvxJ29VWp8ng,43
180
+ monoco_toolkit-0.3.11.dist-info/licenses/LICENSE,sha256=ACAGGjV6aod4eIlVUTx1q9PZbnZGN5bBwkSs9RHj83s,1071
181
+ monoco_toolkit-0.3.11.dist-info/RECORD,,
@@ -1,106 +0,0 @@
1
- from pathlib import Path
2
- from monoco.core.config import get_config
3
- from .manager import SessionManager
4
- from .session import RuntimeSession
5
- from .config import load_scheduler_config
6
-
7
-
8
- class ApoptosisManager:
9
- """
10
- Handles the 'Apoptosis' (Programmed Cell Death) lifecycle for agents.
11
- Ensures that failing agents are killed, analyzed, and the environment is reset.
12
- """
13
-
14
- def __init__(self, session_manager: SessionManager):
15
- self.session_manager = session_manager
16
-
17
- # Load roles dynamically based on current project context
18
- settings = get_config()
19
- project_root = Path(settings.paths.root).resolve()
20
- roles = load_scheduler_config(project_root)
21
-
22
- # Find coroner role
23
- self.coroner_role = roles.get("Coroner")
24
-
25
- if not self.coroner_role:
26
- raise ValueError("Coroner role not defined!")
27
-
28
- def check_health(self, session: RuntimeSession) -> bool:
29
- """
30
- Check if a session is healthy.
31
- In a real implementation, this would check heartbeat, CPU usage, or token limits.
32
- """
33
- # Placeholder logic: Random failure or external flag?
34
- # For now, always healthy unless explicitly marked 'crashed' (which we can simulate)
35
- if hasattr(session, "simulate_crash") and session.simulate_crash:
36
- return False
37
- return True
38
-
39
- def trigger_apoptosis(self, session_id: str):
40
- """
41
- Execute the full death and rebirth cycle.
42
- """
43
- session = self.session_manager.get_session(session_id)
44
- if not session:
45
- print(f"Session {session_id} not found for apoptosis.")
46
- return
47
-
48
- print(f"💀 [Apoptosis] Starting lifecycle for Session {session_id}")
49
-
50
- # 1. Kill
51
- self._kill(session)
52
-
53
- # 2. Autopsy
54
- try:
55
- self._perform_autopsy(session)
56
- except Exception as e:
57
- print(f"⚠️ Autopsy failed: {e}")
58
-
59
- # 3. Reset
60
- self._reset_environment(session)
61
-
62
- print(
63
- f"✅ [Apoptosis] Task {session.model.issue_id} has been reset and analyzed."
64
- )
65
-
66
- def _kill(self, session: RuntimeSession):
67
- print(f"🔪 Killing worker process for {session.model.id}...")
68
- session.terminate()
69
- session.model.status = "crashed"
70
-
71
- def _perform_autopsy(self, victim_session: RuntimeSession):
72
- print(
73
- f"🔍 Performing autopsy on {victim_session.model.id} via Coroner agent..."
74
- )
75
-
76
- # Start a Coroner session
77
- coroner_session = self.session_manager.create_session(
78
- victim_session.model.issue_id, self.coroner_role
79
- )
80
-
81
- # Context for the coroner
82
- context = {
83
- "description": f"The previous agent session ({victim_session.model.id}) for role '{victim_session.model.role_name}' crashed. Please analyze the environment and the Issue {victim_session.model.issue_id}, then write a ## Post-mortem section in the issue file."
84
- }
85
-
86
- coroner_session.start(context=context)
87
- print("📄 Coroner agent finished analysis.")
88
-
89
- def _reset_environment(self, session: RuntimeSession):
90
- print("🧹 Resetting environment (simulated git reset --hard)...")
91
- # In real impl:
92
- # import subprocess
93
- # subprocess.run(["git", "reset", "--hard"], check=True)
94
- pass
95
-
96
- def _retry(self, session: RuntimeSession):
97
- print("🔄 Reincarnating session...")
98
- # Create a new session with the same role and issue
99
- new_session = self.session_manager.create_session(
100
- session.model.issue_id,
101
- # We need to find the original role object.
102
- # Simplified: assuming we can find it by name or pass it.
103
- # For now, just placeholder.
104
- session.worker.role,
105
- )
106
- new_session.start()
@@ -1,114 +0,0 @@
1
- ---
2
- name: flow-reviewer
3
- description: Reviewer 角色的标准化工作流 (Flow Skill)。定义从代码检出到评审完成的标准操作流程,确保代码质量和流程合规。
4
- type: flow
5
- role: reviewer
6
- version: 1.0.0
7
- ---
8
-
9
- # Reviewer Flow
10
-
11
- Reviewer 角色的标准化工作流,确保 "Checkout → Test → Review → Decide → Cleanup" 流程。
12
-
13
- ## 工作流状态机
14
-
15
- ```mermaid
16
- stateDiagram-v2
17
- [*] --> Checkout: 收到评审请求
18
-
19
- Checkout --> Test: 检出完成
20
- Checkout --> Checkout: 检出失败<br/>(环境检查)
21
-
22
- Test --> Review: 测试通过
23
- Test --> Test: 测试失败<br/>(记录问题)
24
-
25
- Review --> Approve: 代码 OK
26
- Review --> Reject: 发现问题
27
-
28
- Reject --> Checkout: 修复后重审
29
-
30
- Approve --> Cleanup: 批准
31
-
32
- Cleanup --> [*]: 清理完成
33
- ```
34
-
35
- ## 执行步骤
36
-
37
- ### 1. Checkout (检出)
38
-
39
- - **目标**: 获取待评审的代码
40
- - **检查点**:
41
- - [ ] 检出 PR/Branch
42
- - [ ] 确认与 Base 分支的差异
43
- - [ ] 检查环境配置
44
-
45
- ### 2. Test (测试)
46
-
47
- - **目标**: 验证功能正确性和测试覆盖
48
- - **检查点**:
49
- - [ ] 运行单元测试
50
- - [ ] 运行集成测试 (如适用)
51
- - [ ] 验证手动测试场景
52
- - [ ] 检查测试覆盖率报告
53
-
54
- ### 3. Review (代码审查)
55
-
56
- - **目标**: 检查代码质量和设计合理性
57
- - **检查清单**:
58
- - [ ] **功能**: 代码是否实现了需求?
59
- - [ ] **设计**: 架构是否合理?
60
- - [ ] **可读性**: 代码是否易于理解?
61
- - [ ] **测试**: 测试是否充分?
62
- - [ ] **文档**: 文档是否同步更新?
63
- - [ ] **合规**: 是否遵循项目规范?
64
-
65
- ### 4. Decide (决策)
66
-
67
- - **目标**: 做出批准或拒绝的决定
68
- - **选项**:
69
- - **Approve**: 代码可以合并
70
- - **Reject**: 需要修改,提供具体反馈
71
- - **Request Changes**: 小问题,可快速修复
72
-
73
- ### 5. Cleanup (清理)
74
-
75
- - **目标**: 完成评审后的环境清理
76
- - **检查点**:
77
- - [ ] 删除本地分支 (如适用)
78
- - [ ] 更新 Issue 状态
79
- - [ ] 记录评审意见到 Review Comments
80
-
81
- ## 决策分支
82
-
83
- | 条件 | 动作 |
84
- |------|------|
85
- | 测试失败 | Reject,要求修复测试 |
86
- | 代码风格问题 | Request Changes 或提供建议 |
87
- | 设计问题 | Reject,要求重新设计 |
88
- | 文档缺失 | Request Changes,要求补充 |
89
- | 修复后重审 | 返回 Checkout,重新执行流程 |
90
-
91
- ## 评审意见模板
92
-
93
- ```markdown
94
- ## Review Comments
95
-
96
- ### ✅ 优点
97
- -
98
-
99
- ### ⚠️ 建议
100
- -
101
-
102
- ### ❌ 必须修改
103
- -
104
-
105
- ### 📝 其他
106
- -
107
- ```
108
-
109
- ## 合规要求
110
-
111
- - **必须**: 所有测试通过才能 Approve
112
- - **必须**: 拒绝时必须提供具体反馈
113
- - **禁止**: 未经测试直接 Approve
114
- - **建议**: 使用 `monoco issue close --prune` 合并后清理
@@ -1,127 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: monoco-toolkit
3
- Version: 0.3.9
4
- Summary: Agent Native Toolkit for Monoco - Task Management & Kanban for AI Agents
5
- Project-URL: Homepage, https://monoco.io
6
- Project-URL: Repository, https://github.com/IndenScale/Monoco
7
- Project-URL: Documentation, https://monoco.io/docs
8
- Project-URL: Issues, https://github.com/IndenScale/Monoco/issues
9
- Author-email: Monoco Team <dev@monoco.io>
10
- License-Expression: MIT
11
- License-File: LICENSE
12
- Keywords: agent-native,ai-agents,cli,kanban,monoco,task-management,workflow
13
- Classifier: Development Status :: 3 - Alpha
14
- Classifier: Intended Audience :: Developers
15
- Classifier: License :: OSI Approved :: MIT License
16
- Classifier: Programming Language :: Python :: 3
17
- Classifier: Programming Language :: Python :: 3.10
18
- Classifier: Programming Language :: Python :: 3.11
19
- Classifier: Programming Language :: Python :: 3.12
20
- Classifier: Topic :: Office/Business :: Groupware
21
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
- Classifier: Topic :: Software Development :: Quality Assurance
23
- Requires-Python: >=3.10
24
- Requires-Dist: fastapi>=0.100.0
25
- Requires-Dist: httpx>=0.28.1
26
- Requires-Dist: prompt-toolkit>=3.0.0
27
- Requires-Dist: pydantic>=2.0.0
28
- Requires-Dist: pyyaml>=6.0
29
- Requires-Dist: rich>=13.0.0
30
- Requires-Dist: sse-starlette>=1.6.0
31
- Requires-Dist: typer[all]>=0.9.0
32
- Requires-Dist: uvicorn[standard]>=0.20.0
33
- Requires-Dist: watchdog>=6.0.0
34
- Description-Content-Type: text/markdown
35
-
36
- # Monoco Toolkit
37
-
38
- [![Version](https://img.shields.io/pypi/v/monoco-toolkit)](https://pypi.org/project/monoco-toolkit/)
39
- [![License](https://img.shields.io/github/license/IndenScale/Monoco)](LICENSE)
40
-
41
- > **The Operating System for Agentic Engineering.**
42
- >
43
- > Stop chatting. Start building.
44
- > Monoco grounds your AI Agents into deterministic, validatable, and shippable engineering workflows.
45
-
46
- ---
47
-
48
- ## ⚡️ The Gap: "Chat" is not Engineering.
49
-
50
- Generating code is easy. **Engineering**—managing dependencies, maintaining state, validation, and version control—is hard.
51
-
52
- Most Agent workflows today are fragile "chats". Monoco turns them into **Software Engineering Processes**. It acts as the "BizOps" layer for your Agents, ensuring that every line of code generated is tracked, reviewed, and aligned with the project roadmap.
53
-
54
- ## 🌟 Core Philosophy
55
-
56
- ### 1. Co-pilot by Design
57
-
58
- **Just-enough Automation.**
59
- Monoco abstracts away the tedious details (Git ops, state tracking) while keeping you securely in the driver's seat. Agents can suggest and build, but **you** always have the final say on what gets merged.
60
-
61
- ### 2. Battle-Tested Best Practices
62
-
63
- **Senior Engineer Intuition.**
64
- Monoco enforces **Issue Driven Development (IDD)** and standard **Git Workflows**. We bake the rigorous habits of effective software teams into the Agent's core loop, ensuring every line of code is traceable and reviewed.
65
-
66
- ### 3. Radical Transparency (Dogfooding)
67
-
68
- **Process as Product.**
69
- Monoco is built by Monoco. We believe in open-sourcing not just the code, but the engineering process itself. Every design decision, interaction log, and failure is public—providing a live blueprint for Agentic Engineering.
70
-
71
- ## 🚀 Quick Start
72
-
73
- ### 1. Installation
74
-
75
- Monoco is available as a Python CLI tool.
76
-
77
- ```bash
78
- pip install monoco-toolkit
79
- ```
80
-
81
- ### 2. Workspace Initialization
82
-
83
- Turn any directory into a Monoco Workspace. This creates the `.monoco` config and the `Issues/` directory.
84
-
85
- ```bash
86
- monoco init
87
- ```
88
-
89
- ### 3. Agent Synchronization
90
-
91
- **Crucial Step**: This injects the "Monoco System Neural Network" (System Prompts & Skills) into your agent configuration files (e.g., `GEMINI.md`, `CLAUDE.md`).
92
-
93
- ```bash
94
- monoco sync
95
- ```
96
-
97
- ### 4. The Engineering Loop (Agent-First)
98
-
99
- In Monoco, you don't need to memorize CLI commands. **The Agent is your DevOps Engineer.**
100
-
101
- 1. **Chat**: Tell your Agent in the chatbox (e.g., _"Implement Dark Mode"_).
102
- 2. **Plan**: The Agent investigates and proposes an **Issue Ticket** for your review.
103
- 3. **Build**: Once approved, the Agent creates a branch, writes code, and submits changes.
104
- 4. **Ship**: You accept the results. The Agent handles the merge and closure.
105
-
106
- ---
107
-
108
- ## 📦 Extension for VS Code
109
-
110
- The **Monoco VS Code Extension** is the primary visual interface for the toolkit.
111
-
112
- - **Install from Marketplace**: Search for `Monoco`.
113
- - **Keybinding**: `Cmd+Shift+P` -> `Monoco: Open Kanban Board`.
114
-
115
- ## 🛠️ Tech Stack & Architecture
116
-
117
- - **Core**: Python (CLI & Logic Layer)
118
- - **Extension**: TypeScript (VS Code Client & LSP)
119
- - **Data**: Local Filesystem (Markdown/YAML)
120
-
121
- ## 🤝 Contributing
122
-
123
- Monoco is designed for the community. We welcome contributions to both the core CLI and the VS Code extension.
124
-
125
- ## 📄 License
126
-
127
- MIT © [IndenScale](https://github.com/IndenScale)
@@ -1,115 +0,0 @@
1
- monoco/main.py,sha256=JVrKvrd2U6lOJBu9O6bSvgsUXCPU6_8AFV_vgjiB8Iw,5616
2
- monoco/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- monoco/cli/project.py,sha256=FqLaDD3hiWxa0_TKzxEF7PYH9RPsvmLyjO3NYVckgGs,2737
4
- monoco/cli/workspace.py,sha256=vcUHjSarRZk8k3SNjtLSVD2VUPhBIUyx5J1OPtGa7-Q,1541
5
- monoco/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- monoco/core/config.py,sha256=ftO_hKCpBnGXerEVVl6I2KQxLjz-qcB6GQbuZK9VSv8,15282
7
- monoco/core/execution.py,sha256=7522s7uVWiNdMKtWlIb8JHzbAcJgLVuxUFp_6VmhWNQ,1801
8
- monoco/core/feature.py,sha256=bcK0C1CaQgNLcdMF0RuniaaQRCYSA-0JdOpQz9W_1xM,1968
9
- monoco/core/git.py,sha256=d3A8L30nlEj0F1pwSHk_cOoRYi1dMCiZc7KD70ViMyw,8335
10
- monoco/core/githooks.py,sha256=QY4c74LIYDtcjtWYax1PrK5CtVNKYTfVVVBOj-SCulo,1826
11
- monoco/core/injection.py,sha256=zs9RpXaBfwP-fbwOU_X2nm-AH94tQN9tVWXNtV4tCYM,6887
12
- monoco/core/integrations.py,sha256=3RAx4OYgbKHWXR9AAFgXuk-Z_HlztK6kNDFWBJ6tlaA,7914
13
- monoco/core/lsp.py,sha256=GOrHzubkMWS3iBpP4H2fTFW-0JXa6D2YlU0ZEhp5zmY,2018
14
- monoco/core/output.py,sha256=ZlUydZ65FIP5a32_eESIIvMrhcSwghIqZ3N23OSx6Ss,3878
15
- monoco/core/registry.py,sha256=WF02zg_3StPTYupi5FxEndZyq-6rcKxajZOv1Ob4D1Y,1264
16
- monoco/core/setup.py,sha256=CYADZjUF1tNu6OQ5oVZ_3X_HN7TxnyrvOWbQwluIA_E,11490
17
- monoco/core/skills.py,sha256=OvvKViDw2GiuYHEANSNX_ry6VIdDvd4QPmExDUQv9iU,22546
18
- monoco/core/state.py,sha256=dfoTH1Sj_TSjtTEXuv4w0ZOp_Fd30XNymVSZo30Xshg,1820
19
- monoco/core/sync.py,sha256=1p37pTfGBanogzcLhdTfMTxDqq79B5iiwiPS4fiuQaA,8378
20
- monoco/core/telemetry.py,sha256=GQDbtgrZwAL1ZpjgbJZuawbTyH6J0NjMXMi4ogq-Ang,2915
21
- monoco/core/workspace.py,sha256=H_PHD5A0HZFq841u1JtLoFjkXdQg9D6x6I7QcFtJge4,3000
22
- monoco/core/hooks/__init__.py,sha256=8dWjDSwJG9JdghWBxgk7zH1U1FlJCiRo66mfbWcDK3M,437
23
- monoco/core/hooks/base.py,sha256=GQ59E_VX8RmtWezyg5sMFqmKRDsD7PJflcAb2TTy8S8,3276
24
- monoco/core/hooks/context.py,sha256=A0xwwU6JcsBH3t4h9jlodAdEMuajU8QeW_3bSMTWfPY,4005
25
- monoco/core/hooks/registry.py,sha256=O_IO1c7R9NbHk3F-xtLowQQkzPBs6qM1Xii398ZfbNU,7100
26
- monoco/core/hooks/builtin/__init__.py,sha256=R_e04bOLnBKy7pX5QVBkDjgUNeQ82o1IHq--CKgIX_I,177
27
- monoco/core/hooks/builtin/git_cleanup.py,sha256=PTrc9Ud1P4MCY-zpptBWqlv7e618uPuaODIFgJi4eIw,9700
28
- monoco/core/hooks/builtin/logging_hook.py,sha256=F5iN3zeczEeoumK0nUXf6ZVrO4_5gcA9dne8y4KSiXo,2796
29
- monoco/core/resources/en/AGENTS.md,sha256=vf9z43UU-LPwYKPWCrtw8TpWrmkeZ6zfMyHP4Q9JqdQ,1178
30
- monoco/core/resources/en/SKILL.md,sha256=wBXNpPqATOxO8TGiOM8S091gMNZ8du_WhQubO6TfNyg,3504
31
- monoco/core/resources/zh/AGENTS.md,sha256=KBNZSCPBIals6jDdvG5wJgjZuswi_1nKljggJSMtfy8,1156
32
- monoco/core/resources/zh/SKILL.md,sha256=1D8_FqzDVqowZWk4Qkyx4me53NTd8qihP20gaCH6gJY,3153
33
- monoco/daemon/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- monoco/daemon/app.py,sha256=tAtLxzw_aRzU0r6Bk9lhshaCyqZRkQKUJmg5FDi7-1c,15431
35
- monoco/daemon/commands.py,sha256=2AGsqDZ0edg34KuAGZrTvKlJZ1fhxNXgus7vGn2km4c,1115
36
- monoco/daemon/models.py,sha256=E-qwebvD-Z-VixFEl067ZDENGmAVOjrin9XV6HLSI5k,988
37
- monoco/daemon/reproduce_stats.py,sha256=LghJ8o1jTeDpA1zVPI2vF0okGU3h4esEI1thNa6shKI,1196
38
- monoco/daemon/services.py,sha256=jkkDwX5mBRiy4DZPNxWmHNe_EE-hiX53FoIlWGiCBoM,5070
39
- monoco/daemon/stats.py,sha256=XTtuFWx68O1OA44SmN0BGVa6sswts2ExmkiavUzCYiA,4800
40
- monoco/features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
- monoco/features/agent/__init__.py,sha256=DccKv_HfN51eHO5d03Irzy2lNlnxmohoE8BEEvceX1o,559
42
- monoco/features/agent/cli.py,sha256=L4dyjz8q6dZcQCPLF0e-AmshTRCUU3VhWmN6E3jk7rU,10339
43
- monoco/features/agent/config.py,sha256=fPClrGeBriQm4oD5HCpg0ePQ3eBIOOLkAaORPi_fS8U,2685
44
- monoco/features/agent/defaults.py,sha256=sxUm3AHLCi_x0iq7pzWpctSPNA12cX6P4s7LcCBmOUQ,2519
45
- monoco/features/agent/engines.py,sha256=ICKw4Kfme6UNl_JLJvT7hADKHo76Yr8wpFFEvtEV6z4,3799
46
- monoco/features/agent/flow_skills.py,sha256=9YQZvhebS_J2oERsGMfWd6WjDKkAWGzlJ0guIrYgsMw,9079
47
- monoco/features/agent/manager.py,sha256=0pm0t95uYTOqcMhQmwHhAM3GlHWsUYMa5sMMxnWDcyE,3009
48
- monoco/features/agent/models.py,sha256=og2ptQvM2gNqattaPMyhaGKaO30wd9h6V3kB6X3xpgA,848
49
- monoco/features/agent/reliability.py,sha256=zXC-WKYCo46a5w_i1RAsAb1rbcOEPuj7Cqpv4c9pDks,3846
50
- monoco/features/agent/session.py,sha256=ILW0JGY6Nsi_-PqS25z63LqhuczEyZyleAbXfqEtZRo,4388
51
- monoco/features/agent/worker.py,sha256=63Lllm01pNZncZRDEr2bYh8u8qEb3iNKP1oxIVhoEOI,4538
52
- monoco/features/agent/resources/skills/flow_engineer/SKILL.md,sha256=wPIh9Tl6jCau2yKUeMZ4ZcvuVZ3XfToooNH7GyHtkUk,2643
53
- monoco/features/agent/resources/skills/flow_manager/SKILL.md,sha256=GGx1OkhbaN6YIwxXERo_J91-SqIrSAtp96w-cdEm1sI,2582
54
- monoco/features/agent/resources/skills/flow_reviewer/SKILL.md,sha256=waV-sXpPyO3ZKWvfsuQP8AA9ClzMtac-NZEVggQcuXc,2746
55
- monoco/features/config/commands.py,sha256=i6_fKhSGLeO8RCbWrYKxelFgaHWcPiQERS2uxUdq7H0,4894
56
- monoco/features/i18n/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
- monoco/features/i18n/adapter.py,sha256=-ifDKQ7UH8tDoOdB_fSKoIrNRJROIPNuzZor2FPJVfo,932
58
- monoco/features/i18n/commands.py,sha256=NJ2lZRRjiTW-3UbqxhEKURdWSDxQPkfnBAUgnwoVCL8,8416
59
- monoco/features/i18n/core.py,sha256=bnEV9D7KgxbC5I3l-1RN1-H8hek1loDL6KFXzmdq0pQ,9658
60
- monoco/features/i18n/resources/en/AGENTS.md,sha256=zzuF7BW6x8Mj6LZZmeM6wTbG5CSCDMShf4rwtN7XITg,197
61
- monoco/features/i18n/resources/en/SKILL.md,sha256=Z8fAAqeMvpLDw1D_9AzZIykS5-HLVM9nnlRZLWBTPqM,2203
62
- monoco/features/i18n/resources/skills/i18n_scan_workflow/SKILL.md,sha256=d7mS9i_xOHCaD-qugqnIoVer1Ei5h4VgE4NQGSGtJEE,2748
63
- monoco/features/i18n/resources/zh/AGENTS.md,sha256=lKkwLLCADRH7UDq9no4eQY2sRfJrb64JoZ_HNved8vA,175
64
- monoco/features/i18n/resources/zh/SKILL.md,sha256=Wynk7zVBW7CO0_6AEQNUvlD_3eMW_7EPnzEn9QUaiDs,1884
65
- monoco/features/issue/adapter.py,sha256=4dzKg4-0XH63uORoh8qcolvKxJR6McBDIYxYEcZJJkA,1204
66
- monoco/features/issue/commands.py,sha256=2iyjzRdtRiWcc6GeZHa-tDZHOHcsJqJhYnQKZ8tv54o,50578
67
- monoco/features/issue/core.py,sha256=4RY4AKhc2vpP94JHk9WtnaVFdQt1E_spUmqviK_JnLQ,55522
68
- monoco/features/issue/criticality.py,sha256=Bw0xH0vpx8z59bL-WQjfy4a5zmjXNM0f-aWBzQ5JZCA,18931
69
- monoco/features/issue/domain_commands.py,sha256=eatSF_uZp4nGpVr2PIgb00MWfEBm0OnyAd4JvUJEAAA,1535
70
- monoco/features/issue/domain_service.py,sha256=bEs_WXOWmotgIR-lGwyWekF4nonvjsgrK1YG3pyVfwk,2564
71
- monoco/features/issue/git_service.py,sha256=57FSWiY9qHzOWw_e-IOKinOsiqVJz-ycE1zRtRWuBw8,5956
72
- monoco/features/issue/linter.py,sha256=EUVsnucLIo32adu2TNP6vFwlUvWrwj18cNN9viRr-7U,38697
73
- monoco/features/issue/migration.py,sha256=i0xlxZjrpmuHGHOAIN4iu31EwwVIvZn7yjveS-kU22c,4896
74
- monoco/features/issue/models.py,sha256=xkM4Bnot2iv8NnWNdfFopIlyWtR1bZK52IseUk_BsEo,8976
75
- monoco/features/issue/monitor.py,sha256=vZN0TbR3V5fHKHRGkIhimO6UwWcwYjDHQs2qzjEG174,3549
76
- monoco/features/issue/resolver.py,sha256=mAU9s7TNNHY9A2278JTwJvxU-jalGKTDJfJdjONev3E,5655
77
- monoco/features/issue/test_priority_integration.py,sha256=pTBg3Wjv6lLYxWL6vjbo2NGVE-X0MRB3Ha8bqObZrU4,2791
78
- monoco/features/issue/test_resolver.py,sha256=luFhK37DUvh4a3TTcFYVO-oOIJljQVCSYicwSWyDleQ,2530
79
- monoco/features/issue/validator.py,sha256=TgXg9MolCI8kPzjaqGVfXMIekaubOc_vTybfakGjteE,33127
80
- monoco/features/issue/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
- monoco/features/issue/domain/lifecycle.py,sha256=oIuLYTVy1RRHGngAzbNU4kTWOHMBhjuw_TuYCwNqMJw,4991
82
- monoco/features/issue/domain/models.py,sha256=s4gezUIlSlKxwJ3Byfxtsemj2-qsu4wRiXTNfaesSYQ,6830
83
- monoco/features/issue/domain/parser.py,sha256=axfB9BjY-m4DQqYwTQBm_38plOidZaDqFtsIejW_kYI,9095
84
- monoco/features/issue/domain/workspace.py,sha256=nyTEFNmpLPuX7nssMCBiFI1XBhY9zbqG877Ppp_s0Fg,3658
85
- monoco/features/issue/engine/__init__.py,sha256=-SBvzjlZJz0O-IB1c95d9pbhr3lydJNLq2vhnfkZ8PQ,747
86
- monoco/features/issue/engine/config.py,sha256=7enjPW4J_fpuK08ov6LpfQ-9h2T1D4Hc5yIXOPuQvLs,5761
87
- monoco/features/issue/engine/machine.py,sha256=iFZMZyD0rDAg3AMd9JtXZ0CuuQ6dPuv9wXLgvtudlTQ,8668
88
- monoco/features/issue/engine/models.py,sha256=595Sx3ncrpg_PhnbBLthohAvuhnjA-_9oXcrsT6Lv0k,574
89
- monoco/features/issue/lsp/__init__.py,sha256=8bl8-WzSj3C4SkPKgVGnCeyemmvHVWBsuMZsJuJggG8,77
90
- monoco/features/issue/lsp/definition.py,sha256=cF6Quw1OztuKMJ1zLvgA_ek7lTAdzHF0m4LVznpbAPw,3203
91
- monoco/features/issue/resources/en/AGENTS.md,sha256=eHHXjLRDAV7IKrYPQSilxu0X5D0SBCAFBXmlSoc9r48,1278
92
- monoco/features/issue/resources/en/SKILL.md,sha256=_soSTGcoHjwdv5N-X31uVsmdmvS4CUSfTqWNOHTZt_0,5556
93
- monoco/features/issue/resources/skills/issue_lifecycle_workflow/SKILL.md,sha256=efaneBOYrEGlsk4egyf_KupLGf_meRDmIFLx3b9VYYk,4476
94
- monoco/features/issue/resources/zh/AGENTS.md,sha256=oRHHqeDYx6aEc5FfdL7a-zqT7uh4SYIYt8QBRKEKrYM,1351
95
- monoco/features/issue/resources/zh/SKILL.md,sha256=Gx6nuGciNh63QiyZ8kXU8PhaNidM2oiKYAr5GulEmes,6866
96
- monoco/features/memo/__init__.py,sha256=LC5vwsJw-kwzd5O5oeRo-FNSbnZnuFynanec-hA72nw,88
97
- monoco/features/memo/adapter.py,sha256=XBOGkP66AMD6Pelz-heH_EhxkYoMRLaH8qsYnX9NSLk,1117
98
- monoco/features/memo/cli.py,sha256=rw2nEJ3P0eJvjuv4WLOwV6aNM8Dt2J_2R2py_FgHlDg,3329
99
- monoco/features/memo/core.py,sha256=wq4bf2uS3axoZ5Xsm-YhJZGL8bu1EjcrQuwXgQbPqOk,4193
100
- monoco/features/memo/resources/skills/note_processing_workflow/SKILL.md,sha256=JE3LEhQYRuvU_GAQ_C6Oob4t-BEY7OWxGpBM6mkgato,4286
101
- monoco/features/memo/resources/zh/AGENTS.md,sha256=AFlzvhGxAk77np-E8XLb-tkWJCo0bLGItCrV0IiXdHQ,292
102
- monoco/features/memo/resources/zh/SKILL.md,sha256=9J_tAM-HuMEgOtZ7sVMp-Qjg2heVJvS2ovLro4Msh1M,2143
103
- monoco/features/spike/adapter.py,sha256=ZIpw-xNVoA2IIP18dbR-dmQGbQmK5ua_P-uGXuDjCeI,1021
104
- monoco/features/spike/commands.py,sha256=EuJ7trDaobIe7ae7pJ-ftpo_cO8-19R_fAZZCh2JcMg,3871
105
- monoco/features/spike/core.py,sha256=OuNWXQ-cBttP2oIF0B5iy0aEUH2MUMyGANG8ayEmjPo,4120
106
- monoco/features/spike/resources/en/AGENTS.md,sha256=NG3CMnlDk_0J8hnRUcueAM9lgIQr_dZ42R_31-LC48E,306
107
- monoco/features/spike/resources/en/SKILL.md,sha256=qKDcVh0D3pDRvfNLh1Bzo4oQU3obpl4tqdlzxeiWYMk,1911
108
- monoco/features/spike/resources/skills/research_workflow/SKILL.md,sha256=tv9dIEfRNKrfxa3dI657QZDkMO-4-X_ZZRm6V3WS3VM,3333
109
- monoco/features/spike/resources/zh/AGENTS.md,sha256=5RHNl7fc3RdYYTFH483ojJl_arGPKkyYziOuGgFbqqg,290
110
- monoco/features/spike/resources/zh/SKILL.md,sha256=Q82e9lCQOAYIwBs5rGnvlVUDq7bp0pz8yvO10KTWFYQ,1710
111
- monoco_toolkit-0.3.9.dist-info/METADATA,sha256=OgCaiDGMobCNpQTm5lksMX4VxxZmBmuuQUht5LBY4sc,4732
112
- monoco_toolkit-0.3.9.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
113
- monoco_toolkit-0.3.9.dist-info/entry_points.txt,sha256=iYj7FWYBdtClU15-Du1skqD0s6SFSIhJvxJ29VWp8ng,43
114
- monoco_toolkit-0.3.9.dist-info/licenses/LICENSE,sha256=ACAGGjV6aod4eIlVUTx1q9PZbnZGN5bBwkSs9RHj83s,1071
115
- monoco_toolkit-0.3.9.dist-info/RECORD,,