bog-agents-cli 0.7.2__tar.gz → 0.7.4__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.
Files changed (1493) hide show
  1. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/CHANGELOG.md +22 -0
  2. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/PKG-INFO +64 -14
  3. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/README.md +52 -7
  4. bog_agents_cli-0.7.4/bog_agents_cli/_proc.py +96 -0
  5. bog_agents_cli-0.7.4/bog_agents_cli/_version.py +3 -0
  6. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/agent.py +33 -4
  7. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/app.py +20 -0
  8. bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/go/code-reviewer/AGENTS.md +43 -0
  9. bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/node/code-reviewer/AGENTS.md +49 -0
  10. bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/node/react-ink-artist/AGENTS.md +31 -0
  11. bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/node/test-author/AGENTS.md +30 -0
  12. bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/python/code-reviewer/AGENTS.md +47 -0
  13. bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/python/refactorer/AGENTS.md +28 -0
  14. bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/python/test-author/AGENTS.md +30 -0
  15. bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/rust/code-reviewer/AGENTS.md +44 -0
  16. bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/rust/test-author/AGENTS.md +25 -0
  17. bog_agents_cli-0.7.4/bog_agents_cli/cmd_call.py +193 -0
  18. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_daemon.py +265 -23
  19. bog_agents_cli-0.7.4/bog_agents_cli/cmd_verify.py +543 -0
  20. bog_agents_cli-0.7.4/bog_agents_cli/cross-platform-notes.md +83 -0
  21. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/daemon_client.py +3 -6
  22. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/doctor.py +140 -0
  23. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/local_context.py +144 -2
  24. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/main.py +341 -5
  25. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/model_config.py +381 -20
  26. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/non_interactive.py +324 -16
  27. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/provider_catalog.py +71 -7
  28. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/server.py +21 -6
  29. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/skills/commands.py +4 -1
  30. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/subagents.py +72 -9
  31. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/system_prompt.md +5 -0
  32. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/ui.py +13 -0
  33. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/pyproject.toml +27 -8
  34. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_agent.py +4 -0
  35. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_model_config.py +225 -0
  36. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_server.py +9 -0
  37. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/uv.lock +209 -178
  38. bog_agents_cli-0.7.2/bog_agents_cli/_version.py +0 -3
  39. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.gitignore +0 -0
  40. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/00biyvlk +0 -0
  41. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/01grv61c +0 -0
  42. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/01u5g92p +0 -0
  43. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/01yhe5ym +0 -0
  44. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/03csiihr +0 -0
  45. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/05mx6k_r +0 -0
  46. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/06e4z4lg +0 -0
  47. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/06fc55z4 +0 -0
  48. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/06pqqycs +0 -0
  49. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/08foacxg +0 -0
  50. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/08v9uem9 +0 -0
  51. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0_1vycus +0 -0
  52. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0a9t6pej +0 -0
  53. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0amu4qwl +0 -0
  54. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0anjksvn +0 -0
  55. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0bitbfc2 +0 -0
  56. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0cteiok5 +0 -0
  57. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0d50717p +0 -0
  58. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0dvkctus +0 -0
  59. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0e_2wg_1 +0 -0
  60. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0ephvrc8 +0 -0
  61. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0fs5r980 +0 -0
  62. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0fwm26rp +0 -0
  63. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0fze2qiz +0 -0
  64. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0gs8exro +0 -0
  65. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0hs4lhd1 +0 -0
  66. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0ixjc857 +0 -0
  67. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0jfqdcwv +0 -0
  68. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0jwlrx4k +0 -0
  69. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0mi0a0al +0 -0
  70. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0nwyj_6o +0 -0
  71. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0pv2tqa0 +0 -0
  72. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0qosy1xg +0 -0
  73. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0rbcua0o +0 -0
  74. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0rbyc0bq +0 -0
  75. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0roj9_ob +0 -0
  76. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0rzv4m6w +0 -0
  77. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0skuhwil +0 -0
  78. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0sqlkc39 +0 -0
  79. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0t14zupr +0 -0
  80. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0t4qim4z +0 -0
  81. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0tlnyisp +0 -0
  82. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0u6f92nn +0 -0
  83. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0vi3l3m5 +0 -0
  84. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0votc5ni +0 -0
  85. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0vtyv68j +0 -0
  86. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0xl1wfj0 +0 -0
  87. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/10j1bgx4 +0 -0
  88. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/10m3i3px +0 -0
  89. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/12c4u5gt +0 -0
  90. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/145ysr5g +0 -0
  91. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/151_ytj9 +0 -0
  92. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/17aa2j85 +0 -0
  93. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/18gj5rbc +0 -0
  94. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1a6su3gr +0 -0
  95. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1aljfgt7 +0 -0
  96. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1chid8bp +0 -0
  97. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1clcs3sa +0 -0
  98. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1cw0sbhp +0 -0
  99. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1d7kq6q9 +0 -0
  100. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1h3q4x6p +0 -0
  101. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1i8z6033 +0 -0
  102. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1j2demuk +0 -0
  103. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1jsmdin_ +0 -0
  104. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1me132nj +0 -0
  105. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1osmbnnn +0 -0
  106. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1owsb_pm +0 -0
  107. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1pkhy7jm +0 -0
  108. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1smk6csq +0 -0
  109. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1t6ooczt +0 -0
  110. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1unryq2m +0 -0
  111. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1v2c_g5s +0 -0
  112. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1wc3nic5 +0 -0
  113. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1wwzv2ap +0 -0
  114. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1yz8emdm +0 -0
  115. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1zpq2bp0 +0 -0
  116. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/227qgthr +0 -0
  117. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/23fo7uwq +0 -0
  118. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/23nlr4tl +0 -0
  119. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/25lvyq3g +0 -0
  120. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/26ou16dp +0 -0
  121. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/26wl65bl +0 -0
  122. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/27ip60p1 +0 -0
  123. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/29j36l6i +0 -0
  124. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2bk5p5gm +0 -0
  125. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2blqg9ls +0 -0
  126. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2c7pbiud +0 -0
  127. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2d8rtb5q +0 -0
  128. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2i8kdsfg +0 -0
  129. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2ippt7pk +0 -0
  130. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2k4nk5rz +0 -0
  131. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2o7yz3ye +0 -0
  132. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2oo38iql +0 -0
  133. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2p08c9sj +0 -0
  134. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2qsxwv6s +0 -0
  135. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2thjiqyk +0 -0
  136. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2umxbq74 +0 -0
  137. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2uvc2adz +0 -0
  138. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2w8baf3p +0 -0
  139. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2wx2xdnu +0 -0
  140. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2y0dsrgi +0 -0
  141. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2ydw6c7e +0 -0
  142. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2yicloom +0 -0
  143. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/30wd7p2m +0 -0
  144. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/311ght6y +0 -0
  145. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/31iadu1m +0 -0
  146. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/32pwoi86 +0 -0
  147. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/34puhf4p +0 -0
  148. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/35qf76l3 +0 -0
  149. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3830svnc +0 -0
  150. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/39z836o9 +0 -0
  151. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3a4ckrhu +0 -0
  152. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3ayv32dq +0 -0
  153. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3d_pi6yw +0 -0
  154. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3e5smk2l +0 -0
  155. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3gbz2uwf +0 -0
  156. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3gijtx0a +0 -0
  157. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3gka4t20 +0 -0
  158. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3gy5iofz +0 -0
  159. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3itd9xup +0 -0
  160. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3jcurrbs +0 -0
  161. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3jo38o_p +0 -0
  162. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3k4dkmu8 +0 -0
  163. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3l9gxdvo +0 -0
  164. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3nc5h1k5 +0 -0
  165. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3ojbtlig +0 -0
  166. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3oqx2tam +0 -0
  167. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3ovgmmt4 +0 -0
  168. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3p6vd32e +0 -0
  169. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3pxqj38l +0 -0
  170. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3py_ahxa +0 -0
  171. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3qropv9i +0 -0
  172. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3td8tbfm +0 -0
  173. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3tynolsl +0 -0
  174. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3ur2rl5v +0 -0
  175. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3wvlcm54 +0 -0
  176. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3xwh903c +0 -0
  177. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3yfci_h1 +0 -0
  178. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/43oh54h2 +0 -0
  179. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/48aeg384 +0 -0
  180. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4_jm2pqf +0 -0
  181. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4aus96a8 +0 -0
  182. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4b2umvk9 +0 -0
  183. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4bg2zfb4 +0 -0
  184. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4gwahht7 +0 -0
  185. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4kdvuzrg +0 -0
  186. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4ld6v14e +0 -0
  187. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4m436izt +0 -0
  188. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4ma4yl_b +0 -0
  189. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4n6lj2bx +0 -0
  190. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4ngfrq2u +0 -0
  191. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4o9_5fwr +0 -0
  192. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4pszhiew +0 -0
  193. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4q3odm9p +0 -0
  194. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4qu1lio2 +0 -0
  195. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4r8ruud8 +0 -0
  196. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4rvexupm +0 -0
  197. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4t9v1wkb +0 -0
  198. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4wmo11ib +0 -0
  199. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4x3v67_p +0 -0
  200. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4yxo8rs5 +0 -0
  201. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4zd9xk40 +0 -0
  202. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4zwx4a3_ +0 -0
  203. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/52ppcm_y +0 -0
  204. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/53kqh74g +0 -0
  205. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/55jcmw1v +0 -0
  206. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/575_k2kq +0 -0
  207. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/591vmg11 +0 -0
  208. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/59cdi0u6 +0 -0
  209. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/59pfrxue +0 -0
  210. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5a76rcsl +0 -0
  211. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5bso_ec8 +0 -0
  212. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5dcc6ex1 +0 -0
  213. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5f8ckx2h +0 -0
  214. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5inrx85r +0 -0
  215. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5jkrqwt8 +0 -0
  216. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5kk7if9j +0 -0
  217. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5m7uds04 +0 -0
  218. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5mjjjsf7 +0 -0
  219. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5nf5rfdi +0 -0
  220. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5nik6v68 +0 -0
  221. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5ody33vs +0 -0
  222. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5oxtzc4o +0 -0
  223. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5rig_0e4 +0 -0
  224. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5t73qu3p +0 -0
  225. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5u0n2swj +0 -0
  226. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5u6q3ujn +0 -0
  227. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5uv2i2w_ +0 -0
  228. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5wuh51z8 +0 -0
  229. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5ya815ih +0 -0
  230. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5yhn6h87 +0 -0
  231. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/63ifpn2k +0 -0
  232. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/648_osbe +0 -0
  233. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/654suau7 +0 -0
  234. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/655112no +0 -0
  235. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/66in7phw +0 -0
  236. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/69f94xak +0 -0
  237. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6arqtdch +0 -0
  238. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6bpvypsg +0 -0
  239. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6epj4wnn +0 -0
  240. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6f1nqh68 +0 -0
  241. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6gu60prs +0 -0
  242. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6hml0_zq +0 -0
  243. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6ho7wsq5 +0 -0
  244. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6q5g1ap6 +0 -0
  245. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6qg_3tzq +0 -0
  246. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6s4j7r0t +0 -0
  247. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6scmn968 +0 -0
  248. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6u00rigk +0 -0
  249. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6uw8bxdf +0 -0
  250. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6y2x3c1p +0 -0
  251. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6y8coy12 +0 -0
  252. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6yqnnjgo +0 -0
  253. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6zzwgao2 +0 -0
  254. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/714_069q +0 -0
  255. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/71abvljb +0 -0
  256. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/71b6lzg7 +0 -0
  257. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/73dq8kr8 +0 -0
  258. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/76t8q6lz +0 -0
  259. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/77fnwzke +0 -0
  260. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/795g8vzh +0 -0
  261. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7_qloyq7 +0 -0
  262. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7a63he6u +0 -0
  263. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7aqe1q1m +0 -0
  264. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7c3uz_6y +0 -0
  265. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7daylg_x +0 -0
  266. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7e0v8h2p +0 -0
  267. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7e7v8jem +0 -0
  268. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7f496lil +0 -0
  269. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7ft76pjd +0 -0
  270. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7hxlpv38 +0 -0
  271. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7jd3veys +0 -0
  272. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7jgw3odg +0 -0
  273. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7jq4d795 +0 -0
  274. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7kg5hvxu +0 -0
  275. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7mg1_53g +0 -0
  276. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7o5ydypg +0 -0
  277. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7ppplk4_ +0 -0
  278. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7pvtvmau +0 -0
  279. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7qi3l9ys +0 -0
  280. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7qqxxq6d +0 -0
  281. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7ss8n_1m +0 -0
  282. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7u9f0s3_ +0 -0
  283. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7uia7nat +0 -0
  284. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7wkiw8be +0 -0
  285. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7wu7t0z0 +0 -0
  286. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7xc_7hbx +0 -0
  287. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7xvkd5sc +0 -0
  288. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7zewe7oa +0 -0
  289. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/83khvhwi +0 -0
  290. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/875i8euw +0 -0
  291. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8777nvsv +0 -0
  292. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/87f6us2i +0 -0
  293. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8_qmx7kr +0 -0
  294. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8ad0t96q +0 -0
  295. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8d_fibmq +0 -0
  296. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8din2kkr +0 -0
  297. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8fsg4ws_ +0 -0
  298. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8gnjbx40 +0 -0
  299. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8hitcig3 +0 -0
  300. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8k_zixrv +0 -0
  301. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8kbrhv5h +0 -0
  302. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8lqoptsi +0 -0
  303. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8m40n8g_ +0 -0
  304. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8m8s97xt +0 -0
  305. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8nhah1l2 +0 -0
  306. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8qbih61v +0 -0
  307. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8qsmuys0 +0 -0
  308. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8r04nvvz +0 -0
  309. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8t45o5m1 +0 -0
  310. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8tqmhq7i +0 -0
  311. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8vjshhcf +0 -0
  312. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8ysxisjm +0 -0
  313. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8zytooyd +0 -0
  314. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/91344o7x +0 -0
  315. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/92j3cc32 +0 -0
  316. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/938wce8b +0 -0
  317. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/96ee2yqj +0 -0
  318. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/97edc1tm +0 -0
  319. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9_hdbijy +0 -0
  320. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9_izf7hk +0 -0
  321. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9a9qltc_ +0 -0
  322. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9ae8i682 +0 -0
  323. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9bqnw0g_ +0 -0
  324. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9dttc49k +0 -0
  325. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9jlb3ut4 +0 -0
  326. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9jmscsm0 +0 -0
  327. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9lgyimyy +0 -0
  328. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9lphvkqt +0 -0
  329. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9n5x4jtc +0 -0
  330. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9nkehywl +0 -0
  331. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9pwm9qeb +0 -0
  332. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9sarjvpz +0 -0
  333. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9w95vg1i +0 -0
  334. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9x1tukc9 +0 -0
  335. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9x8x8fdm +0 -0
  336. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9y569eij +0 -0
  337. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9z7ggh60 +0 -0
  338. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_1ah22m_ +0 -0
  339. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_4_lx_a9 +0 -0
  340. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_4pjns6n +0 -0
  341. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_7pchob3 +0 -0
  342. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_9ehjfwi +0 -0
  343. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_avuvkrs +0 -0
  344. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_c0v5rjz +0 -0
  345. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_eolqu20 +0 -0
  346. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_gedgrhl +0 -0
  347. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_h82m8qd +0 -0
  348. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_jst5xjk +0 -0
  349. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_k_z70g2 +0 -0
  350. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_lkzvudv +0 -0
  351. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_m5hyf8b +0 -0
  352. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_n4oxypj +0 -0
  353. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_ni_zes5 +0 -0
  354. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_omu0jno +0 -0
  355. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_pq3bbfj +0 -0
  356. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_r4oprc4 +0 -0
  357. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_sckr15c +0 -0
  358. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_ug_wzyu +0 -0
  359. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_zi4ztal +0 -0
  360. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_zieprvg +0 -0
  361. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_zk6nvzg +0 -0
  362. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a019vfju +0 -0
  363. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a0kiz842 +0 -0
  364. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a0maz27z +0 -0
  365. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a0q862qj +0 -0
  366. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a113cwpu +0 -0
  367. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a12g72z8 +0 -0
  368. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a1_lk53r +0 -0
  369. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a1g_03_g +0 -0
  370. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a1n7o9zx +0 -0
  371. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a24anpol +0 -0
  372. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a26mfann +0 -0
  373. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a29p96qt +0 -0
  374. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a3tstpt6 +0 -0
  375. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a6ie2zbc +0 -0
  376. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a83vpszi +0 -0
  377. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a_9ssocr +0 -0
  378. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/aabw5k3e +0 -0
  379. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/acaj1gem +0 -0
  380. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/adrnbc1y +0 -0
  381. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/aepv2wqa +0 -0
  382. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/aesfl_jb +0 -0
  383. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/afix39xq +0 -0
  384. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ag9iu8fn +0 -0
  385. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/agg_m8fz +0 -0
  386. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ago5nf3t +0 -0
  387. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/aialrb93 +0 -0
  388. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/al4hxnlg +0 -0
  389. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/alokft_q +0 -0
  390. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/amcmtpfp +0 -0
  391. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ame5s8n_ +0 -0
  392. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/aniypnul +0 -0
  393. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ao89f4_6 +0 -0
  394. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/aqm2jvu4 +0 -0
  395. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/arslkizp +0 -0
  396. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/aspd7avy +0 -0
  397. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/au2vky3p +0 -0
  398. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/avflbgs6 +0 -0
  399. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/avnvk85b +0 -0
  400. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/avo5j9g6 +0 -0
  401. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/aw2mby7i +0 -0
  402. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/awivi1_m +0 -0
  403. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/axdhq3ds +0 -0
  404. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b0l0wj8y +0 -0
  405. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b1yo0bt8 +0 -0
  406. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b2lvea2l +0 -0
  407. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b3111fz5 +0 -0
  408. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b34yftbo +0 -0
  409. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b3rojazb +0 -0
  410. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b50xtn55 +0 -0
  411. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b5_wyohn +0 -0
  412. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b5sfhhgo +0 -0
  413. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b9xqod4x +0 -0
  414. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b_y9utx4 +0 -0
  415. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bbc_v5j9 +0 -0
  416. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bbkttaaf +0 -0
  417. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bc33onw_ +0 -0
  418. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bcr4vyzq +0 -0
  419. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/be4fxhox +0 -0
  420. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/be7z_jwl +0 -0
  421. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bfviy2cw +0 -0
  422. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bh4r58mh +0 -0
  423. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bheqtvx3 +0 -0
  424. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bjfm82pu +0 -0
  425. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bmj8izr6 +0 -0
  426. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bpc_d6c_ +0 -0
  427. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bq009wjh +0 -0
  428. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bqvjclks +0 -0
  429. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bro5nxpl +0 -0
  430. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/buzubgca +0 -0
  431. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bv1d9s8e +0 -0
  432. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bw9i3boz +0 -0
  433. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bwb50341 +0 -0
  434. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bx34r4oe +0 -0
  435. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/by8w1d6i +0 -0
  436. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bz93ufd8 +0 -0
  437. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/c0t856xe +0 -0
  438. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/c1so4mql +0 -0
  439. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/c3fs1ig9 +0 -0
  440. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/c4d8ditf +0 -0
  441. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/c8bbz866 +0 -0
  442. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/c9bwq5j6 +0 -0
  443. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/c_hltt3z +0 -0
  444. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ca0smnrv +0 -0
  445. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cd1kefn4 +0 -0
  446. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cdbzmcva +0 -0
  447. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cgsma3ng +0 -0
  448. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cllulm_3 +0 -0
  449. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/clpu10cz +0 -0
  450. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cm56qb6q +0 -0
  451. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cosf8_fl +0 -0
  452. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cp0jn8sp +0 -0
  453. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cpzs8nbp +0 -0
  454. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cq491sju +0 -0
  455. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cqdqaryb +0 -0
  456. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cr1wpbwj +0 -0
  457. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cr5csdg1 +0 -0
  458. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/crncxu9r +0 -0
  459. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ct6video +0 -0
  460. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cuwv1iv_ +0 -0
  461. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cvucgbpj +0 -0
  462. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cx4knlqy +0 -0
  463. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cx9p1izl +0 -0
  464. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cywcd5r4 +0 -0
  465. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cz59sbd1 +0 -0
  466. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/czgw_tgo +0 -0
  467. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/czhm3_u1 +0 -0
  468. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/czol9isy +0 -0
  469. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d0r83fis +0 -0
  470. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d196n6bn +0 -0
  471. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d2xnlb_v +0 -0
  472. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d5h_g2c5 +0 -0
  473. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d5tijhzi +0 -0
  474. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d5zu4jkf +0 -0
  475. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d66rwir1 +0 -0
  476. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d8lqkak0 +0 -0
  477. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d99fxi04 +0 -0
  478. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d9_cs0oy +0 -0
  479. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d9yib8fp +0 -0
  480. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/da8b31q_ +0 -0
  481. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ddwzc9x1 +0 -0
  482. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/deqm2k3a +0 -0
  483. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dgjx0bj0 +0 -0
  484. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dif84z2m +0 -0
  485. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dilf2hut +0 -0
  486. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dk8p6w5t +0 -0
  487. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dkco4zfr +0 -0
  488. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dmn_oanz +0 -0
  489. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dn11jr32 +0 -0
  490. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dr902krh +0 -0
  491. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dr_nctjf +0 -0
  492. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dt8t62ac +0 -0
  493. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dtwdctie +0 -0
  494. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/du1oxtef +0 -0
  495. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dugg9gfu +0 -0
  496. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/duue5g80 +0 -0
  497. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dwhtb7ja +0 -0
  498. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dy7khwf5 +0 -0
  499. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dzxa8lwr +0 -0
  500. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/e1nhelx8 +0 -0
  501. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/e1vgmzpy +0 -0
  502. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/e2h0dryg +0 -0
  503. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/e60l_6iu +0 -0
  504. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/e67pyhuk +0 -0
  505. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/e680ppav +0 -0
  506. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eab77nfw +0 -0
  507. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eeli33_y +0 -0
  508. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/efjoiqjc +0 -0
  509. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ei2eeyxp +0 -0
  510. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eihyv_in +0 -0
  511. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ejkxi5xk +0 -0
  512. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ekaof5ha +0 -0
  513. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eljss_eq +0 -0
  514. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eowop469 +0 -0
  515. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/epfg3m2x +0 -0
  516. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eq_n6v0s +0 -0
  517. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eu2msyk4 +0 -0
  518. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eubf7dou +0 -0
  519. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eudgetur +0 -0
  520. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/euvob_l9 +0 -0
  521. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ev5f3i36 +0 -0
  522. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ew5gd8aj +0 -0
  523. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ewh74gmq +0 -0
  524. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ewuy3_tj +0 -0
  525. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eypd_yyu +0 -0
  526. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eyr4fl7a +0 -0
  527. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f02_64ia +0 -0
  528. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f02gw7xy +0 -0
  529. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f0u7fypo +0 -0
  530. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f16anu4p +0 -0
  531. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f1_oei8f +0 -0
  532. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f2a3w1m9 +0 -0
  533. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f3ynzd5v +0 -0
  534. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f52jn_ki +0 -0
  535. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f5ygkpwx +0 -0
  536. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f6qknpw4 +0 -0
  537. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f832bfsj +0 -0
  538. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f8g0mm92 +0 -0
  539. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f9w21ppp +0 -0
  540. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f_34s7xm +0 -0
  541. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fa88esw4 +0 -0
  542. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/faat98vx +0 -0
  543. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/famaoih_ +0 -0
  544. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fbjzf9a1 +0 -0
  545. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fe3j4ei6 +0 -0
  546. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fe774blf +0 -0
  547. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fewl6fhv +0 -0
  548. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ff4llep3 +0 -0
  549. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fh10gqns +0 -0
  550. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fhm0lsqn +0 -0
  551. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fiqu__nk +0 -0
  552. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fj2fxdst +0 -0
  553. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fl2gzp_m +0 -0
  554. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/flcsnbfw +0 -0
  555. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fnlpbrg1 +0 -0
  556. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fnzz2zjq +0 -0
  557. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fp3d405t +0 -0
  558. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fpd7znex +0 -0
  559. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fqtb_0ca +0 -0
  560. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/frd8656a +0 -0
  561. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fsy8bz9w +0 -0
  562. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ft2wnp5v +0 -0
  563. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fu0lfdg2 +0 -0
  564. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fuyoarae +0 -0
  565. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fvzp_ra1 +0 -0
  566. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fwjtitjw +0 -0
  567. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fytm0cue +0 -0
  568. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/g11ix7az +0 -0
  569. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/g1rql9n8 +0 -0
  570. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/g2mg1r9a +0 -0
  571. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/g3m1lkjz +0 -0
  572. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/g4toyahl +0 -0
  573. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/g8hv2v6h +0 -0
  574. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/g919c692 +0 -0
  575. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/g_g351r5 +0 -0
  576. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gb6nnf0a +0 -0
  577. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gb_6ww9w +0 -0
  578. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gfwukvfr +0 -0
  579. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ghytiv02 +0 -0
  580. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ghzmped_ +0 -0
  581. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gjnbhgq9 +0 -0
  582. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gjt8xnf2 +0 -0
  583. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/glbohgk5 +0 -0
  584. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gnm2s3me +0 -0
  585. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/go7bi1r4 +0 -0
  586. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/goqkrpod +0 -0
  587. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gpxbyhpg +0 -0
  588. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gr1q6rtb +0 -0
  589. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gr6ps9aq +0 -0
  590. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gs1wx8de +0 -0
  591. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gsn1ykkj +0 -0
  592. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gsq40twn +0 -0
  593. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gu1tq6h3 +0 -0
  594. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/guvy4w14 +0 -0
  595. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gvhw_53w +0 -0
  596. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gw_igey1 +0 -0
  597. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gwybqtgj +0 -0
  598. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gysd91zh +0 -0
  599. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gzynvr_3 +0 -0
  600. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h1bzr3c0 +0 -0
  601. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h1fth7nb +0 -0
  602. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h1ouuvtb +0 -0
  603. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h2t47zsw +0 -0
  604. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h2zw34kc +0 -0
  605. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h323wi8g +0 -0
  606. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h38e3sdz +0 -0
  607. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h55ox8cw +0 -0
  608. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h7dewhhd +0 -0
  609. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h8de1acn +0 -0
  610. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ha8xi72e +0 -0
  611. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hcd6yx0_ +0 -0
  612. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hcrgkexz +0 -0
  613. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/he884tjl +0 -0
  614. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hfxwoa1s +0 -0
  615. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hkclxxaq +0 -0
  616. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hl8sw608 +0 -0
  617. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hm2tpjc1 +0 -0
  618. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hma26h_u +0 -0
  619. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ho1vk_61 +0 -0
  620. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hok9w8vx +0 -0
  621. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hp0nj_r6 +0 -0
  622. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hv9mp3yn +0 -0
  623. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hx2g299k +0 -0
  624. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hy1jvibx +0 -0
  625. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/i28_hexe +0 -0
  626. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/i3761kwy +0 -0
  627. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/i7z6a1ox +0 -0
  628. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/i96qnait +0 -0
  629. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/iao7zqlz +0 -0
  630. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ib3tmxng +0 -0
  631. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ic3f6ztg +0 -0
  632. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ic53sdba +0 -0
  633. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/icbgri8s +0 -0
  634. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ie8rgmy3 +0 -0
  635. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/iey22mpj +0 -0
  636. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/igke6mu8 +0 -0
  637. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ih8hko5x +0 -0
  638. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ii28gfg1 +0 -0
  639. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/imekhmtz +0 -0
  640. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/imelxreo +0 -0
  641. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/inffrp1g +0 -0
  642. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ins6j7rd +0 -0
  643. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/int_c5xi +0 -0
  644. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/inuierdx +0 -0
  645. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/iogcgfng +0 -0
  646. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/iotn_q5u +0 -0
  647. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ip44m5r3 +0 -0
  648. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ipttzam7 +0 -0
  649. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/iv21g5lo +0 -0
  650. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ixjmkxp3 +0 -0
  651. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/iytmrvj7 +0 -0
  652. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/j2a0ysy4 +0 -0
  653. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/j6_sid8h +0 -0
  654. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/j79b3yfx +0 -0
  655. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/j7ism9g4 +0 -0
  656. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/j7o9v9w1 +0 -0
  657. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/j94vd_1d +0 -0
  658. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jamx_ndk +0 -0
  659. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jazctc2s +0 -0
  660. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jbav4_pt +0 -0
  661. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jdq74et4 +0 -0
  662. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jevrdlfg +0 -0
  663. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jfadnox7 +0 -0
  664. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jfb7fc3y +0 -0
  665. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jfu1ubv3 +0 -0
  666. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jg22z5cu +0 -0
  667. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jgubkkd0 +0 -0
  668. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ji7gluqy +0 -0
  669. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jje85bfy +0 -0
  670. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jjq6x7qz +0 -0
  671. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jjzx65yh +0 -0
  672. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jk10itu1 +0 -0
  673. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jm88jxok +0 -0
  674. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jnjfo7ny +0 -0
  675. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jpclsj_o +0 -0
  676. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jpo7fob4 +0 -0
  677. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jpwono9d +0 -0
  678. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jq0sdwhe +0 -0
  679. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jq5bzw9s +0 -0
  680. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jqsb1zx1 +0 -0
  681. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jr4c2_z7 +0 -0
  682. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jrbow0z1 +0 -0
  683. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jrul121b +0 -0
  684. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jsdealj2 +0 -0
  685. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jsh6ioew +0 -0
  686. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jsrb40jm +0 -0
  687. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jt1y4dej +0 -0
  688. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/juh2fmz2 +0 -0
  689. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jv6yl117 +0 -0
  690. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jvl0ntgd +0 -0
  691. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jvuqt_o2 +0 -0
  692. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jx2uytse +0 -0
  693. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jz1640gs +0 -0
  694. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jzm6h2jl +0 -0
  695. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jzxduldk +0 -0
  696. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/k0co1rdf +0 -0
  697. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/k47pxflr +0 -0
  698. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/k5rijnv6 +0 -0
  699. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/k7_2nkha +0 -0
  700. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/k7vek6bs +0 -0
  701. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kdbkvloo +0 -0
  702. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kfhux63b +0 -0
  703. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kfsv8um2 +0 -0
  704. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/khnmoe1q +0 -0
  705. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kjf_cnre +0 -0
  706. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kk1c3m9i +0 -0
  707. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kkcjklo_ +0 -0
  708. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kktucs0x +0 -0
  709. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kmu14_w2 +0 -0
  710. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kn7mz5kj +0 -0
  711. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ko2pal47 +0 -0
  712. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kp2am_na +0 -0
  713. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kr_xfebf +0 -0
  714. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/krwjgnur +0 -0
  715. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kta7sw2m +0 -0
  716. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ktnum6te +0 -0
  717. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kvdlox2m +0 -0
  718. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kyyxzpho +0 -0
  719. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l0_40t3r +0 -0
  720. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l0du44rp +0 -0
  721. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l0ejhehr +0 -0
  722. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l0g7m1tz +0 -0
  723. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l0mxgj7x +0 -0
  724. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l69z0whd +0 -0
  725. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l6weg8_a +0 -0
  726. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l7hgnghq +0 -0
  727. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l7m6asvn +0 -0
  728. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l9_mw1qf +0 -0
  729. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l_hl7t0p +0 -0
  730. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lakqsxcl +0 -0
  731. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ldjrptdh +0 -0
  732. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lfmrstv1 +0 -0
  733. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lg8vfqd7 +0 -0
  734. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lgti4s4f +0 -0
  735. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lh_dve3x +0 -0
  736. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lhl74az9 +0 -0
  737. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lhy2quch +0 -0
  738. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/li9u_fjg +0 -0
  739. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lisiit69 +0 -0
  740. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ljk79cfj +0 -0
  741. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lmrhye36 +0 -0
  742. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/loyjkq76 +0 -0
  743. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lq18lxsn +0 -0
  744. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lrq1r2tf +0 -0
  745. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lrziu1zk +0 -0
  746. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lt8au9q3 +0 -0
  747. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lxfc1waq +0 -0
  748. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lxjhl8tw +0 -0
  749. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lyionuvy +0 -0
  750. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m1_k49bn +0 -0
  751. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m1msdqvl +0 -0
  752. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m2yeh4ur +0 -0
  753. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m2zimnkk +0 -0
  754. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m38sy16c +0 -0
  755. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m3zog9lb +0 -0
  756. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m4_z6jik +0 -0
  757. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m4o054ps +0 -0
  758. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m4vquuoq +0 -0
  759. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m4wgkkxz +0 -0
  760. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m6yzxvou +0 -0
  761. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m7y04p09 +0 -0
  762. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m7zcf495 +0 -0
  763. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m834bdsl +0 -0
  764. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m8u7smcj +0 -0
  765. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m9n1eivf +0 -0
  766. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m_7rzcsp +0 -0
  767. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m_hprc1s +0 -0
  768. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m_nziks9 +0 -0
  769. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ma3ktael +0 -0
  770. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mbsdr7f7 +0 -0
  771. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/md375unp +0 -0
  772. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/me0lh8aa +0 -0
  773. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mfgvjxhw +0 -0
  774. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mg3kjtew +0 -0
  775. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mgztqquk +0 -0
  776. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mjcct5b9 +0 -0
  777. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mjrx5xpa +0 -0
  778. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mlrz81bf +0 -0
  779. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mnrp9x_f +0 -0
  780. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/moggsfe0 +0 -0
  781. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mqcds91h +0 -0
  782. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mqngx8sy +0 -0
  783. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mt4gi6cc +0 -0
  784. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/muabsufo +0 -0
  785. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mv0tstq1 +0 -0
  786. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mvoyxvkp +0 -0
  787. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mwk9id1o +0 -0
  788. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mz7t4m9m +0 -0
  789. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n06jd70n +0 -0
  790. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n0h18ycc +0 -0
  791. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n1ivcjmo +0 -0
  792. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n38jqh32 +0 -0
  793. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n4q2qs9j +0 -0
  794. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n4v88mnj +0 -0
  795. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n4x9dsdh +0 -0
  796. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n83bdrw8 +0 -0
  797. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n8qfj2ha +0 -0
  798. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n9cgls9c +0 -0
  799. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/naou845i +0 -0
  800. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ncj5nrxc +0 -0
  801. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nd_n49bi +0 -0
  802. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ne7tu5ch +0 -0
  803. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nfmfgwe3 +0 -0
  804. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ng4071ns +0 -0
  805. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ngb1znxx +0 -0
  806. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ngum6wqh +0 -0
  807. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nhbdjga7 +0 -0
  808. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nhjn23uk +0 -0
  809. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/njcrvnju +0 -0
  810. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nmfm5g16 +0 -0
  811. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nmfriimw +0 -0
  812. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nmxdjqy2 +0 -0
  813. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/no4_0eg3 +0 -0
  814. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/no7cqyev +0 -0
  815. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nqayq4ut +0 -0
  816. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ns4d5b_4 +0 -0
  817. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nt5yqip5 +0 -0
  818. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nt825e4s +0 -0
  819. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nufhip4z +0 -0
  820. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nv848zhy +0 -0
  821. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nvn7r551 +0 -0
  822. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nyr2wz8p +0 -0
  823. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nz167wey +0 -0
  824. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nz5va5r5 +0 -0
  825. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o489varc +0 -0
  826. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o4g9eh7c +0 -0
  827. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o4rs7vco +0 -0
  828. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o539xztd +0 -0
  829. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o5gpbe0x +0 -0
  830. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o5zler0n +0 -0
  831. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o63pd_wn +0 -0
  832. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o729hbwb +0 -0
  833. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o80or4t3 +0 -0
  834. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o9pn9enx +0 -0
  835. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o9z2d6ej +0 -0
  836. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oax6fhce +0 -0
  837. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/objc63wt +0 -0
  838. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ociqygsu +0 -0
  839. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/od5nng2s +0 -0
  840. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/odk8w0au +0 -0
  841. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oe6_dqpn +0 -0
  842. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oe_56ea5 +0 -0
  843. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oejyt9mt +0 -0
  844. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ohzmd3jz +0 -0
  845. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oi5q9pga +0 -0
  846. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oi82pmqt +0 -0
  847. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ojum0tai +0 -0
  848. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ojyi5e06 +0 -0
  849. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oklg2cdz +0 -0
  850. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ol0i_jqw +0 -0
  851. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/omc7b7ce +0 -0
  852. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/omcu8xmr +0 -0
  853. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/omtnpd0i +0 -0
  854. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/onq49n5l +0 -0
  855. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oorxfks3 +0 -0
  856. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oq5_h6k1 +0 -0
  857. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oqgafrja +0 -0
  858. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oqj4rbbr +0 -0
  859. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oqknp9iw +0 -0
  860. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oql1k8vp +0 -0
  861. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/osce_otq +0 -0
  862. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ouqmz_zy +0 -0
  863. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ovc_0eda +0 -0
  864. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oyne5dvz +0 -0
  865. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oz3y0oir +0 -0
  866. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ozenud_v +0 -0
  867. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p0o_c350 +0 -0
  868. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p0zpbn9z +0 -0
  869. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p1a8azkf +0 -0
  870. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p2dr1fzi +0 -0
  871. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p3h8wmgl +0 -0
  872. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p3s31pjp +0 -0
  873. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p5dhxpr5 +0 -0
  874. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p5e86ebc +0 -0
  875. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p5j09w6f +0 -0
  876. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p5vgjllb +0 -0
  877. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p6a2gqb5 +0 -0
  878. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p6vcoy9k +0 -0
  879. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p826pvm8 +0 -0
  880. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p845x142 +0 -0
  881. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p8dt4jsb +0 -0
  882. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p_4g5rza +0 -0
  883. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p_czjwbv +0 -0
  884. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pbbycj3v +0 -0
  885. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pc3n29bx +0 -0
  886. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pdfrmi4h +0 -0
  887. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pdnwssem +0 -0
  888. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pdq6j_xg +0 -0
  889. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pdrr1ch2 +0 -0
  890. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pds57p16 +0 -0
  891. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pdv196ns +0 -0
  892. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ph6bd3j5 +0 -0
  893. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/plvocf79 +0 -0
  894. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pm995rml +0 -0
  895. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pn65qlzo +0 -0
  896. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pqh82h57 +0 -0
  897. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pqphiyyo +0 -0
  898. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/prjw94pb +0 -0
  899. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ps3uw776 +0 -0
  900. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pt0o8agi +0 -0
  901. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ptbfjl6b +0 -0
  902. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ptcjq405 +0 -0
  903. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pti8h5r1 +0 -0
  904. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/puiuf64y +0 -0
  905. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/puqfa3bp +0 -0
  906. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pvg0qded +0 -0
  907. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pvv9hpk7 +0 -0
  908. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pwiozwgv +0 -0
  909. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q0o0l8_v +0 -0
  910. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q2lbe2m1 +0 -0
  911. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q2o_ki6a +0 -0
  912. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q4vmx4_p +0 -0
  913. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q7ma4pu3 +0 -0
  914. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q7qnpvff +0 -0
  915. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q7xpgasp +0 -0
  916. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q7z8vhad +0 -0
  917. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q9e2v5x7 +0 -0
  918. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qa8xx0ap +0 -0
  919. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qaicews2 +0 -0
  920. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qayljihm +0 -0
  921. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qb13lxk2 +0 -0
  922. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qdg1ya9n +0 -0
  923. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qed4q622 +0 -0
  924. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qfrrrguf +0 -0
  925. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qfzeccbv +0 -0
  926. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qg47gpz4 +0 -0
  927. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qgn5zzcg +0 -0
  928. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qhzq_swk +0 -0
  929. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qjhnzqvl +0 -0
  930. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qjxha0hg +0 -0
  931. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qlhmz0cc +0 -0
  932. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qlu8itfy +0 -0
  933. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qmeaurdi +0 -0
  934. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qmgb1n8v +0 -0
  935. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qmkt_ml0 +0 -0
  936. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qml1ngsf +0 -0
  937. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qnf0thxx +0 -0
  938. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qngfglna +0 -0
  939. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qoqd8bqm +0 -0
  940. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qqrlemjh +0 -0
  941. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qtto96ik +0 -0
  942. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/quf1pt6b +0 -0
  943. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qvwwx_n7 +0 -0
  944. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qxe04_ez +0 -0
  945. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qy1o0x6z +0 -0
  946. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qyehq5l0 +0 -0
  947. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qyk4re_3 +0 -0
  948. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r218b9qb +0 -0
  949. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r6tr8tv5 +0 -0
  950. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r6zoejxb +0 -0
  951. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r754fjo9 +0 -0
  952. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r771f8rb +0 -0
  953. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r7ujfegc +0 -0
  954. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r86a7v21 +0 -0
  955. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r8rsrpm7 +0 -0
  956. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r_6w9o5i +0 -0
  957. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r_u_c78w +0 -0
  958. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ra2kl5b8 +0 -0
  959. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rb6jryvk +0 -0
  960. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rbhhjkvr +0 -0
  961. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rc020g9l +0 -0
  962. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rcb5rqpb +0 -0
  963. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rcvjj_o7 +0 -0
  964. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rezrgke1 +0 -0
  965. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rh_zr7qm +0 -0
  966. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rknafco1 +0 -0
  967. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rko2jezt +0 -0
  968. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rmbzewm9 +0 -0
  969. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rmuuru9z +0 -0
  970. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rngv7mxy +0 -0
  971. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/roy7btx2 +0 -0
  972. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rv9k7i6_ +0 -0
  973. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rvn3886k +0 -0
  974. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rwr9x78m +0 -0
  975. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rwx54h5x +0 -0
  976. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rxpfxjst +0 -0
  977. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rzeg99pg +0 -0
  978. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s3d2uiym +0 -0
  979. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s4yteril +0 -0
  980. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s7mck0tg +0 -0
  981. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s7zof1dw +0 -0
  982. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s82bwxqf +0 -0
  983. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s9l5grx4 +0 -0
  984. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s9lmrue2 +0 -0
  985. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s9qvil1x +0 -0
  986. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s_pr8wnn +0 -0
  987. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sa7mhc4d +0 -0
  988. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sa8wy6ep +0 -0
  989. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/salm38_m +0 -0
  990. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sc2jrt1m +0 -0
  991. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sekciaxj +0 -0
  992. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sezkf_ny +0 -0
  993. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/shffe9pk +0 -0
  994. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sjnn7usl +0 -0
  995. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/skfbt33p +0 -0
  996. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sls8e4j8 +0 -0
  997. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/smppq1t3 +0 -0
  998. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sn6ijo13 +0 -0
  999. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sn6y6km7 +0 -0
  1000. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sod8zxuh +0 -0
  1001. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sog2iwfs +0 -0
  1002. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sqr84fdx +0 -0
  1003. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/srhuzdm8 +0 -0
  1004. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sslhn1f3 +0 -0
  1005. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/st739ol7 +0 -0
  1006. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/st_lgba1 +0 -0
  1007. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/stfwlraz +0 -0
  1008. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/su3a0lsv +0 -0
  1009. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/suid0cyj +0 -0
  1010. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sv_lpia2 +0 -0
  1011. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/swohb3b5 +0 -0
  1012. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/swrtvtp3 +0 -0
  1013. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sx7kcftt +0 -0
  1014. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/t12ltr13 +0 -0
  1015. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/t17rjtqs +0 -0
  1016. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/t2nrl3l_ +0 -0
  1017. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/t5kymxgi +0 -0
  1018. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/t8ruxrk4 +0 -0
  1019. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/t9mfvw5g +0 -0
  1020. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tam81yea +0 -0
  1021. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tavvfim0 +0 -0
  1022. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tea79d97 +0 -0
  1023. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tfgb3dlj +0 -0
  1024. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tfx8ur9d +0 -0
  1025. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/th9szz54 +0 -0
  1026. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ti8t90ut +0 -0
  1027. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tih3mi5y +0 -0
  1028. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tlu59rdf +0 -0
  1029. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tm_qcn3s +0 -0
  1030. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tmjzo1dw +0 -0
  1031. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tnurme3s +0 -0
  1032. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tpdsp8y7 +0 -0
  1033. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/trer1mth +0 -0
  1034. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/trq0s1hb +0 -0
  1035. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tsmlx2dh +0 -0
  1036. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tsx0awbc +0 -0
  1037. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tvb0wzpg +0 -0
  1038. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/txjgy0ei +0 -0
  1039. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/txtt3l7u +0 -0
  1040. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/u1yp_vs8 +0 -0
  1041. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/u_931a5j +0 -0
  1042. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/u_qr0t0a +0 -0
  1043. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/u_ufzbek +0 -0
  1044. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uc1n1vgf +0 -0
  1045. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ucjeli6i +0 -0
  1046. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ucln5aqu +0 -0
  1047. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ud51agfs +0 -0
  1048. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ud9b6k4k +0 -0
  1049. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uf5c8xim +0 -0
  1050. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uh7q90za +0 -0
  1051. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uh_iut8q +0 -0
  1052. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uigw7tbx +0 -0
  1053. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ujeuvfme +0 -0
  1054. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ujisyoce +0 -0
  1055. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ukc7855z +0 -0
  1056. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ul24c5ym +0 -0
  1057. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/um1gl0ke +0 -0
  1058. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/un444ibl +0 -0
  1059. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ungy1huu +0 -0
  1060. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/unpnku56 +0 -0
  1061. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uor8c2e4 +0 -0
  1062. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uotevjzc +0 -0
  1063. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uounnxqn +0 -0
  1064. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/upmbbd_9 +0 -0
  1065. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/us36d5sr +0 -0
  1066. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/usq66ol5 +0 -0
  1067. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/usqdsimf +0 -0
  1068. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/utvgpr6u +0 -0
  1069. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uukrsscy +0 -0
  1070. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uvhh6l3f +0 -0
  1071. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uvlnaybc +0 -0
  1072. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ux5_bmpr +0 -0
  1073. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uxfsfgpp +0 -0
  1074. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uxk3n94b +0 -0
  1075. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uxv_oshw +0 -0
  1076. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uxzfftwm +0 -0
  1077. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uyra964t +0 -0
  1078. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v0g3dqme +0 -0
  1079. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v0iuccuj +0 -0
  1080. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v0jfwh88 +0 -0
  1081. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v1q7urx8 +0 -0
  1082. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v1wioq8s +0 -0
  1083. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v22ww5co +0 -0
  1084. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v5_ia9t4 +0 -0
  1085. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v73xpbqn +0 -0
  1086. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v7zcsbe6 +0 -0
  1087. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vagesr11 +0 -0
  1088. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vbrx89tf +0 -0
  1089. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vdr0rvo1 +0 -0
  1090. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vfva9j5t +0 -0
  1091. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vg4t9xxr +0 -0
  1092. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vgbcvkkb +0 -0
  1093. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vhfg3lek +0 -0
  1094. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vhsihvta +0 -0
  1095. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vif5p19w +0 -0
  1096. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vinjtfbh +0 -0
  1097. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vj95ofi2 +0 -0
  1098. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vjznlrtj +0 -0
  1099. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vk12y85z +0 -0
  1100. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vkg9c7tp +0 -0
  1101. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vnf_egr1 +0 -0
  1102. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vng9nyk6 +0 -0
  1103. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vodp4gu8 +0 -0
  1104. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vrwv0cb0 +0 -0
  1105. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vsvda8lf +0 -0
  1106. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vtds99g5 +0 -0
  1107. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vv271uzb +0 -0
  1108. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vvqwml2h +0 -0
  1109. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vwbgw6s5 +0 -0
  1110. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vwiuzmby +0 -0
  1111. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vz9g0uwc +0 -0
  1112. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/w0ybne7s +0 -0
  1113. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/w12nhvfh +0 -0
  1114. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/w1ydd62i +0 -0
  1115. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/w218obfe +0 -0
  1116. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/w8b0_x8r +0 -0
  1117. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/w_mxlvzq +0 -0
  1118. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wbc_si8p +0 -0
  1119. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wgb064vi +0 -0
  1120. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/whblz41f +0 -0
  1121. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/whuy3gkc +0 -0
  1122. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wilac7ll +0 -0
  1123. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wmse3slz +0 -0
  1124. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wnxpb8fk +0 -0
  1125. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wnxxsy03 +0 -0
  1126. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wo8ode4m +0 -0
  1127. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wqfx3mmn +0 -0
  1128. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wqtgb62p +0 -0
  1129. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wrl97qfh +0 -0
  1130. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wrv50swi +0 -0
  1131. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wtwfvqw9 +0 -0
  1132. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wu_d9qc3 +0 -0
  1133. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wuaw3g5e +0 -0
  1134. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wviy5m1w +0 -0
  1135. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wwb_u_f_ +0 -0
  1136. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wx5j6wxr +0 -0
  1137. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wx75hoki +0 -0
  1138. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wyu6_qcu +0 -0
  1139. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/x07mgcml +0 -0
  1140. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/x16b9thz +0 -0
  1141. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/x1i0wouu +0 -0
  1142. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/x5ezban_ +0 -0
  1143. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/x5v2czpz +0 -0
  1144. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/x7tsrd7d +0 -0
  1145. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/x_t0w6sg +0 -0
  1146. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xc52lb6_ +0 -0
  1147. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xdc8ahla +0 -0
  1148. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xdikr4h_ +0 -0
  1149. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xf6iflbg +0 -0
  1150. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xg9ba1u2 +0 -0
  1151. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xgv9f_t5 +0 -0
  1152. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xigenib3 +0 -0
  1153. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xjbfjuzd +0 -0
  1154. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xkdk4sd5 +0 -0
  1155. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xoappxg_ +0 -0
  1156. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xond8meh +0 -0
  1157. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xop8yrxz +0 -0
  1158. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xp3zx461 +0 -0
  1159. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xq9frhh1 +0 -0
  1160. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xqqenpra +0 -0
  1161. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xr3rpkm_ +0 -0
  1162. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xt_ufjez +0 -0
  1163. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xtis32y0 +0 -0
  1164. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xu0tzquv +0 -0
  1165. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xvaabas8 +0 -0
  1166. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xwp_i6vf +0 -0
  1167. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xxd3w4ym +0 -0
  1168. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xxvytxby +0 -0
  1169. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y1dqtyc1 +0 -0
  1170. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y1f26ayf +0 -0
  1171. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y33kb8g5 +0 -0
  1172. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y4mlhsj5 +0 -0
  1173. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y63m6rho +0 -0
  1174. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y6wnmbje +0 -0
  1175. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y738xp3p +0 -0
  1176. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y7z56e1s +0 -0
  1177. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y8yyh43s +0 -0
  1178. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y96eybcm +0 -0
  1179. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yb54j2mn +0 -0
  1180. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yb8r7quz +0 -0
  1181. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ybhwuksd +0 -0
  1182. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ybs1q9w9 +0 -0
  1183. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ydmsw6gu +0 -0
  1184. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ydv5irw8 +0 -0
  1185. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yfmjckhc +0 -0
  1186. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ygc4inte +0 -0
  1187. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ygdw1f6b +0 -0
  1188. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yhdjkwr5 +0 -0
  1189. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yheku_kl +0 -0
  1190. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yhp7wea_ +0 -0
  1191. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yhqkaquz +0 -0
  1192. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yinjschv +0 -0
  1193. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yl7ksaxk +0 -0
  1194. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ym2xp9ee +0 -0
  1195. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yohfjt5g +0 -0
  1196. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yp6t541w +0 -0
  1197. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yqbxmbzp +0 -0
  1198. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yr_6xn79 +0 -0
  1199. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ysakjowo +0 -0
  1200. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ysoq1nau +0 -0
  1201. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ytt27uus +0 -0
  1202. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yxo5efm8 +0 -0
  1203. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yy4ycd6k +0 -0
  1204. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yyh9ktcs +0 -0
  1205. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z0hd3j62 +0 -0
  1206. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z1ittprj +0 -0
  1207. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z40o78ya +0 -0
  1208. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z56yj1_1 +0 -0
  1209. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z90kvg0c +0 -0
  1210. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z98s6p6x +0 -0
  1211. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z9uqn8c5 +0 -0
  1212. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z_j5tn85 +0 -0
  1213. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z_o3uo85 +0 -0
  1214. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/za0d7ipg +0 -0
  1215. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zb8nwnby +0 -0
  1216. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zbz3gpi7 +0 -0
  1217. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zcf3n9z5 +0 -0
  1218. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zd7o1w_y +0 -0
  1219. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zf5sof7x +0 -0
  1220. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zf8nbb_3 +0 -0
  1221. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zfq92gro +0 -0
  1222. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zg3bduqt +0 -0
  1223. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zg95qxlv +0 -0
  1224. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zgr1lu58 +0 -0
  1225. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zi6qc09_ +0 -0
  1226. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ziq14elj +0 -0
  1227. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zlauoxe4 +0 -0
  1228. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zlckte5u +0 -0
  1229. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zmbqzcxb +0 -0
  1230. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/znjn5txm +0 -0
  1231. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/znz_4eln +0 -0
  1232. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zpalchp4 +0 -0
  1233. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zpnp8u21 +0 -0
  1234. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zr0swd42 +0 -0
  1235. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zta3ikco +0 -0
  1236. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zvptowww +0 -0
  1237. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zxy9ihlm +0 -0
  1238. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zy4eymbe +0 -0
  1239. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zzcopclz +0 -0
  1240. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/Makefile +0 -0
  1241. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/__init__.py +0 -0
  1242. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/__main__.py +0 -0
  1243. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/_debug.py +0 -0
  1244. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/_server_config.py +0 -0
  1245. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/_server_constants.py +0 -0
  1246. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/_testing_models.py +0 -0
  1247. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/api_keys.py +0 -0
  1248. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/app.tcss +0 -0
  1249. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/ask_user.py +0 -0
  1250. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/auto_commit.py +0 -0
  1251. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/background_agents.py +0 -0
  1252. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/browser_cli.py +0 -0
  1253. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/built_in_skills/__init__.py +0 -0
  1254. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/built_in_skills/skill-creator/SKILL.md +0 -0
  1255. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/built_in_skills/skill-creator/scripts/init_skill.py +0 -0
  1256. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/built_in_skills/skill-creator/scripts/quick_validate.py +0 -0
  1257. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/claude_code_compat.py +0 -0
  1258. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cli_sounds.py +0 -0
  1259. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/clipboard.py +0 -0
  1260. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_benchmark.py +0 -0
  1261. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_build.py +0 -0
  1262. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_checkpoint.py +0 -0
  1263. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_explain.py +0 -0
  1264. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_index.py +0 -0
  1265. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_memory_sync.py +0 -0
  1266. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_pr_review.py +0 -0
  1267. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_test.py +0 -0
  1268. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_undo.py +0 -0
  1269. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/code_intelligence_cli.py +0 -0
  1270. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/command_registry.py +0 -0
  1271. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/compact_selective.py +0 -0
  1272. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/config.py +0 -0
  1273. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/configurable_model.py +0 -0
  1274. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/dashboard.py +0 -0
  1275. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/default_agent_prompt.md +0 -0
  1276. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/__init__.py +0 -0
  1277. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/blog-post.yaml +0 -0
  1278. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/bug-investigation.yaml +0 -0
  1279. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/code-review.yaml +0 -0
  1280. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/dependency-audit.yaml +0 -0
  1281. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/github-issue-autofix.yaml +0 -0
  1282. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/jira-ticket-autofix.yaml +0 -0
  1283. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/morning-standup.yaml +0 -0
  1284. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/new-feature.yaml +0 -0
  1285. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/onboarding-guide.yaml +0 -0
  1286. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/readme-auto-updater.yaml +0 -0
  1287. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/security-scan.yaml +0 -0
  1288. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/sprint-planning.yaml +0 -0
  1289. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/weekly-report.yaml +0 -0
  1290. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/prompt_library.toml +0 -0
  1291. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults_seeder.py +0 -0
  1292. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/enterprise_cli.py +0 -0
  1293. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/extensibility.py +0 -0
  1294. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/extensions.py +0 -0
  1295. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/file_ops.py +0 -0
  1296. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/file_watcher.py +0 -0
  1297. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/hooks.py +0 -0
  1298. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/image_cli.py +0 -0
  1299. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/input.py +0 -0
  1300. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/input_shortcuts.py +0 -0
  1301. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/integrations/__init__.py +0 -0
  1302. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/integrations/daytona.py +0 -0
  1303. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/integrations/docker.py +0 -0
  1304. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/integrations/langsmith.py +0 -0
  1305. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/integrations/modal.py +0 -0
  1306. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/integrations/runloop.py +0 -0
  1307. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/integrations/sandbox_factory.py +0 -0
  1308. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/integrations/sandbox_provider.py +0 -0
  1309. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/io_utils.py +0 -0
  1310. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/jobs_manager.py +0 -0
  1311. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/json_output.py +0 -0
  1312. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/keybindings.py +0 -0
  1313. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/langsmith_cli.py +0 -0
  1314. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/mcp_config_manager.py +0 -0
  1315. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/mcp_registry.py +0 -0
  1316. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/mcp_tools.py +0 -0
  1317. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/mcp_trust.py +0 -0
  1318. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/media_utils.py +0 -0
  1319. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/mentions.py +0 -0
  1320. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/multi_agent.py +0 -0
  1321. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/multi_model_cli.py +0 -0
  1322. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/oauth_mcp.py +0 -0
  1323. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/output.py +0 -0
  1324. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/pipeline.py +0 -0
  1325. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/plugin_marketplace.py +0 -0
  1326. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/pr_cli.py +0 -0
  1327. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/pr_output.py +0 -0
  1328. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/profiles.py +0 -0
  1329. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/project_memory.py +0 -0
  1330. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/project_utils.py +0 -0
  1331. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/prompt_library.py +0 -0
  1332. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/prompts.py +0 -0
  1333. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/py.typed +0 -0
  1334. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/recommend.py +0 -0
  1335. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/remote.py +0 -0
  1336. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/remote_assets/__init__.py +0 -0
  1337. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/remote_assets/ssh_cancel.py +0 -0
  1338. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/remote_assets/ssh_status.py +0 -0
  1339. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/remote_assets/ssh_submit.py +0 -0
  1340. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/remote_assets/ssh_worker.py +0 -0
  1341. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/remote_client.py +0 -0
  1342. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/remote_sandbox.py +0 -0
  1343. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/replay.py +0 -0
  1344. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/repo_map_display.py +0 -0
  1345. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/review_command.py +0 -0
  1346. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/server_graph.py +0 -0
  1347. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/server_manager.py +0 -0
  1348. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/session_fork.py +0 -0
  1349. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/session_manager.py +0 -0
  1350. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/sessions.py +0 -0
  1351. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/skills/__init__.py +0 -0
  1352. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/skills/load.py +0 -0
  1353. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/smart_context_cli.py +0 -0
  1354. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/streaming_diff.py +0 -0
  1355. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/teach.py +0 -0
  1356. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/team_config.py +0 -0
  1357. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/team_orchestration.py +0 -0
  1358. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/test_tools_cli.py +0 -0
  1359. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/textual_adapter.py +0 -0
  1360. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/tool_display.py +0 -0
  1361. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/tools.py +0 -0
  1362. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/unicode_security.py +0 -0
  1363. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/update_check.py +0 -0
  1364. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/vars_store.py +0 -0
  1365. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/web_search.py +0 -0
  1366. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/__init__.py +0 -0
  1367. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/_links.py +0 -0
  1368. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/agents_panel.py +0 -0
  1369. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/approval.py +0 -0
  1370. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/ask_user.py +0 -0
  1371. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/autocomplete.py +0 -0
  1372. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/chat_input.py +0 -0
  1373. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/diff.py +0 -0
  1374. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/history.py +0 -0
  1375. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/loading.py +0 -0
  1376. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/mcp_viewer.py +0 -0
  1377. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/message_store.py +0 -0
  1378. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/messages.py +0 -0
  1379. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/model_selector.py +0 -0
  1380. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/pipeline_screen.py +0 -0
  1381. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/prompt_library_screen.py +0 -0
  1382. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/settings_screen.py +0 -0
  1383. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/status.py +0 -0
  1384. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/thread_selector.py +0 -0
  1385. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/tool_renderers.py +0 -0
  1386. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/tool_widgets.py +0 -0
  1387. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/welcome.py +0 -0
  1388. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/examples/skills/arxiv-search/SKILL.md +0 -0
  1389. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/examples/skills/arxiv-search/arxiv_search.py +0 -0
  1390. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/examples/skills/langgraph-docs/SKILL.md +0 -0
  1391. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/examples/skills/skill-creator/SKILL.md +0 -0
  1392. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/examples/skills/skill-creator/scripts/init_skill.py +0 -0
  1393. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/examples/skills/skill-creator/scripts/quick_validate.py +0 -0
  1394. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/examples/skills/web-research/SKILL.md +0 -0
  1395. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/images/cli.png +0 -0
  1396. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/scripts/check_imports.py +0 -0
  1397. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/scripts/install.sh +0 -0
  1398. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/session-test-data/11d5c14b1c4e425b93b4e1673f78c95b.db +0 -0
  1399. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/session-test-data/11d5c14b1c4e425b93b4e1673f78c95b.db-journal +0 -0
  1400. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/session-test-data/35c20f077843421bab3837a972cd5f67.db +0 -0
  1401. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/session-test-data/35c20f077843421bab3837a972cd5f67.db-journal +0 -0
  1402. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/session-test-data/af60487dd8c4443b91651b60ae8b68d0.db +0 -0
  1403. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/session-test-data/af60487dd8c4443b91651b60ae8b68d0.db-journal +0 -0
  1404. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/session-test-data/probe.db +0 -0
  1405. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/session-test-data/probe.db-journal +0 -0
  1406. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/README.md +0 -0
  1407. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/conftest.py +0 -0
  1408. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/integration_tests/__init__.py +0 -0
  1409. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/integration_tests/benchmarks/__init__.py +0 -0
  1410. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/integration_tests/benchmarks/test_startup_benchmarks.py +0 -0
  1411. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/integration_tests/conftest.py +0 -0
  1412. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/integration_tests/test_acp_mode.py +0 -0
  1413. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/integration_tests/test_compact_resume.py +0 -0
  1414. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/integration_tests/test_sandbox_factory.py +0 -0
  1415. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/integration_tests/test_sandbox_operations.py +0 -0
  1416. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/__init__.py +0 -0
  1417. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/conftest.py +0 -0
  1418. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/skills/__init__.py +0 -0
  1419. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/skills/test_commands.py +0 -0
  1420. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/skills/test_load.py +0 -0
  1421. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/skills/test_skills_json.py +0 -0
  1422. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_app.py +0 -0
  1423. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_approval.py +0 -0
  1424. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_args.py +0 -0
  1425. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_ask_user.py +0 -0
  1426. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_ask_user_middleware.py +0 -0
  1427. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_autocomplete.py +0 -0
  1428. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_bedrock_async.py +0 -0
  1429. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_charset.py +0 -0
  1430. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_chat_input.py +0 -0
  1431. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_clipboard.py +0 -0
  1432. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_benchmark.py +0 -0
  1433. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_build.py +0 -0
  1434. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_checkpoint.py +0 -0
  1435. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_explain.py +0 -0
  1436. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_index.py +0 -0
  1437. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_memory_sync.py +0 -0
  1438. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_pr_review.py +0 -0
  1439. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_test.py +0 -0
  1440. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_undo.py +0 -0
  1441. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_compact.py +0 -0
  1442. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_compact_tool.py +0 -0
  1443. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_config.py +0 -0
  1444. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_configurable_model.py +0 -0
  1445. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_debug.py +0 -0
  1446. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_end_to_end.py +0 -0
  1447. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_exception_handling.py +0 -0
  1448. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_extensibility.py +0 -0
  1449. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_file_ops.py +0 -0
  1450. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_history.py +0 -0
  1451. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_hooks.py +0 -0
  1452. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_imports.py +0 -0
  1453. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_input_parsing.py +0 -0
  1454. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_killer_features.py +0 -0
  1455. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_local_context.py +0 -0
  1456. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_main.py +0 -0
  1457. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_main_acp_mode.py +0 -0
  1458. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_main_args.py +0 -0
  1459. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_mcp_tools.py +0 -0
  1460. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_mcp_trust.py +0 -0
  1461. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_mcp_viewer.py +0 -0
  1462. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_media_utils.py +0 -0
  1463. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_message_store.py +0 -0
  1464. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_messages.py +0 -0
  1465. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_model_selector.py +0 -0
  1466. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_model_switch.py +0 -0
  1467. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_new_features.py +0 -0
  1468. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_non_interactive.py +0 -0
  1469. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_output.py +0 -0
  1470. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_prompts.py +0 -0
  1471. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_reload.py +0 -0
  1472. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_remote.py +0 -0
  1473. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_remote_client.py +0 -0
  1474. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_server_config.py +0 -0
  1475. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_server_graph.py +0 -0
  1476. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_server_helpers.py +0 -0
  1477. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_server_manager.py +0 -0
  1478. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_sessions.py +0 -0
  1479. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_shell_allow_list.py +0 -0
  1480. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_status.py +0 -0
  1481. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_subagents.py +0 -0
  1482. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_team_orchestration.py +0 -0
  1483. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_textual_adapter.py +0 -0
  1484. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_thread_selector.py +0 -0
  1485. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_token_tracker.py +0 -0
  1486. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_ui.py +0 -0
  1487. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_unicode_security.py +0 -0
  1488. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_update_check.py +0 -0
  1489. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_version.py +0 -0
  1490. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_welcome.py +0 -0
  1491. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/tools/__init__.py +0 -0
  1492. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/tools/test_fetch_url.py +0 -0
  1493. {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tmp-session-export.json +0 -0
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.7.4](https://github.com/bogware/bog-agents/compare/bog-agents-cli==0.7.3...bog-agents-cli==0.7.4) (2026-04-30)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **bedrock:** add `auth_mode` toggle (`auto`/`sso`/`static`/`profile`/`iam`) plus auto-fallback from expired SSO to static credentials when `~/.aws/config` short-circuits the credential chain ([#54](https://github.com/bogware/bog-agents/issues/54)) ([fef8228](https://github.com/bogware/bog-agents/commit/fef82283e9fc07f5d286a26eea093e68d28cdb42))
9
+ * **bedrock:** cache probe failures so a single expired SSO session no longer logs 20+ identical TokenRetrievalError tracebacks ([#53](https://github.com/bogware/bog-agents/issues/53)) ([fef8228](https://github.com/bogware/bog-agents/commit/fef82283e9fc07f5d286a26eea093e68d28cdb42))
10
+ * **bedrock:** add `langchain-aws` + AWS credential probe to `--doctor`; pre-flight credential check in `-n` mode surfaces SSO-expired errors as a clean stderr line instead of a wrapped RemoteException ([fef8228](https://github.com/bogware/bog-agents/commit/fef82283e9fc07f5d286a26eea093e68d28cdb42))
11
+ * **cli:** install atexit + signal handlers in `cli_main()` to emit terminal-restore sequences (disable mouse tracking, leave alternate screen, show cursor) so a Textual crash mid-launch no longer leaves SGR mouse-protocol garbage like `[<35;57;14M[` in the user's shell input line ([fef8228](https://github.com/bogware/bog-agents/commit/fef82283e9fc07f5d286a26eea093e68d28cdb42))
12
+
13
+
14
+ ### Catalog
15
+
16
+ * refresh provider model lists against live docs (2026-04-30): Anthropic Opus 4.7 / Sonnet 4.6 / Haiku 4.5 + legacy 4.6/4.5/4.1; Bedrock `us.*` inference-profile IDs + base IDs for Anthropic + Amazon Nova (Premier/Pro/Lite/Micro) + Meta Llama 4 Maverick/Scout + 3.3 + Mistral Large 3 / Pixtral Large; Google Gemini 2.5 Pro/Flash/Flash-Lite + Gemini 3.1 preview family ([fef8228](https://github.com/bogware/bog-agents/commit/fef82283e9fc07f5d286a26eea093e68d28cdb42))
17
+
18
+ ## [0.7.3](https://github.com/bogware/bog-agents/compare/bog-agents-cli==0.7.2...bog-agents-cli==0.7.3) (2026-04-29)
19
+
20
+
21
+ ### Features
22
+
23
+ * verify/call subcommands, shell reliability, cross-platform hardening, 12 CVEs closed ([#51](https://github.com/bogware/bog-agents/issues/51)) ([5f13fb4](https://github.com/bogware/bog-agents/commit/5f13fb4de5aa7cb50731b634796f0732a8a25f65))
24
+
3
25
  ## [0.7.2](https://github.com/bogware/bog-agents/compare/bog-agents-cli==0.7.1...bog-agents-cli==0.7.2) (2026-04-25)
4
26
 
5
27
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bog-agents-cli
3
- Version: 0.7.2
3
+ Version: 0.7.4
4
4
  Summary: A coding agent in your terminal. 50+ commands, any LLM provider, persistent memory, git workflow, code review, plan mode, remote sandboxes, and CI/CD automation. One install, no code required.
5
5
  Project-URL: Homepage, https://github.com/bogware/bog-agents
6
6
  Project-URL: Repository, https://github.com/bogware/bog-agents
@@ -24,25 +24,30 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
24
24
  Classifier: Topic :: Terminals
25
25
  Requires-Python: <4.0,>=3.11
26
26
  Requires-Dist: aiosqlite<1.0.0,>=0.19.0
27
- Requires-Dist: bog-agents==0.7.2
27
+ Requires-Dist: bog-agents==0.7.4
28
28
  Requires-Dist: croniter<4.0.0,>=3.0.0
29
+ Requires-Dist: cryptography>=46.0.7
29
30
  Requires-Dist: httpx<1.0.0,>=0.28.1
30
31
  Requires-Dist: keyring<27.0.0,>=25.0.0
31
32
  Requires-Dist: langchain-mcp-adapters<1.0.0,>=0.2.0
32
- Requires-Dist: langchain-openai<2.0.0,>=1.1.8
33
+ Requires-Dist: langchain-openai<2.0.0,>=1.1.14
33
34
  Requires-Dist: langchain<2.0.0,>=1.2.10
34
35
  Requires-Dist: langgraph-checkpoint-sqlite<4.0.0,>=3.0.0
35
36
  Requires-Dist: langgraph-cli[inmem]<1.0.0,>=0.4.15
36
37
  Requires-Dist: langgraph-sdk<1.0.0,>=0.3.11
37
38
  Requires-Dist: langgraph<2.0.0,>=1.1.2
38
- Requires-Dist: langsmith<1.0.0,>=0.7.7
39
+ Requires-Dist: langsmith<1.0.0,>=0.7.31
39
40
  Requires-Dist: markdownify<2.0.0,>=0.13.0
40
- Requires-Dist: pillow<13.0.0,>=10.0.0
41
+ Requires-Dist: pillow<13.0.0,>=12.2.0
41
42
  Requires-Dist: prompt-toolkit<4.0.0,>=3.0.52
43
+ Requires-Dist: pyasn1>=0.6.3
44
+ Requires-Dist: pygments>=2.20.0
45
+ Requires-Dist: pyjwt>=2.12.0
42
46
  Requires-Dist: pyperclip<2.0.0,>=1.11.0
43
- Requires-Dist: python-dotenv<2.0.0,>=1.0.0
47
+ Requires-Dist: python-dotenv<2.0.0,>=1.2.2
48
+ Requires-Dist: python-multipart>=0.0.26
44
49
  Requires-Dist: pyyaml<7.0.0,>=6.0.0
45
- Requires-Dist: requests<3.0.0,>=2.0.0
50
+ Requires-Dist: requests<3.0.0,>=2.33.0
46
51
  Requires-Dist: rich<15.0.0,>=14.0.0
47
52
  Requires-Dist: textual-autocomplete<5.0.0,>=3.0.0
48
53
  Requires-Dist: textual<9.0.0,>=8.0.0
@@ -197,9 +202,9 @@ the introductions in about thirty seconds.
197
202
 
198
203
  ```bash
199
204
  bog-agents -M claude-sonnet-4-6
200
- bog-agents -M gpt-4o
201
- bog-agents -M ollama:llama3 # local, free
202
- bog-agents -M bedrock_converse:anthropic.claude-sonnet-4-6
205
+ bog-agents -M openai:gpt-5.4
206
+ bog-agents -M ollama:gpt-oss:20b # local, free, tool-capable
207
+ bog-agents -M bedrock_converse:us.anthropic.claude-sonnet-4-6
203
208
  ```
204
209
 
205
210
  Something feeling off? Ask it.
@@ -472,15 +477,15 @@ Use `provider:model` format. Any LangChain-compatible chat model works.
472
477
  | Provider | Extra | Example |
473
478
  |----------|--------------|---------|
474
479
  | Anthropic | `anthropic` | `anthropic:claude-sonnet-4-6` |
475
- | OpenAI | *(included)* | `openai:gpt-4o` |
476
- | AWS Bedrock | `bedrock` | `bedrock_converse:anthropic.claude-sonnet-4-6` |
480
+ | OpenAI | *(included)* | `openai:gpt-5.4` |
481
+ | AWS Bedrock | `bedrock` | `bedrock_converse:us.anthropic.claude-sonnet-4-6` |
477
482
  | Google AI | `google-genai` | `google_genai:gemini-2.5-pro` |
478
483
  | Vertex AI | `vertexai` | `google_vertexai:gemini-2.5-pro` |
479
- | Ollama | `ollama` | `ollama:llama3` |
484
+ | Ollama | `ollama` | `ollama:gpt-oss:20b` |
480
485
  | Groq | `groq` | `groq:llama-3.3-70b` |
481
486
  | DeepSeek | `deepseek` | `deepseek:deepseek-chat` |
482
487
  | Fireworks | `fireworks` | `fireworks:llama-v3p3-70b` |
483
- | Mistral | `mistralai` | `mistralai:mistral-large` |
488
+ | Mistral | `mistralai` | `mistralai:mistral-large-3-2411` |
484
489
  | NVIDIA | `nvidia` | `nvidia:nemotron-70b` |
485
490
  | OpenRouter | `openrouter` | `openrouter:meta-llama/llama-3` |
486
491
  | Perplexity | `perplexity` | `perplexity:sonar-pro` |
@@ -490,6 +495,48 @@ Use `provider:model` format. Any LangChain-compatible chat model works.
490
495
  | HuggingFace | `huggingface` | `huggingface:meta-llama/Llama-3` |
491
496
  | Azure OpenAI | *(via openai)* | `azure_openai:gpt-4o` |
492
497
 
498
+ ### AWS Bedrock: pick how you authenticate
499
+
500
+ boto3's credential chain stops at the first config it sees. If `~/.aws/config`
501
+ declares an SSO session that's expired but `~/.aws/credentials` has fresh static
502
+ keys, the SSO leg short-circuits and the static keys never get a turn. The CLI
503
+ handles this in `auto` mode (default) by retrying with a credentials-file-only
504
+ session when the SSO probe fails.
505
+
506
+ Force a specific path when you need to. Either set
507
+ `BOG_AGENTS_BEDROCK_AUTH_MODE` in the env, or write to `~/.bog-agents/config.toml`:
508
+
509
+ ```toml
510
+ [models.providers.bedrock]
511
+ auth_mode = "static" # auto | sso | static | profile | iam
512
+ aws_profile = "dev" # only when auth_mode = "profile"
513
+ ```
514
+
515
+ `bog-agents --doctor` shows you which mode resolved and whether the credentials
516
+ came back valid. New in 0.7.4.
517
+
518
+ ### Local Ollama: which model to use
519
+
520
+ Ollama's chat API mimics OpenAI's tools-API JSON schema. Models trained
521
+ against that exact schema engage tools cleanly; models trained against
522
+ other formats (Mistral's `[TOOL_CALLS]{}`, Hermes' `<tool_call>{}</tool_call>`,
523
+ Qwen's chat-template tool call) emit calls in the message text and Ollama's
524
+ adapter doesn't translate them. The CLI ships a parser middleware that
525
+ recovers most text-shaped tool calls automatically when you select an
526
+ `ollama:` model, but recovery is best-effort.
527
+
528
+ - **Recommended**: `ollama:gpt-oss:20b` — OpenAI tools-API native, works
529
+ end-to-end with no recovery needed. Fits in 16GB of VRAM.
530
+ - **Recovers via parser**: `ollama:mistral-nemo:12b`, `ollama:hermes3:8b`,
531
+ some `ollama:qwen2.5-coder` runs.
532
+ - **Doesn't work**: `ollama:deepseek-coder-v2:16b` (Ollama's manifest
533
+ doesn't expose the `tools` capability — see
534
+ [ollama/ollama#3303](https://github.com/ollama/ollama/issues) if you want
535
+ to nudge upstream), `ollama:starcoder2`, `ollama:codellama`.
536
+
537
+ Run `bog-agents --doctor` to see whether your configured default Ollama
538
+ model is on the known-good list.
539
+
493
540
  ---
494
541
 
495
542
  ## Recipes for CI and scripting
@@ -548,6 +595,9 @@ Commands:
548
595
  reset Reset an agent's prompt
549
596
  skills Manage skills (list/create/info/delete)
550
597
  threads Manage threads (list/delete)
598
+ daemon Manage the ambient daemon (start/stop/jobs/...)
599
+ verify Run typecheck + lint + tests; write verification_summary.md
600
+ call MESSAGE Talk to a running --serve instance (thin HTTP client)
551
601
 
552
602
  Core:
553
603
  -M, --model MODEL Model to use
@@ -44,9 +44,9 @@ the introductions in about thirty seconds.
44
44
 
45
45
  ```bash
46
46
  bog-agents -M claude-sonnet-4-6
47
- bog-agents -M gpt-4o
48
- bog-agents -M ollama:llama3 # local, free
49
- bog-agents -M bedrock_converse:anthropic.claude-sonnet-4-6
47
+ bog-agents -M openai:gpt-5.4
48
+ bog-agents -M ollama:gpt-oss:20b # local, free, tool-capable
49
+ bog-agents -M bedrock_converse:us.anthropic.claude-sonnet-4-6
50
50
  ```
51
51
 
52
52
  Something feeling off? Ask it.
@@ -319,15 +319,15 @@ Use `provider:model` format. Any LangChain-compatible chat model works.
319
319
  | Provider | Extra | Example |
320
320
  |----------|--------------|---------|
321
321
  | Anthropic | `anthropic` | `anthropic:claude-sonnet-4-6` |
322
- | OpenAI | *(included)* | `openai:gpt-4o` |
323
- | AWS Bedrock | `bedrock` | `bedrock_converse:anthropic.claude-sonnet-4-6` |
322
+ | OpenAI | *(included)* | `openai:gpt-5.4` |
323
+ | AWS Bedrock | `bedrock` | `bedrock_converse:us.anthropic.claude-sonnet-4-6` |
324
324
  | Google AI | `google-genai` | `google_genai:gemini-2.5-pro` |
325
325
  | Vertex AI | `vertexai` | `google_vertexai:gemini-2.5-pro` |
326
- | Ollama | `ollama` | `ollama:llama3` |
326
+ | Ollama | `ollama` | `ollama:gpt-oss:20b` |
327
327
  | Groq | `groq` | `groq:llama-3.3-70b` |
328
328
  | DeepSeek | `deepseek` | `deepseek:deepseek-chat` |
329
329
  | Fireworks | `fireworks` | `fireworks:llama-v3p3-70b` |
330
- | Mistral | `mistralai` | `mistralai:mistral-large` |
330
+ | Mistral | `mistralai` | `mistralai:mistral-large-3-2411` |
331
331
  | NVIDIA | `nvidia` | `nvidia:nemotron-70b` |
332
332
  | OpenRouter | `openrouter` | `openrouter:meta-llama/llama-3` |
333
333
  | Perplexity | `perplexity` | `perplexity:sonar-pro` |
@@ -337,6 +337,48 @@ Use `provider:model` format. Any LangChain-compatible chat model works.
337
337
  | HuggingFace | `huggingface` | `huggingface:meta-llama/Llama-3` |
338
338
  | Azure OpenAI | *(via openai)* | `azure_openai:gpt-4o` |
339
339
 
340
+ ### AWS Bedrock: pick how you authenticate
341
+
342
+ boto3's credential chain stops at the first config it sees. If `~/.aws/config`
343
+ declares an SSO session that's expired but `~/.aws/credentials` has fresh static
344
+ keys, the SSO leg short-circuits and the static keys never get a turn. The CLI
345
+ handles this in `auto` mode (default) by retrying with a credentials-file-only
346
+ session when the SSO probe fails.
347
+
348
+ Force a specific path when you need to. Either set
349
+ `BOG_AGENTS_BEDROCK_AUTH_MODE` in the env, or write to `~/.bog-agents/config.toml`:
350
+
351
+ ```toml
352
+ [models.providers.bedrock]
353
+ auth_mode = "static" # auto | sso | static | profile | iam
354
+ aws_profile = "dev" # only when auth_mode = "profile"
355
+ ```
356
+
357
+ `bog-agents --doctor` shows you which mode resolved and whether the credentials
358
+ came back valid. New in 0.7.4.
359
+
360
+ ### Local Ollama: which model to use
361
+
362
+ Ollama's chat API mimics OpenAI's tools-API JSON schema. Models trained
363
+ against that exact schema engage tools cleanly; models trained against
364
+ other formats (Mistral's `[TOOL_CALLS]{}`, Hermes' `<tool_call>{}</tool_call>`,
365
+ Qwen's chat-template tool call) emit calls in the message text and Ollama's
366
+ adapter doesn't translate them. The CLI ships a parser middleware that
367
+ recovers most text-shaped tool calls automatically when you select an
368
+ `ollama:` model, but recovery is best-effort.
369
+
370
+ - **Recommended**: `ollama:gpt-oss:20b` — OpenAI tools-API native, works
371
+ end-to-end with no recovery needed. Fits in 16GB of VRAM.
372
+ - **Recovers via parser**: `ollama:mistral-nemo:12b`, `ollama:hermes3:8b`,
373
+ some `ollama:qwen2.5-coder` runs.
374
+ - **Doesn't work**: `ollama:deepseek-coder-v2:16b` (Ollama's manifest
375
+ doesn't expose the `tools` capability — see
376
+ [ollama/ollama#3303](https://github.com/ollama/ollama/issues) if you want
377
+ to nudge upstream), `ollama:starcoder2`, `ollama:codellama`.
378
+
379
+ Run `bog-agents --doctor` to see whether your configured default Ollama
380
+ model is on the known-good list.
381
+
340
382
  ---
341
383
 
342
384
  ## Recipes for CI and scripting
@@ -395,6 +437,9 @@ Commands:
395
437
  reset Reset an agent's prompt
396
438
  skills Manage skills (list/create/info/delete)
397
439
  threads Manage threads (list/delete)
440
+ daemon Manage the ambient daemon (start/stop/jobs/...)
441
+ verify Run typecheck + lint + tests; write verification_summary.md
442
+ call MESSAGE Talk to a running --serve instance (thin HTTP client)
398
443
 
399
444
  Core:
400
445
  -M, --model MODEL Model to use
@@ -0,0 +1,96 @@
1
+ """Cross-platform process inspection helpers.
2
+
3
+ Centralises the Windows-vs-POSIX awkwardness around `os.kill(pid, 0)`.
4
+
5
+ On POSIX, sending signal 0 to a non-existent PID raises
6
+ `ProcessLookupError` and the standard try/except idiom works.
7
+
8
+ On Windows, `os.kill(pid, 0)` for a dead PID can raise a generic
9
+ `OSError [WinError 87] "The parameter is incorrect"` *and* CPython
10
+ sometimes propagates this as a `SystemError: returned a result with
11
+ an exception set` — a known C-level quirk we hit during pass-2
12
+ validation. The robust answer on Windows is to ask `tasklist` directly.
13
+
14
+ `signal.SIGKILL` doesn't exist on Windows either, so the kill helper
15
+ falls back to TerminateProcess via `os.kill(pid, signal.SIGTERM)` (which
16
+ on Windows is mapped to TerminateProcess in CPython) and skips the
17
+ SIGKILL escalation gracefully.
18
+ """
19
+
20
+ from __future__ import annotations
21
+
22
+ import logging
23
+ import os
24
+ import signal
25
+ import subprocess # noqa: S404
26
+ import sys
27
+ from typing import Final
28
+
29
+ logger = logging.getLogger(__name__)
30
+
31
+ _TASKLIST_TIMEOUT_SECS: Final[int] = 3
32
+
33
+
34
+ def is_running(pid: int) -> bool:
35
+ """Return True when *pid* names a live process.
36
+
37
+ Args:
38
+ pid: Process ID to probe.
39
+
40
+ Returns:
41
+ True if the process exists, False otherwise. Catches
42
+ `ProcessLookupError`, `PermissionError`, generic `OSError`
43
+ (Windows WinError 87 family), and `SystemError` (CPython
44
+ Windows quirk) — never raises.
45
+ """
46
+ if pid <= 0:
47
+ return False
48
+
49
+ if sys.platform == "win32":
50
+ try:
51
+ result = subprocess.run( # noqa: S603
52
+ ["tasklist", "/FI", f"PID eq {pid}", "/NH", "/FO", "CSV"],
53
+ capture_output=True,
54
+ text=True,
55
+ timeout=_TASKLIST_TIMEOUT_SECS,
56
+ check=False,
57
+ )
58
+ except (OSError, subprocess.SubprocessError):
59
+ return False
60
+ return f'"{pid}"' in (result.stdout or "")
61
+
62
+ try:
63
+ os.kill(pid, 0)
64
+ except (ProcessLookupError, PermissionError, OSError):
65
+ return False
66
+ return True
67
+
68
+
69
+ def terminate(pid: int, *, force: bool = False) -> bool:
70
+ """Best-effort termination of *pid*.
71
+
72
+ Args:
73
+ pid: Process ID to terminate.
74
+ force: When True, escalate to SIGKILL on POSIX after SIGTERM.
75
+ Ignored on Windows (no SIGKILL — `os.kill(pid, SIGTERM)`
76
+ already maps to TerminateProcess and is hard-stop).
77
+
78
+ Returns:
79
+ True if the kill call ran without raising; the caller should
80
+ re-check `is_running(pid)` to confirm exit. False when the
81
+ kill itself failed (PID gone, permission denied, etc.).
82
+ """
83
+ if not is_running(pid):
84
+ return True
85
+ try:
86
+ os.kill(pid, signal.SIGTERM)
87
+ except (ProcessLookupError, PermissionError, OSError) as exc:
88
+ logger.debug("SIGTERM to pid %d failed: %s", pid, exc)
89
+ return False
90
+
91
+ if force and hasattr(signal, "SIGKILL"):
92
+ try:
93
+ os.kill(pid, signal.SIGKILL)
94
+ except (ProcessLookupError, PermissionError, OSError) as exc:
95
+ logger.debug("SIGKILL to pid %d failed: %s", pid, exc)
96
+ return True
@@ -0,0 +1,3 @@
1
+ """Version information for `bog-agents-cli`."""
2
+
3
+ __version__ = "0.7.4" # x-release-please-version
@@ -62,7 +62,15 @@ DEFAULT_AGENT_NAME = "agent"
62
62
  REQUIRE_COMPACT_TOOL_APPROVAL: bool = True
63
63
  """When `True`, `compact_conversation` requires HITL approval like other gated tools."""
64
64
 
65
- _RESERVED_AGENT_HOME_DIRS = frozenset({"logs", "plugins", "skills"})
65
+ _RESERVED_AGENT_HOME_DIRS = frozenset(
66
+ {
67
+ "daemon", # bog-agents-daemon state (token, runs/, daemon.pid)
68
+ "logs",
69
+ "pipelines", # CLI pipeline definitions, not an agent
70
+ "plugins",
71
+ "skills",
72
+ }
73
+ )
66
74
  """Directories under `~/.bog-agents` reserved for global CLI state, not agents."""
67
75
 
68
76
 
@@ -732,9 +740,16 @@ def create_cli_agent(
732
740
  else settings.get_project_agents_dir()
733
741
  )
734
742
 
743
+ # Bundled-agents seeding: if the project is Python/Node/Rust/Go and
744
+ # the user hasn't authored their own subagents, this pulls in
745
+ # code-reviewer, test-author, and language-specific specialists from
746
+ # the package's bundled_agents/ tree. User and project subagents
747
+ # override on name conflict.
748
+ project_root_for_bundled = effective_cwd if effective_cwd is not None else None
735
749
  for subagent_meta in list_subagents(
736
750
  user_agents_dir=user_agents_dir,
737
751
  project_agents_dir=project_agents_dir,
752
+ project_root=project_root_for_bundled,
738
753
  ):
739
754
  subagent: SubAgent = {
740
755
  "name": subagent_meta["name"],
@@ -749,10 +764,24 @@ def create_cli_agent(
749
764
  agent_middleware = []
750
765
  agent_middleware.append(ConfigurableModelMiddleware())
751
766
 
752
- # Add ask_user middleware (must be early so its tool is available)
753
- from bog_agents_cli.ask_user import AskUserMiddleware
767
+ # Auto-enable tool-call parser for Ollama models. Many local models emit
768
+ # tool calls as text (Mistral [TOOL_CALLS], Hermes <tool_call>, fenced
769
+ # JSON) instead of using OpenAI's structured tool_calls field; the parser
770
+ # recovers them so the agent loop can proceed. No-op for cloud providers.
771
+ if (settings.model_provider or "").lower() == "ollama":
772
+ from bog_agents.middleware import ToolCallParserMiddleware
773
+
774
+ agent_middleware.append(ToolCallParserMiddleware())
775
+
776
+ # Add ask_user middleware (must be early so its tool is available).
777
+ # Skip in non-interactive mode: there is no user to answer, and a stray
778
+ # `ask_user` call mid-run produces a malformed HITL interrupt that the
779
+ # CLI rejects, which derails the agent without recourse. Headless agents
780
+ # should make a best-effort decision and proceed instead.
781
+ if interactive:
782
+ from bog_agents_cli.ask_user import AskUserMiddleware
754
783
 
755
- agent_middleware.append(AskUserMiddleware())
784
+ agent_middleware.append(AskUserMiddleware())
756
785
 
757
786
  # Add memory middleware
758
787
  if enable_memory:
@@ -10059,6 +10059,18 @@ class BogAgentsApp(App):
10059
10059
  model_id = (self._base_model_spec or "").lower()
10060
10060
  if model_id.startswith("ollama:"):
10061
10061
  is_tool_capability_error = True
10062
+ # Bedrock-specific: when the langgraph remote stream wraps a
10063
+ # botocore TokenRetrievalError it ends up here as a generic
10064
+ # 'internal error occurred' message. Detect by exception
10065
+ # *name* (RemoteException carries the original class name in
10066
+ # str(e) on most paths) AND by checking whether the active
10067
+ # model is bedrock-flavoured. We surface a Bedrock-specific
10068
+ # action hint below.
10069
+ is_bedrock_model = (
10070
+ (self._base_model_spec or "")
10071
+ .lower()
10072
+ .startswith(("bedrock:", "bedrock_converse:"))
10073
+ )
10062
10074
  is_auth_error = any(
10063
10075
  keyword in err_name.lower() or keyword in err_str
10064
10076
  for keyword in (
@@ -10069,7 +10081,15 @@ class BogAgentsApp(App):
10069
10081
  "accessdenied",
10070
10082
  "expired",
10071
10083
  "sso",
10084
+ "tokenretrievalerror",
10085
+ "nocredentialserror",
10072
10086
  )
10087
+ ) or (
10088
+ # Generic 'internal error' from langgraph + bedrock model =
10089
+ # almost always an SSO/credential issue at the AWS layer.
10090
+ err_name == "RemoteException"
10091
+ and "internal error" in err_str
10092
+ and is_bedrock_model
10073
10093
  )
10074
10094
  if is_tool_capability_error:
10075
10095
  await self._mount_message(
@@ -0,0 +1,43 @@
1
+ ---
2
+ name: code-reviewer
3
+ description: |
4
+ Critical Go code review. Reads the most recent diff, reports bugs
5
+ by severity with concrete fixes. Read-only.
6
+ model: anthropic:claude-sonnet-4-6
7
+ ---
8
+
9
+ You are a senior Go reviewer.
10
+
11
+ ## Inputs (read-only)
12
+ - `git diff HEAD~1 HEAD`
13
+ - `go.mod`
14
+ - `go vet ./...`
15
+ - `golangci-lint run` if configured
16
+
17
+ ## What to look for
18
+ 1. **Goroutine leaks**: spawned goroutines without context-cancel
19
+ path, missing `defer wg.Done()`.
20
+ 2. **Error handling**: `if err != nil { return nil, err }` with the
21
+ wrong sentinel comparison; missing `errors.Is`/`errors.As`.
22
+ 3. **Race conditions**: shared map without `sync.Mutex`,
23
+ `time.After` in a tight loop.
24
+ 4. **Resource leaks**: `defer rsp.Body.Close()` missing,
25
+ `defer file.Close()` missing.
26
+ 5. **Test gaps**: new exported function without `func TestXxx`.
27
+
28
+ ## Output
29
+
30
+ ```markdown
31
+ ## Code review summary
32
+ - Files reviewed: N
33
+ - Bugs found: critical=N, major=N, minor=N
34
+
35
+ ## Findings
36
+
37
+ ### [critical|major|minor] <one-line title>
38
+ **File:** path/to/file.go:LINE
39
+ **Symptom:** what's wrong
40
+ **Fix:** before/after snippet
41
+ ```
42
+
43
+ End with `--- review complete ---`.
@@ -0,0 +1,49 @@
1
+ ---
2
+ name: code-reviewer
3
+ description: |
4
+ Critical code review for a Node.js / TypeScript / JavaScript project.
5
+ Reads the most recent diff, reports bugs by severity with concrete
6
+ fixes. Read-only — never edits code.
7
+ model: anthropic:claude-sonnet-4-6
8
+ ---
9
+
10
+ You are a senior Node.js / TypeScript reviewer. Find real bugs, not
11
+ style nits.
12
+
13
+ ## Inputs (read-only)
14
+ - `git diff HEAD~1 HEAD`
15
+ - `package.json` for scripts + dependency versions
16
+ - `tsconfig.json` for type-check strictness flags
17
+
18
+ ## What to look for
19
+ 1. **Async correctness**: missing `await`, unhandled promise
20
+ rejections, `forEach` over async functions, race conditions on
21
+ shared state.
22
+ 2. **TypeScript holes**: `any` leaks, `as` casts without runtime
23
+ guards, exhaustiveness gaps in `switch` over union types.
24
+ 3. **Null/undefined**: optional chaining where strict access is
25
+ required, missing nullish-coalescing, eager `.toString()` on
26
+ maybe-undefined.
27
+ 4. **React / Ink**: missing `key` props in lists, stale closures in
28
+ `useEffect`, side effects in render, Ink components rendered
29
+ without mount-time keys.
30
+ 5. **Memory + resource leaks**: unsubscribed event listeners,
31
+ uncleared timers, open file handles.
32
+ 6. **Test gaps**: new public function without coverage.
33
+
34
+ ## Output
35
+
36
+ ```markdown
37
+ ## Code review summary
38
+ - Files reviewed: N
39
+ - Bugs found: critical=N, major=N, minor=N
40
+
41
+ ## Findings
42
+
43
+ ### [critical|major|minor] <one-line title>
44
+ **File:** path/to/file.ts:LINE
45
+ **Symptom:** what's wrong
46
+ **Fix:** before/after snippet
47
+ ```
48
+
49
+ End with `--- review complete ---`.
@@ -0,0 +1,31 @@
1
+ ---
2
+ name: react-ink-artist
3
+ description: |
4
+ Designs ASCII sprites and Ink layouts for terminal UIs. Delegate for
5
+ new screens, banners, sprites, terminal-color polish.
6
+ model: anthropic:claude-sonnet-4-6
7
+ ---
8
+
9
+ You are a TUI specialist. Output renders inside a typical 80x24
10
+ terminal — assume that constraint.
11
+
12
+ ## Rules
13
+ - Sprites: ≤20 rows × 60 cols. Multi-line string constants ending
14
+ with `\n`-newlines. ASCII only — no emoji unless the project's
15
+ existing sprites use them.
16
+ - Use Ink's `<Box>` and `<Text>` for layout. Use the `color` prop for
17
+ accent. Never inject ANSI escape sequences directly.
18
+ - Match the visual idiom of existing screens. Read at least one
19
+ existing screen file before designing a new one.
20
+
21
+ ## Workflow
22
+ 1. Read existing `src/render/sprites.ts` or equivalent.
23
+ 2. Add new exports — don't modify shipped sprites unless asked.
24
+ 3. If wiring into a screen, edit only the layout. Leave game state
25
+ alone.
26
+ 4. Run `npx tsc --noEmit` before declaring done.
27
+
28
+ ## Output
29
+ - Sprite name(s) and a 5-10 line preview in code-block
30
+ - Files touched
31
+ - tsc result (run, don't claim)
@@ -0,0 +1,30 @@
1
+ ---
2
+ name: test-author
3
+ description: |
4
+ Writes deterministic vitest / jest unit tests for Node.js projects.
5
+ Picks one uncovered code path per invocation, adds a focused test,
6
+ and verifies it passes.
7
+ model: anthropic:claude-sonnet-4-6
8
+ ---
9
+
10
+ You are a Node.js QA engineer.
11
+
12
+ ## Toolchain
13
+ - Detect: vitest first (fast, ESM-native), then jest. The runner is
14
+ whichever is in `package.json` `devDependencies`.
15
+ - Place tests next to source as `<name>.test.ts` OR under `__tests__/`
16
+ matching the existing convention — mirror what's already there.
17
+ - Prefer real implementations over mocks. Use `vi.useFakeTimers()` /
18
+ `jest.useFakeTimers()` only when wall time matters.
19
+
20
+ ## Workflow
21
+ 1. Read `git diff HEAD~1 HEAD` and the existing `*.test.ts` files.
22
+ Pick ONE uncovered branch.
23
+ 2. Write a deterministic test (`vi.spyOn` over module mocks, fixed
24
+ seed if RNG is involved).
25
+ 3. Run `npx vitest run path/to/test.test.ts` (or `jest`) via the
26
+ execute tool. Iterate the TEST until it passes — don't change
27
+ the source.
28
+ 4. Report: file path, count added, pass/fail counts.
29
+
30
+ End with `--- test added ---`.
@@ -0,0 +1,47 @@
1
+ ---
2
+ name: code-reviewer
3
+ description: |
4
+ Critical code review for a Python codebase. Reads the most recent diff
5
+ (or specific files), reports bugs by severity with concrete fixes.
6
+ Read-only — never edits code.
7
+ model: anthropic:claude-sonnet-4-6
8
+ ---
9
+
10
+ You are a senior Python code reviewer. Your job: find real bugs, not
11
+ style nits.
12
+
13
+ ## Inputs (read-only)
14
+ - `git diff HEAD~1 HEAD` — most recent commit's changes
15
+ - `pyproject.toml` / `setup.cfg` for type-check + lint config
16
+ - `tests/` for what's covered
17
+
18
+ ## What to look for
19
+ 1. **Mutability + reference bugs**: shared default args, mutating
20
+ inputs, dict/list aliasing.
21
+ 2. **Async pitfalls**: blocking I/O inside async functions, missing
22
+ `await`, races on shared state.
23
+ 3. **Type-system holes**: `Any` leaks, `# type: ignore` without a
24
+ reason, missing `Protocol` boundary checks.
25
+ 4. **Error handling**: broad `except Exception`, swallowed
26
+ `KeyboardInterrupt`, silent failures in loops.
27
+ 5. **Resource leaks**: missing `with` for files/sockets/subprocess,
28
+ unawaited tasks, leaking fd's on Windows.
29
+ 6. **Test gaps**: new public function without a test, branch coverage
30
+ on the unhappy path missing.
31
+
32
+ ## Output
33
+
34
+ ```markdown
35
+ ## Code review summary
36
+ - Files reviewed: N
37
+ - Bugs found: critical=N, major=N, minor=N
38
+
39
+ ## Findings
40
+
41
+ ### [critical|major|minor] <one-line title>
42
+ **File:** path/to/file.py:LINE
43
+ **Symptom:** what's wrong
44
+ **Fix:** before/after snippet
45
+ ```
46
+
47
+ End with `--- review complete ---`.