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.
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/CHANGELOG.md +22 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/PKG-INFO +64 -14
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/README.md +52 -7
- bog_agents_cli-0.7.4/bog_agents_cli/_proc.py +96 -0
- bog_agents_cli-0.7.4/bog_agents_cli/_version.py +3 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/agent.py +33 -4
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/app.py +20 -0
- bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/go/code-reviewer/AGENTS.md +43 -0
- bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/node/code-reviewer/AGENTS.md +49 -0
- bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/node/react-ink-artist/AGENTS.md +31 -0
- bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/node/test-author/AGENTS.md +30 -0
- bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/python/code-reviewer/AGENTS.md +47 -0
- bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/python/refactorer/AGENTS.md +28 -0
- bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/python/test-author/AGENTS.md +30 -0
- bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/rust/code-reviewer/AGENTS.md +44 -0
- bog_agents_cli-0.7.4/bog_agents_cli/bundled_agents/rust/test-author/AGENTS.md +25 -0
- bog_agents_cli-0.7.4/bog_agents_cli/cmd_call.py +193 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_daemon.py +265 -23
- bog_agents_cli-0.7.4/bog_agents_cli/cmd_verify.py +543 -0
- bog_agents_cli-0.7.4/bog_agents_cli/cross-platform-notes.md +83 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/daemon_client.py +3 -6
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/doctor.py +140 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/local_context.py +144 -2
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/main.py +341 -5
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/model_config.py +381 -20
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/non_interactive.py +324 -16
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/provider_catalog.py +71 -7
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/server.py +21 -6
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/skills/commands.py +4 -1
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/subagents.py +72 -9
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/system_prompt.md +5 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/ui.py +13 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/pyproject.toml +27 -8
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_agent.py +4 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_model_config.py +225 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_server.py +9 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/uv.lock +209 -178
- bog_agents_cli-0.7.2/bog_agents_cli/_version.py +0 -3
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.gitignore +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/00biyvlk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/01grv61c +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/01u5g92p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/01yhe5ym +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/03csiihr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/05mx6k_r +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/06e4z4lg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/06fc55z4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/06pqqycs +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/08foacxg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/08v9uem9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0_1vycus +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0a9t6pej +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0amu4qwl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0anjksvn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0bitbfc2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0cteiok5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0d50717p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0dvkctus +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0e_2wg_1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0ephvrc8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0fs5r980 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0fwm26rp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0fze2qiz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0gs8exro +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0hs4lhd1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0ixjc857 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0jfqdcwv +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0jwlrx4k +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0mi0a0al +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0nwyj_6o +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0pv2tqa0 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0qosy1xg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0rbcua0o +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0rbyc0bq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0roj9_ob +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0rzv4m6w +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0skuhwil +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0sqlkc39 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0t14zupr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0t4qim4z +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0tlnyisp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0u6f92nn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0vi3l3m5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0votc5ni +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0vtyv68j +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/0xl1wfj0 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/10j1bgx4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/10m3i3px +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/12c4u5gt +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/145ysr5g +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/151_ytj9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/17aa2j85 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/18gj5rbc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1a6su3gr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1aljfgt7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1chid8bp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1clcs3sa +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1cw0sbhp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1d7kq6q9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1h3q4x6p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1i8z6033 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1j2demuk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1jsmdin_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1me132nj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1osmbnnn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1owsb_pm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1pkhy7jm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1smk6csq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1t6ooczt +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1unryq2m +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1v2c_g5s +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1wc3nic5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1wwzv2ap +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1yz8emdm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/1zpq2bp0 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/227qgthr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/23fo7uwq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/23nlr4tl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/25lvyq3g +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/26ou16dp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/26wl65bl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/27ip60p1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/29j36l6i +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2bk5p5gm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2blqg9ls +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2c7pbiud +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2d8rtb5q +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2i8kdsfg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2ippt7pk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2k4nk5rz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2o7yz3ye +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2oo38iql +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2p08c9sj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2qsxwv6s +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2thjiqyk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2umxbq74 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2uvc2adz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2w8baf3p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2wx2xdnu +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2y0dsrgi +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2ydw6c7e +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/2yicloom +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/30wd7p2m +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/311ght6y +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/31iadu1m +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/32pwoi86 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/34puhf4p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/35qf76l3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3830svnc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/39z836o9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3a4ckrhu +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3ayv32dq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3d_pi6yw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3e5smk2l +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3gbz2uwf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3gijtx0a +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3gka4t20 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3gy5iofz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3itd9xup +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3jcurrbs +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3jo38o_p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3k4dkmu8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3l9gxdvo +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3nc5h1k5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3ojbtlig +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3oqx2tam +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3ovgmmt4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3p6vd32e +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3pxqj38l +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3py_ahxa +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3qropv9i +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3td8tbfm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3tynolsl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3ur2rl5v +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3wvlcm54 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3xwh903c +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/3yfci_h1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/43oh54h2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/48aeg384 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4_jm2pqf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4aus96a8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4b2umvk9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4bg2zfb4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4gwahht7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4kdvuzrg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4ld6v14e +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4m436izt +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4ma4yl_b +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4n6lj2bx +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4ngfrq2u +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4o9_5fwr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4pszhiew +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4q3odm9p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4qu1lio2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4r8ruud8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4rvexupm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4t9v1wkb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4wmo11ib +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4x3v67_p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4yxo8rs5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4zd9xk40 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/4zwx4a3_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/52ppcm_y +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/53kqh74g +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/55jcmw1v +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/575_k2kq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/591vmg11 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/59cdi0u6 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/59pfrxue +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5a76rcsl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5bso_ec8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5dcc6ex1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5f8ckx2h +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5inrx85r +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5jkrqwt8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5kk7if9j +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5m7uds04 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5mjjjsf7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5nf5rfdi +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5nik6v68 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5ody33vs +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5oxtzc4o +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5rig_0e4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5t73qu3p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5u0n2swj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5u6q3ujn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5uv2i2w_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5wuh51z8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5ya815ih +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/5yhn6h87 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/63ifpn2k +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/648_osbe +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/654suau7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/655112no +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/66in7phw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/69f94xak +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6arqtdch +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6bpvypsg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6epj4wnn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6f1nqh68 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6gu60prs +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6hml0_zq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6ho7wsq5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6q5g1ap6 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6qg_3tzq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6s4j7r0t +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6scmn968 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6u00rigk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6uw8bxdf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6y2x3c1p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6y8coy12 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6yqnnjgo +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/6zzwgao2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/714_069q +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/71abvljb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/71b6lzg7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/73dq8kr8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/76t8q6lz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/77fnwzke +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/795g8vzh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7_qloyq7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7a63he6u +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7aqe1q1m +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7c3uz_6y +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7daylg_x +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7e0v8h2p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7e7v8jem +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7f496lil +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7ft76pjd +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7hxlpv38 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7jd3veys +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7jgw3odg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7jq4d795 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7kg5hvxu +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7mg1_53g +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7o5ydypg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7ppplk4_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7pvtvmau +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7qi3l9ys +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7qqxxq6d +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7ss8n_1m +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7u9f0s3_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7uia7nat +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7wkiw8be +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7wu7t0z0 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7xc_7hbx +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7xvkd5sc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/7zewe7oa +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/83khvhwi +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/875i8euw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8777nvsv +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/87f6us2i +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8_qmx7kr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8ad0t96q +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8d_fibmq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8din2kkr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8fsg4ws_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8gnjbx40 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8hitcig3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8k_zixrv +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8kbrhv5h +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8lqoptsi +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8m40n8g_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8m8s97xt +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8nhah1l2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8qbih61v +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8qsmuys0 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8r04nvvz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8t45o5m1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8tqmhq7i +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8vjshhcf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8ysxisjm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/8zytooyd +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/91344o7x +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/92j3cc32 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/938wce8b +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/96ee2yqj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/97edc1tm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9_hdbijy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9_izf7hk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9a9qltc_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9ae8i682 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9bqnw0g_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9dttc49k +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9jlb3ut4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9jmscsm0 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9lgyimyy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9lphvkqt +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9n5x4jtc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9nkehywl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9pwm9qeb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9sarjvpz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9w95vg1i +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9x1tukc9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9x8x8fdm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9y569eij +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/9z7ggh60 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_1ah22m_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_4_lx_a9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_4pjns6n +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_7pchob3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_9ehjfwi +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_avuvkrs +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_c0v5rjz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_eolqu20 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_gedgrhl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_h82m8qd +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_jst5xjk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_k_z70g2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_lkzvudv +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_m5hyf8b +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_n4oxypj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_ni_zes5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_omu0jno +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_pq3bbfj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_r4oprc4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_sckr15c +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_ug_wzyu +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_zi4ztal +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_zieprvg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/_zk6nvzg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a019vfju +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a0kiz842 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a0maz27z +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a0q862qj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a113cwpu +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a12g72z8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a1_lk53r +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a1g_03_g +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a1n7o9zx +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a24anpol +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a26mfann +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a29p96qt +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a3tstpt6 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a6ie2zbc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a83vpszi +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/a_9ssocr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/aabw5k3e +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/acaj1gem +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/adrnbc1y +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/aepv2wqa +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/aesfl_jb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/afix39xq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ag9iu8fn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/agg_m8fz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ago5nf3t +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/aialrb93 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/al4hxnlg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/alokft_q +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/amcmtpfp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ame5s8n_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/aniypnul +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ao89f4_6 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/aqm2jvu4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/arslkizp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/aspd7avy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/au2vky3p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/avflbgs6 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/avnvk85b +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/avo5j9g6 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/aw2mby7i +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/awivi1_m +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/axdhq3ds +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b0l0wj8y +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b1yo0bt8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b2lvea2l +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b3111fz5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b34yftbo +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b3rojazb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b50xtn55 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b5_wyohn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b5sfhhgo +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b9xqod4x +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/b_y9utx4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bbc_v5j9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bbkttaaf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bc33onw_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bcr4vyzq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/be4fxhox +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/be7z_jwl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bfviy2cw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bh4r58mh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bheqtvx3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bjfm82pu +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bmj8izr6 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bpc_d6c_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bq009wjh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bqvjclks +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bro5nxpl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/buzubgca +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bv1d9s8e +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bw9i3boz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bwb50341 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bx34r4oe +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/by8w1d6i +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/bz93ufd8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/c0t856xe +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/c1so4mql +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/c3fs1ig9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/c4d8ditf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/c8bbz866 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/c9bwq5j6 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/c_hltt3z +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ca0smnrv +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cd1kefn4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cdbzmcva +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cgsma3ng +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cllulm_3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/clpu10cz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cm56qb6q +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cosf8_fl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cp0jn8sp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cpzs8nbp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cq491sju +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cqdqaryb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cr1wpbwj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cr5csdg1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/crncxu9r +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ct6video +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cuwv1iv_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cvucgbpj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cx4knlqy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cx9p1izl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cywcd5r4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/cz59sbd1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/czgw_tgo +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/czhm3_u1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/czol9isy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d0r83fis +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d196n6bn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d2xnlb_v +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d5h_g2c5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d5tijhzi +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d5zu4jkf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d66rwir1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d8lqkak0 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d99fxi04 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d9_cs0oy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/d9yib8fp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/da8b31q_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ddwzc9x1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/deqm2k3a +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dgjx0bj0 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dif84z2m +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dilf2hut +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dk8p6w5t +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dkco4zfr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dmn_oanz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dn11jr32 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dr902krh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dr_nctjf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dt8t62ac +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dtwdctie +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/du1oxtef +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dugg9gfu +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/duue5g80 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dwhtb7ja +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dy7khwf5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/dzxa8lwr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/e1nhelx8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/e1vgmzpy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/e2h0dryg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/e60l_6iu +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/e67pyhuk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/e680ppav +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eab77nfw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eeli33_y +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/efjoiqjc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ei2eeyxp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eihyv_in +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ejkxi5xk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ekaof5ha +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eljss_eq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eowop469 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/epfg3m2x +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eq_n6v0s +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eu2msyk4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eubf7dou +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eudgetur +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/euvob_l9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ev5f3i36 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ew5gd8aj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ewh74gmq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ewuy3_tj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eypd_yyu +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/eyr4fl7a +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f02_64ia +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f02gw7xy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f0u7fypo +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f16anu4p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f1_oei8f +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f2a3w1m9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f3ynzd5v +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f52jn_ki +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f5ygkpwx +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f6qknpw4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f832bfsj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f8g0mm92 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f9w21ppp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/f_34s7xm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fa88esw4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/faat98vx +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/famaoih_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fbjzf9a1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fe3j4ei6 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fe774blf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fewl6fhv +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ff4llep3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fh10gqns +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fhm0lsqn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fiqu__nk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fj2fxdst +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fl2gzp_m +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/flcsnbfw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fnlpbrg1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fnzz2zjq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fp3d405t +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fpd7znex +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fqtb_0ca +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/frd8656a +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fsy8bz9w +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ft2wnp5v +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fu0lfdg2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fuyoarae +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fvzp_ra1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fwjtitjw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/fytm0cue +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/g11ix7az +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/g1rql9n8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/g2mg1r9a +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/g3m1lkjz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/g4toyahl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/g8hv2v6h +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/g919c692 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/g_g351r5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gb6nnf0a +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gb_6ww9w +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gfwukvfr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ghytiv02 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ghzmped_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gjnbhgq9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gjt8xnf2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/glbohgk5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gnm2s3me +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/go7bi1r4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/goqkrpod +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gpxbyhpg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gr1q6rtb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gr6ps9aq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gs1wx8de +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gsn1ykkj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gsq40twn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gu1tq6h3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/guvy4w14 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gvhw_53w +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gw_igey1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gwybqtgj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gysd91zh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/gzynvr_3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h1bzr3c0 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h1fth7nb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h1ouuvtb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h2t47zsw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h2zw34kc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h323wi8g +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h38e3sdz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h55ox8cw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h7dewhhd +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/h8de1acn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ha8xi72e +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hcd6yx0_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hcrgkexz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/he884tjl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hfxwoa1s +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hkclxxaq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hl8sw608 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hm2tpjc1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hma26h_u +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ho1vk_61 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hok9w8vx +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hp0nj_r6 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hv9mp3yn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hx2g299k +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/hy1jvibx +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/i28_hexe +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/i3761kwy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/i7z6a1ox +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/i96qnait +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/iao7zqlz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ib3tmxng +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ic3f6ztg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ic53sdba +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/icbgri8s +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ie8rgmy3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/iey22mpj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/igke6mu8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ih8hko5x +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ii28gfg1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/imekhmtz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/imelxreo +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/inffrp1g +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ins6j7rd +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/int_c5xi +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/inuierdx +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/iogcgfng +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/iotn_q5u +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ip44m5r3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ipttzam7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/iv21g5lo +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ixjmkxp3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/iytmrvj7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/j2a0ysy4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/j6_sid8h +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/j79b3yfx +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/j7ism9g4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/j7o9v9w1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/j94vd_1d +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jamx_ndk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jazctc2s +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jbav4_pt +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jdq74et4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jevrdlfg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jfadnox7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jfb7fc3y +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jfu1ubv3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jg22z5cu +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jgubkkd0 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ji7gluqy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jje85bfy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jjq6x7qz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jjzx65yh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jk10itu1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jm88jxok +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jnjfo7ny +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jpclsj_o +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jpo7fob4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jpwono9d +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jq0sdwhe +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jq5bzw9s +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jqsb1zx1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jr4c2_z7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jrbow0z1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jrul121b +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jsdealj2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jsh6ioew +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jsrb40jm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jt1y4dej +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/juh2fmz2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jv6yl117 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jvl0ntgd +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jvuqt_o2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jx2uytse +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jz1640gs +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jzm6h2jl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/jzxduldk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/k0co1rdf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/k47pxflr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/k5rijnv6 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/k7_2nkha +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/k7vek6bs +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kdbkvloo +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kfhux63b +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kfsv8um2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/khnmoe1q +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kjf_cnre +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kk1c3m9i +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kkcjklo_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kktucs0x +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kmu14_w2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kn7mz5kj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ko2pal47 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kp2am_na +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kr_xfebf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/krwjgnur +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kta7sw2m +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ktnum6te +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kvdlox2m +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/kyyxzpho +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l0_40t3r +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l0du44rp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l0ejhehr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l0g7m1tz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l0mxgj7x +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l69z0whd +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l6weg8_a +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l7hgnghq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l7m6asvn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l9_mw1qf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/l_hl7t0p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lakqsxcl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ldjrptdh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lfmrstv1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lg8vfqd7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lgti4s4f +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lh_dve3x +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lhl74az9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lhy2quch +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/li9u_fjg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lisiit69 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ljk79cfj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lmrhye36 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/loyjkq76 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lq18lxsn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lrq1r2tf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lrziu1zk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lt8au9q3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lxfc1waq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lxjhl8tw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/lyionuvy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m1_k49bn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m1msdqvl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m2yeh4ur +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m2zimnkk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m38sy16c +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m3zog9lb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m4_z6jik +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m4o054ps +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m4vquuoq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m4wgkkxz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m6yzxvou +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m7y04p09 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m7zcf495 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m834bdsl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m8u7smcj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m9n1eivf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m_7rzcsp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m_hprc1s +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/m_nziks9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ma3ktael +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mbsdr7f7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/md375unp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/me0lh8aa +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mfgvjxhw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mg3kjtew +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mgztqquk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mjcct5b9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mjrx5xpa +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mlrz81bf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mnrp9x_f +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/moggsfe0 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mqcds91h +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mqngx8sy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mt4gi6cc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/muabsufo +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mv0tstq1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mvoyxvkp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mwk9id1o +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/mz7t4m9m +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n06jd70n +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n0h18ycc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n1ivcjmo +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n38jqh32 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n4q2qs9j +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n4v88mnj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n4x9dsdh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n83bdrw8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n8qfj2ha +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/n9cgls9c +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/naou845i +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ncj5nrxc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nd_n49bi +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ne7tu5ch +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nfmfgwe3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ng4071ns +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ngb1znxx +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ngum6wqh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nhbdjga7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nhjn23uk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/njcrvnju +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nmfm5g16 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nmfriimw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nmxdjqy2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/no4_0eg3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/no7cqyev +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nqayq4ut +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ns4d5b_4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nt5yqip5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nt825e4s +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nufhip4z +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nv848zhy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nvn7r551 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nyr2wz8p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nz167wey +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/nz5va5r5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o489varc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o4g9eh7c +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o4rs7vco +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o539xztd +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o5gpbe0x +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o5zler0n +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o63pd_wn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o729hbwb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o80or4t3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o9pn9enx +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/o9z2d6ej +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oax6fhce +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/objc63wt +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ociqygsu +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/od5nng2s +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/odk8w0au +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oe6_dqpn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oe_56ea5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oejyt9mt +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ohzmd3jz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oi5q9pga +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oi82pmqt +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ojum0tai +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ojyi5e06 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oklg2cdz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ol0i_jqw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/omc7b7ce +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/omcu8xmr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/omtnpd0i +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/onq49n5l +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oorxfks3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oq5_h6k1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oqgafrja +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oqj4rbbr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oqknp9iw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oql1k8vp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/osce_otq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ouqmz_zy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ovc_0eda +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oyne5dvz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/oz3y0oir +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ozenud_v +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p0o_c350 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p0zpbn9z +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p1a8azkf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p2dr1fzi +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p3h8wmgl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p3s31pjp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p5dhxpr5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p5e86ebc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p5j09w6f +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p5vgjllb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p6a2gqb5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p6vcoy9k +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p826pvm8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p845x142 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p8dt4jsb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p_4g5rza +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/p_czjwbv +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pbbycj3v +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pc3n29bx +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pdfrmi4h +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pdnwssem +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pdq6j_xg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pdrr1ch2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pds57p16 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pdv196ns +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ph6bd3j5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/plvocf79 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pm995rml +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pn65qlzo +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pqh82h57 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pqphiyyo +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/prjw94pb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ps3uw776 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pt0o8agi +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ptbfjl6b +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ptcjq405 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pti8h5r1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/puiuf64y +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/puqfa3bp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pvg0qded +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pvv9hpk7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/pwiozwgv +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q0o0l8_v +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q2lbe2m1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q2o_ki6a +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q4vmx4_p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q7ma4pu3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q7qnpvff +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q7xpgasp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q7z8vhad +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/q9e2v5x7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qa8xx0ap +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qaicews2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qayljihm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qb13lxk2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qdg1ya9n +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qed4q622 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qfrrrguf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qfzeccbv +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qg47gpz4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qgn5zzcg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qhzq_swk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qjhnzqvl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qjxha0hg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qlhmz0cc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qlu8itfy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qmeaurdi +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qmgb1n8v +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qmkt_ml0 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qml1ngsf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qnf0thxx +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qngfglna +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qoqd8bqm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qqrlemjh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qtto96ik +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/quf1pt6b +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qvwwx_n7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qxe04_ez +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qy1o0x6z +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qyehq5l0 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/qyk4re_3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r218b9qb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r6tr8tv5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r6zoejxb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r754fjo9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r771f8rb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r7ujfegc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r86a7v21 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r8rsrpm7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r_6w9o5i +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/r_u_c78w +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ra2kl5b8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rb6jryvk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rbhhjkvr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rc020g9l +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rcb5rqpb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rcvjj_o7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rezrgke1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rh_zr7qm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rknafco1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rko2jezt +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rmbzewm9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rmuuru9z +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rngv7mxy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/roy7btx2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rv9k7i6_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rvn3886k +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rwr9x78m +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rwx54h5x +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rxpfxjst +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/rzeg99pg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s3d2uiym +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s4yteril +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s7mck0tg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s7zof1dw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s82bwxqf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s9l5grx4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s9lmrue2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s9qvil1x +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/s_pr8wnn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sa7mhc4d +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sa8wy6ep +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/salm38_m +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sc2jrt1m +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sekciaxj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sezkf_ny +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/shffe9pk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sjnn7usl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/skfbt33p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sls8e4j8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/smppq1t3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sn6ijo13 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sn6y6km7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sod8zxuh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sog2iwfs +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sqr84fdx +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/srhuzdm8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sslhn1f3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/st739ol7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/st_lgba1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/stfwlraz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/su3a0lsv +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/suid0cyj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sv_lpia2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/swohb3b5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/swrtvtp3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/sx7kcftt +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/t12ltr13 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/t17rjtqs +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/t2nrl3l_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/t5kymxgi +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/t8ruxrk4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/t9mfvw5g +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tam81yea +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tavvfim0 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tea79d97 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tfgb3dlj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tfx8ur9d +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/th9szz54 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ti8t90ut +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tih3mi5y +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tlu59rdf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tm_qcn3s +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tmjzo1dw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tnurme3s +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tpdsp8y7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/trer1mth +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/trq0s1hb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tsmlx2dh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tsx0awbc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/tvb0wzpg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/txjgy0ei +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/txtt3l7u +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/u1yp_vs8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/u_931a5j +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/u_qr0t0a +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/u_ufzbek +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uc1n1vgf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ucjeli6i +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ucln5aqu +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ud51agfs +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ud9b6k4k +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uf5c8xim +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uh7q90za +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uh_iut8q +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uigw7tbx +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ujeuvfme +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ujisyoce +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ukc7855z +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ul24c5ym +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/um1gl0ke +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/un444ibl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ungy1huu +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/unpnku56 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uor8c2e4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uotevjzc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uounnxqn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/upmbbd_9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/us36d5sr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/usq66ol5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/usqdsimf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/utvgpr6u +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uukrsscy +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uvhh6l3f +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uvlnaybc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ux5_bmpr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uxfsfgpp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uxk3n94b +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uxv_oshw +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uxzfftwm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/uyra964t +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v0g3dqme +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v0iuccuj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v0jfwh88 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v1q7urx8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v1wioq8s +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v22ww5co +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v5_ia9t4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v73xpbqn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/v7zcsbe6 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vagesr11 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vbrx89tf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vdr0rvo1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vfva9j5t +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vg4t9xxr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vgbcvkkb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vhfg3lek +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vhsihvta +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vif5p19w +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vinjtfbh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vj95ofi2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vjznlrtj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vk12y85z +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vkg9c7tp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vnf_egr1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vng9nyk6 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vodp4gu8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vrwv0cb0 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vsvda8lf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vtds99g5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vv271uzb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vvqwml2h +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vwbgw6s5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vwiuzmby +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/vz9g0uwc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/w0ybne7s +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/w12nhvfh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/w1ydd62i +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/w218obfe +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/w8b0_x8r +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/w_mxlvzq +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wbc_si8p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wgb064vi +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/whblz41f +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/whuy3gkc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wilac7ll +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wmse3slz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wnxpb8fk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wnxxsy03 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wo8ode4m +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wqfx3mmn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wqtgb62p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wrl97qfh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wrv50swi +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wtwfvqw9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wu_d9qc3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wuaw3g5e +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wviy5m1w +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wwb_u_f_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wx5j6wxr +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wx75hoki +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/wyu6_qcu +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/x07mgcml +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/x16b9thz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/x1i0wouu +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/x5ezban_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/x5v2czpz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/x7tsrd7d +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/x_t0w6sg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xc52lb6_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xdc8ahla +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xdikr4h_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xf6iflbg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xg9ba1u2 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xgv9f_t5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xigenib3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xjbfjuzd +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xkdk4sd5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xoappxg_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xond8meh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xop8yrxz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xp3zx461 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xq9frhh1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xqqenpra +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xr3rpkm_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xt_ufjez +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xtis32y0 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xu0tzquv +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xvaabas8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xwp_i6vf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xxd3w4ym +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/xxvytxby +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y1dqtyc1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y1f26ayf +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y33kb8g5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y4mlhsj5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y63m6rho +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y6wnmbje +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y738xp3p +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y7z56e1s +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y8yyh43s +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/y96eybcm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yb54j2mn +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yb8r7quz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ybhwuksd +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ybs1q9w9 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ydmsw6gu +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ydv5irw8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yfmjckhc +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ygc4inte +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ygdw1f6b +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yhdjkwr5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yheku_kl +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yhp7wea_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yhqkaquz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yinjschv +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yl7ksaxk +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ym2xp9ee +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yohfjt5g +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yp6t541w +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yqbxmbzp +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yr_6xn79 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ysakjowo +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ysoq1nau +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ytt27uus +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yxo5efm8 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yy4ycd6k +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/yyh9ktcs +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z0hd3j62 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z1ittprj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z40o78ya +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z56yj1_1 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z90kvg0c +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z98s6p6x +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z9uqn8c5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z_j5tn85 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/z_o3uo85 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/za0d7ipg +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zb8nwnby +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zbz3gpi7 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zcf3n9z5 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zd7o1w_y +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zf5sof7x +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zf8nbb_3 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zfq92gro +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zg3bduqt +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zg95qxlv +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zgr1lu58 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zi6qc09_ +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/ziq14elj +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zlauoxe4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zlckte5u +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zmbqzcxb +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/znjn5txm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/znz_4eln +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zpalchp4 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zpnp8u21 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zr0swd42 +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zta3ikco +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zvptowww +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zxy9ihlm +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zy4eymbe +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/.pytest-tmp/zzcopclz +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/Makefile +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/__init__.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/__main__.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/_debug.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/_server_config.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/_server_constants.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/_testing_models.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/api_keys.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/app.tcss +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/ask_user.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/auto_commit.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/background_agents.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/browser_cli.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/built_in_skills/__init__.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/built_in_skills/skill-creator/SKILL.md +0 -0
- {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
- {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
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/claude_code_compat.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cli_sounds.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/clipboard.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_benchmark.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_build.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_checkpoint.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_explain.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_index.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_memory_sync.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_pr_review.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_test.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/cmd_undo.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/code_intelligence_cli.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/command_registry.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/compact_selective.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/config.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/configurable_model.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/dashboard.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/default_agent_prompt.md +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/__init__.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/blog-post.yaml +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/bug-investigation.yaml +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/code-review.yaml +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/dependency-audit.yaml +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/github-issue-autofix.yaml +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/jira-ticket-autofix.yaml +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/morning-standup.yaml +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/new-feature.yaml +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/onboarding-guide.yaml +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/readme-auto-updater.yaml +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/security-scan.yaml +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/sprint-planning.yaml +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/pipelines/weekly-report.yaml +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults/prompt_library.toml +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/defaults_seeder.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/enterprise_cli.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/extensibility.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/extensions.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/file_ops.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/file_watcher.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/hooks.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/image_cli.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/input.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/input_shortcuts.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/integrations/__init__.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/integrations/daytona.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/integrations/docker.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/integrations/langsmith.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/integrations/modal.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/integrations/runloop.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/integrations/sandbox_factory.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/integrations/sandbox_provider.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/io_utils.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/jobs_manager.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/json_output.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/keybindings.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/langsmith_cli.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/mcp_config_manager.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/mcp_registry.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/mcp_tools.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/mcp_trust.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/media_utils.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/mentions.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/multi_agent.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/multi_model_cli.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/oauth_mcp.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/output.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/pipeline.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/plugin_marketplace.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/pr_cli.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/pr_output.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/profiles.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/project_memory.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/project_utils.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/prompt_library.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/prompts.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/py.typed +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/recommend.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/remote.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/remote_assets/__init__.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/remote_assets/ssh_cancel.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/remote_assets/ssh_status.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/remote_assets/ssh_submit.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/remote_assets/ssh_worker.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/remote_client.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/remote_sandbox.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/replay.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/repo_map_display.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/review_command.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/server_graph.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/server_manager.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/session_fork.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/session_manager.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/sessions.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/skills/__init__.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/skills/load.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/smart_context_cli.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/streaming_diff.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/teach.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/team_config.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/team_orchestration.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/test_tools_cli.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/textual_adapter.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/tool_display.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/tools.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/unicode_security.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/update_check.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/vars_store.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/web_search.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/__init__.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/_links.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/agents_panel.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/approval.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/ask_user.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/autocomplete.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/chat_input.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/diff.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/history.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/loading.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/mcp_viewer.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/message_store.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/messages.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/model_selector.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/pipeline_screen.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/prompt_library_screen.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/settings_screen.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/status.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/thread_selector.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/tool_renderers.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/tool_widgets.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/bog_agents_cli/widgets/welcome.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/examples/skills/arxiv-search/SKILL.md +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/examples/skills/arxiv-search/arxiv_search.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/examples/skills/langgraph-docs/SKILL.md +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/examples/skills/skill-creator/SKILL.md +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/examples/skills/skill-creator/scripts/init_skill.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/examples/skills/skill-creator/scripts/quick_validate.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/examples/skills/web-research/SKILL.md +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/images/cli.png +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/scripts/check_imports.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/scripts/install.sh +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/session-test-data/11d5c14b1c4e425b93b4e1673f78c95b.db +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/session-test-data/11d5c14b1c4e425b93b4e1673f78c95b.db-journal +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/session-test-data/35c20f077843421bab3837a972cd5f67.db +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/session-test-data/35c20f077843421bab3837a972cd5f67.db-journal +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/session-test-data/af60487dd8c4443b91651b60ae8b68d0.db +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/session-test-data/af60487dd8c4443b91651b60ae8b68d0.db-journal +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/session-test-data/probe.db +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/session-test-data/probe.db-journal +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/README.md +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/conftest.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/integration_tests/__init__.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/integration_tests/benchmarks/__init__.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/integration_tests/benchmarks/test_startup_benchmarks.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/integration_tests/conftest.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/integration_tests/test_acp_mode.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/integration_tests/test_compact_resume.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/integration_tests/test_sandbox_factory.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/integration_tests/test_sandbox_operations.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/__init__.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/conftest.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/skills/__init__.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/skills/test_commands.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/skills/test_load.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/skills/test_skills_json.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_app.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_approval.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_args.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_ask_user.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_ask_user_middleware.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_autocomplete.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_bedrock_async.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_charset.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_chat_input.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_clipboard.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_benchmark.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_build.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_checkpoint.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_explain.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_index.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_memory_sync.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_pr_review.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_test.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_cmd_undo.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_compact.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_compact_tool.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_config.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_configurable_model.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_debug.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_end_to_end.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_exception_handling.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_extensibility.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_file_ops.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_history.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_hooks.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_imports.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_input_parsing.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_killer_features.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_local_context.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_main.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_main_acp_mode.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_main_args.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_mcp_tools.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_mcp_trust.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_mcp_viewer.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_media_utils.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_message_store.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_messages.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_model_selector.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_model_switch.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_new_features.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_non_interactive.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_output.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_prompts.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_reload.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_remote.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_remote_client.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_server_config.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_server_graph.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_server_helpers.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_server_manager.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_sessions.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_shell_allow_list.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_status.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_subagents.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_team_orchestration.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_textual_adapter.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_thread_selector.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_token_tracker.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_ui.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_unicode_security.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_update_check.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_version.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/test_welcome.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/tools/__init__.py +0 -0
- {bog_agents_cli-0.7.2 → bog_agents_cli-0.7.4}/tests/unit_tests/tools/test_fetch_url.py +0 -0
- {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.
|
|
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.
|
|
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.
|
|
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.
|
|
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,>=
|
|
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.
|
|
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.
|
|
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-
|
|
201
|
-
bog-agents -M ollama:
|
|
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-
|
|
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:
|
|
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-
|
|
48
|
-
bog-agents -M ollama:
|
|
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-
|
|
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:
|
|
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
|
|
@@ -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(
|
|
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
|
-
#
|
|
753
|
-
|
|
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
|
-
|
|
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 ---`.
|