bog-agents-cli 0.5.2__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.5.2/.gitignore +228 -0
- bog_agents_cli-0.5.2/CHANGELOG.md +337 -0
- bog_agents_cli-0.5.2/Makefile +84 -0
- bog_agents_cli-0.5.2/PKG-INFO +270 -0
- bog_agents_cli-0.5.2/README.md +119 -0
- bog_agents_cli-0.5.2/bog_agents_cli/__init__.py +9 -0
- bog_agents_cli-0.5.2/bog_agents_cli/__main__.py +6 -0
- bog_agents_cli-0.5.2/bog_agents_cli/_debug.py +50 -0
- bog_agents_cli-0.5.2/bog_agents_cli/_server_config.py +320 -0
- bog_agents_cli-0.5.2/bog_agents_cli/_server_constants.py +4 -0
- bog_agents_cli-0.5.2/bog_agents_cli/_testing_models.py +144 -0
- bog_agents_cli-0.5.2/bog_agents_cli/_version.py +3 -0
- bog_agents_cli-0.5.2/bog_agents_cli/agent.py +984 -0
- bog_agents_cli-0.5.2/bog_agents_cli/app.py +3974 -0
- bog_agents_cli-0.5.2/bog_agents_cli/app.tcss +233 -0
- bog_agents_cli-0.5.2/bog_agents_cli/ask_user.py +376 -0
- bog_agents_cli-0.5.2/bog_agents_cli/background_agents.py +310 -0
- bog_agents_cli-0.5.2/bog_agents_cli/browser_cli.py +128 -0
- bog_agents_cli-0.5.2/bog_agents_cli/built_in_skills/__init__.py +5 -0
- bog_agents_cli-0.5.2/bog_agents_cli/built_in_skills/skill-creator/SKILL.md +399 -0
- bog_agents_cli-0.5.2/bog_agents_cli/built_in_skills/skill-creator/scripts/init_skill.py +366 -0
- bog_agents_cli-0.5.2/bog_agents_cli/built_in_skills/skill-creator/scripts/quick_validate.py +158 -0
- bog_agents_cli-0.5.2/bog_agents_cli/clipboard.py +128 -0
- bog_agents_cli-0.5.2/bog_agents_cli/code_intelligence_cli.py +185 -0
- bog_agents_cli-0.5.2/bog_agents_cli/compact_selective.py +200 -0
- bog_agents_cli-0.5.2/bog_agents_cli/config.py +1834 -0
- bog_agents_cli-0.5.2/bog_agents_cli/configurable_model.py +133 -0
- bog_agents_cli-0.5.2/bog_agents_cli/dashboard.py +340 -0
- bog_agents_cli-0.5.2/bog_agents_cli/default_agent_prompt.md +12 -0
- bog_agents_cli-0.5.2/bog_agents_cli/doctor.py +181 -0
- bog_agents_cli-0.5.2/bog_agents_cli/enterprise_cli.py +149 -0
- bog_agents_cli-0.5.2/bog_agents_cli/extensions.py +355 -0
- bog_agents_cli-0.5.2/bog_agents_cli/file_ops.py +473 -0
- bog_agents_cli-0.5.2/bog_agents_cli/hooks.py +287 -0
- bog_agents_cli-0.5.2/bog_agents_cli/image_cli.py +101 -0
- bog_agents_cli-0.5.2/bog_agents_cli/input.py +778 -0
- bog_agents_cli-0.5.2/bog_agents_cli/input_shortcuts.py +93 -0
- bog_agents_cli-0.5.2/bog_agents_cli/integrations/__init__.py +1 -0
- bog_agents_cli-0.5.2/bog_agents_cli/integrations/daytona.py +224 -0
- bog_agents_cli-0.5.2/bog_agents_cli/integrations/langsmith.py +294 -0
- bog_agents_cli-0.5.2/bog_agents_cli/integrations/modal.py +228 -0
- bog_agents_cli-0.5.2/bog_agents_cli/integrations/runloop.py +226 -0
- bog_agents_cli-0.5.2/bog_agents_cli/integrations/sandbox_factory.py +194 -0
- bog_agents_cli-0.5.2/bog_agents_cli/integrations/sandbox_provider.py +71 -0
- bog_agents_cli-0.5.2/bog_agents_cli/json_output.py +181 -0
- bog_agents_cli-0.5.2/bog_agents_cli/keybindings.py +109 -0
- bog_agents_cli-0.5.2/bog_agents_cli/local_context.py +586 -0
- bog_agents_cli-0.5.2/bog_agents_cli/main.py +1657 -0
- bog_agents_cli-0.5.2/bog_agents_cli/mcp_tools.py +625 -0
- bog_agents_cli-0.5.2/bog_agents_cli/mcp_trust.py +168 -0
- bog_agents_cli-0.5.2/bog_agents_cli/media_utils.py +478 -0
- bog_agents_cli-0.5.2/bog_agents_cli/model_config.py +1486 -0
- bog_agents_cli-0.5.2/bog_agents_cli/multi_agent.py +113 -0
- bog_agents_cli-0.5.2/bog_agents_cli/multi_model_cli.py +145 -0
- bog_agents_cli-0.5.2/bog_agents_cli/non_interactive.py +874 -0
- bog_agents_cli-0.5.2/bog_agents_cli/oauth_mcp.py +290 -0
- bog_agents_cli-0.5.2/bog_agents_cli/output.py +69 -0
- bog_agents_cli-0.5.2/bog_agents_cli/plugin_marketplace.py +192 -0
- bog_agents_cli-0.5.2/bog_agents_cli/pr_cli.py +110 -0
- bog_agents_cli-0.5.2/bog_agents_cli/pr_output.py +454 -0
- bog_agents_cli-0.5.2/bog_agents_cli/profiles.py +227 -0
- bog_agents_cli-0.5.2/bog_agents_cli/project_utils.py +188 -0
- bog_agents_cli-0.5.2/bog_agents_cli/py.typed +0 -0
- bog_agents_cli-0.5.2/bog_agents_cli/recommend.py +390 -0
- bog_agents_cli-0.5.2/bog_agents_cli/remote.py +235 -0
- bog_agents_cli-0.5.2/bog_agents_cli/remote_client.py +515 -0
- bog_agents_cli-0.5.2/bog_agents_cli/replay.py +335 -0
- bog_agents_cli-0.5.2/bog_agents_cli/review_command.py +131 -0
- bog_agents_cli-0.5.2/bog_agents_cli/server.py +513 -0
- bog_agents_cli-0.5.2/bog_agents_cli/server_graph.py +190 -0
- bog_agents_cli-0.5.2/bog_agents_cli/server_manager.py +351 -0
- bog_agents_cli-0.5.2/bog_agents_cli/session_fork.py +175 -0
- bog_agents_cli-0.5.2/bog_agents_cli/session_manager.py +200 -0
- bog_agents_cli-0.5.2/bog_agents_cli/sessions.py +1217 -0
- bog_agents_cli-0.5.2/bog_agents_cli/skills/__init__.py +18 -0
- bog_agents_cli-0.5.2/bog_agents_cli/skills/commands.py +1013 -0
- bog_agents_cli-0.5.2/bog_agents_cli/skills/load.py +194 -0
- bog_agents_cli-0.5.2/bog_agents_cli/smart_context_cli.py +95 -0
- bog_agents_cli-0.5.2/bog_agents_cli/streaming_diff.py +124 -0
- bog_agents_cli-0.5.2/bog_agents_cli/subagents.py +173 -0
- bog_agents_cli-0.5.2/bog_agents_cli/system_prompt.md +238 -0
- bog_agents_cli-0.5.2/bog_agents_cli/teach.py +242 -0
- bog_agents_cli-0.5.2/bog_agents_cli/test_tools_cli.py +104 -0
- bog_agents_cli-0.5.2/bog_agents_cli/textual_adapter.py +1401 -0
- bog_agents_cli-0.5.2/bog_agents_cli/tool_display.py +306 -0
- bog_agents_cli-0.5.2/bog_agents_cli/tools.py +236 -0
- bog_agents_cli-0.5.2/bog_agents_cli/ui.py +388 -0
- bog_agents_cli-0.5.2/bog_agents_cli/unicode_security.py +516 -0
- bog_agents_cli-0.5.2/bog_agents_cli/update_check.py +102 -0
- bog_agents_cli-0.5.2/bog_agents_cli/web_search.py +178 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/__init__.py +9 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/_links.py +62 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/approval.py +423 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/ask_user.py +399 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/autocomplete.py +745 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/chat_input.py +1689 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/diff.py +216 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/history.py +172 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/loading.py +173 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/mcp_viewer.py +348 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/message_store.py +623 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/messages.py +1395 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/model_selector.py +845 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/status.py +375 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/thread_selector.py +1811 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/tool_renderers.py +130 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/tool_widgets.py +245 -0
- bog_agents_cli-0.5.2/bog_agents_cli/widgets/welcome.py +237 -0
- bog_agents_cli-0.5.2/examples/skills/arxiv-search/SKILL.md +102 -0
- bog_agents_cli-0.5.2/examples/skills/arxiv-search/arxiv_search.py +61 -0
- bog_agents_cli-0.5.2/examples/skills/langgraph-docs/SKILL.md +35 -0
- bog_agents_cli-0.5.2/examples/skills/skill-creator/SKILL.md +401 -0
- bog_agents_cli-0.5.2/examples/skills/skill-creator/scripts/init_skill.py +311 -0
- bog_agents_cli-0.5.2/examples/skills/skill-creator/scripts/quick_validate.py +152 -0
- bog_agents_cli-0.5.2/examples/skills/web-research/SKILL.md +102 -0
- bog_agents_cli-0.5.2/images/cli.png +0 -0
- bog_agents_cli-0.5.2/pyproject.toml +295 -0
- bog_agents_cli-0.5.2/scripts/check_imports.py +32 -0
- bog_agents_cli-0.5.2/scripts/install.sh +77 -0
- bog_agents_cli-0.5.2/tests/README.md +11 -0
- bog_agents_cli-0.5.2/tests/integration_tests/__init__.py +0 -0
- bog_agents_cli-0.5.2/tests/integration_tests/benchmarks/__init__.py +0 -0
- bog_agents_cli-0.5.2/tests/integration_tests/benchmarks/test_startup_benchmarks.py +301 -0
- bog_agents_cli-0.5.2/tests/integration_tests/conftest.py +38 -0
- bog_agents_cli-0.5.2/tests/integration_tests/test_acp_mode.py +112 -0
- bog_agents_cli-0.5.2/tests/integration_tests/test_compact_resume.py +223 -0
- bog_agents_cli-0.5.2/tests/integration_tests/test_sandbox_factory.py +328 -0
- bog_agents_cli-0.5.2/tests/integration_tests/test_sandbox_operations.py +1076 -0
- bog_agents_cli-0.5.2/tests/unit_tests/__init__.py +0 -0
- bog_agents_cli-0.5.2/tests/unit_tests/conftest.py +48 -0
- bog_agents_cli-0.5.2/tests/unit_tests/skills/__init__.py +1 -0
- bog_agents_cli-0.5.2/tests/unit_tests/skills/test_commands.py +1327 -0
- bog_agents_cli-0.5.2/tests/unit_tests/skills/test_load.py +698 -0
- bog_agents_cli-0.5.2/tests/unit_tests/skills/test_skills_json.py +154 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_agent.py +1374 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_app.py +1838 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_approval.py +336 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_args.py +426 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_ask_user.py +601 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_ask_user_middleware.py +221 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_autocomplete.py +477 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_charset.py +364 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_chat_input.py +1991 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_compact.py +1229 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_compact_tool.py +40 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_config.py +1694 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_configurable_model.py +412 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_debug.py +69 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_end_to_end.py +437 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_exception_handling.py +316 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_file_ops.py +120 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_history.py +233 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_hooks.py +363 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_imports.py +10 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_input_parsing.py +414 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_killer_features.py +747 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_local_context.py +1055 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_main.py +382 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_main_acp_mode.py +193 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_main_args.py +454 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_mcp_tools.py +1443 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_mcp_trust.py +112 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_mcp_viewer.py +189 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_media_utils.py +733 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_message_store.py +693 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_messages.py +566 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_model_config.py +2537 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_model_selector.py +937 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_model_switch.py +712 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_new_features.py +424 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_non_interactive.py +915 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_output.py +62 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_reload.py +242 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_remote_client.py +615 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_server.py +285 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_server_config.py +217 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_server_graph.py +129 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_server_helpers.py +95 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_server_manager.py +266 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_sessions.py +1732 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_shell_allow_list.py +719 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_status.py +133 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_subagents.py +431 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_textual_adapter.py +928 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_thread_selector.py +2865 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_token_tracker.py +54 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_ui.py +332 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_unicode_security.py +246 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_update_check.py +170 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_version.py +166 -0
- bog_agents_cli-0.5.2/tests/unit_tests/test_welcome.py +329 -0
- bog_agents_cli-0.5.2/tests/unit_tests/tools/__init__.py +0 -0
- bog_agents_cli-0.5.2/tests/unit_tests/tools/test_fetch_url.py +72 -0
- bog_agents_cli-0.5.2/uv.lock +6256 -0
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[codz]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py.cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
#Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# UV
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
#uv.lock
|
|
102
|
+
|
|
103
|
+
# poetry
|
|
104
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
105
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
106
|
+
# commonly ignored for libraries.
|
|
107
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
108
|
+
#poetry.lock
|
|
109
|
+
#poetry.toml
|
|
110
|
+
|
|
111
|
+
# pdm
|
|
112
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
113
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
114
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
115
|
+
#pdm.lock
|
|
116
|
+
#pdm.toml
|
|
117
|
+
.pdm-python
|
|
118
|
+
.pdm-build/
|
|
119
|
+
|
|
120
|
+
# pixi
|
|
121
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
122
|
+
#pixi.lock
|
|
123
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
124
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
125
|
+
.pixi
|
|
126
|
+
|
|
127
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
128
|
+
__pypackages__/
|
|
129
|
+
|
|
130
|
+
# Celery stuff
|
|
131
|
+
celerybeat-schedule
|
|
132
|
+
celerybeat.pid
|
|
133
|
+
|
|
134
|
+
# SageMath parsed files
|
|
135
|
+
*.sage.py
|
|
136
|
+
|
|
137
|
+
# Environments
|
|
138
|
+
.env
|
|
139
|
+
.envrc
|
|
140
|
+
.venv
|
|
141
|
+
env/
|
|
142
|
+
venv/
|
|
143
|
+
ENV/
|
|
144
|
+
env.bak/
|
|
145
|
+
venv.bak/
|
|
146
|
+
|
|
147
|
+
# Spyder project settings
|
|
148
|
+
.spyderproject
|
|
149
|
+
.spyproject
|
|
150
|
+
|
|
151
|
+
# Rope project settings
|
|
152
|
+
.ropeproject
|
|
153
|
+
|
|
154
|
+
# mkdocs documentation
|
|
155
|
+
/site
|
|
156
|
+
|
|
157
|
+
# mypy
|
|
158
|
+
.mypy_cache/
|
|
159
|
+
.dmypy.json
|
|
160
|
+
dmypy.json
|
|
161
|
+
|
|
162
|
+
# Pyre type checker
|
|
163
|
+
.pyre/
|
|
164
|
+
|
|
165
|
+
# pytype static type analyzer
|
|
166
|
+
.pytype/
|
|
167
|
+
|
|
168
|
+
# Cython debug symbols
|
|
169
|
+
cython_debug/
|
|
170
|
+
|
|
171
|
+
# PyCharm
|
|
172
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
173
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
174
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
175
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
176
|
+
#.idea/
|
|
177
|
+
|
|
178
|
+
# Abstra
|
|
179
|
+
# Abstra is an AI-powered process automation framework.
|
|
180
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
181
|
+
# Learn more at https://abstra.io/docs
|
|
182
|
+
.abstra/
|
|
183
|
+
|
|
184
|
+
# Visual Studio Code
|
|
185
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
186
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
187
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
188
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
189
|
+
# .vscode/
|
|
190
|
+
|
|
191
|
+
# Node.js
|
|
192
|
+
node_modules/
|
|
193
|
+
|
|
194
|
+
# Ruff stuff:
|
|
195
|
+
.ruff_cache/
|
|
196
|
+
|
|
197
|
+
# PyPI configuration file
|
|
198
|
+
.pypirc
|
|
199
|
+
|
|
200
|
+
# Cursor
|
|
201
|
+
# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
|
|
202
|
+
# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
|
|
203
|
+
# refer to https://docs.cursor.com/context/ignore-files
|
|
204
|
+
.cursorignore
|
|
205
|
+
.cursorindexingignore
|
|
206
|
+
|
|
207
|
+
# Marimo
|
|
208
|
+
marimo/_static/
|
|
209
|
+
marimo/_lsp/
|
|
210
|
+
__marimo__/
|
|
211
|
+
|
|
212
|
+
# LangGraph
|
|
213
|
+
.langgraph_api
|
|
214
|
+
|
|
215
|
+
#claude
|
|
216
|
+
.claude
|
|
217
|
+
|
|
218
|
+
.idea
|
|
219
|
+
TEXTUAL_REFACTOR_PLAN.md
|
|
220
|
+
libs/cli/TEXTUAL_PROGRESS.md
|
|
221
|
+
|
|
222
|
+
/tmp/
|
|
223
|
+
|
|
224
|
+
# macOS
|
|
225
|
+
.DS_Store
|
|
226
|
+
*/tmp/.DS_Store
|
|
227
|
+
|
|
228
|
+
CLAUDE.md
|
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.5.2](https://github.com/bogware/bog-agents/compare/bog-agents-cli==0.5.1...bog-agents-cli==0.5.2) (2026-03-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **cli:** wire serve, PR, background, dashboard, and /recommend command ([c7f2fff](https://github.com/bogware/bog-agents/commit/c7f2fff7c0df7e4965e54b38142fdde12fb233ac))
|
|
9
|
+
* **sdk,cli:** add 17 killer features — middleware, serve API, CLI tools ([ab55111](https://github.com/bogware/bog-agents/commit/ab551118815438e538ae2dcbc1cdebcff84a49c5))
|
|
10
|
+
* **sdk,cli:** complete all 5 recommendations for production readiness ([de02cd6](https://github.com/bogware/bog-agents/commit/de02cd650ca927dec7c2769b1a0cfa9ca209f4a0))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **cli:** remove tavily from required dep check, fix broken tests, rewrite README ([0753160](https://github.com/bogware/bog-agents/commit/0753160c91be33b3a85c1db6590198b268cf8258))
|
|
16
|
+
* **sdk,cli:** CTO review — fix 11 production readiness issues ([ed3be04](https://github.com/bogware/bog-agents/commit/ed3be044bf4f30f4ca6cbe47a38d4e47c5852920))
|
|
17
|
+
* **sdk,cli:** fix 3 runtime bugs found in hands-on testing ([3a002af](https://github.com/bogware/bog-agents/commit/3a002affe19eb907981ae246521669428299e453))
|
|
18
|
+
* **sdk:** architect review — fix 5 bugs, add lazy imports, add serve deps ([1a17d78](https://github.com/bogware/bog-agents/commit/1a17d78e6c43dcdc5bee6172aaa1cdc62397b927))
|
|
19
|
+
|
|
20
|
+
## [0.5.1](https://github.com/bogware/bog-agents/compare/bog-agents-cli==0.5.0...bog-agents-cli==0.5.1) (2026-03-23)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
* **cli:** wire serve, PR, background, dashboard, and /recommend command ([c7f2fff](https://github.com/bogware/bog-agents/commit/c7f2fff7c0df7e4965e54b38142fdde12fb233ac))
|
|
26
|
+
* **sdk,cli:** add 17 killer features — middleware, serve API, CLI tools ([ab55111](https://github.com/bogware/bog-agents/commit/ab551118815438e538ae2dcbc1cdebcff84a49c5))
|
|
27
|
+
* **sdk,cli:** complete all 5 recommendations for production readiness ([de02cd6](https://github.com/bogware/bog-agents/commit/de02cd650ca927dec7c2769b1a0cfa9ca209f4a0))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Bug Fixes
|
|
31
|
+
|
|
32
|
+
* **cli:** remove tavily from required dep check, fix broken tests, rewrite README ([0753160](https://github.com/bogware/bog-agents/commit/0753160c91be33b3a85c1db6590198b268cf8258))
|
|
33
|
+
* **sdk,cli:** CTO review — fix 11 production readiness issues ([ed3be04](https://github.com/bogware/bog-agents/commit/ed3be044bf4f30f4ca6cbe47a38d4e47c5852920))
|
|
34
|
+
* **sdk,cli:** fix 3 runtime bugs found in hands-on testing ([3a002af](https://github.com/bogware/bog-agents/commit/3a002affe19eb907981ae246521669428299e453))
|
|
35
|
+
* **sdk:** architect review — fix 5 bugs, add lazy imports, add serve deps ([1a17d78](https://github.com/bogware/bog-agents/commit/1a17d78e6c43dcdc5bee6172aaa1cdc62397b927))
|
|
36
|
+
|
|
37
|
+
## [0.0.32](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.31...bog-agents-cli==0.0.32) (2026-03-11)
|
|
38
|
+
|
|
39
|
+
### Features
|
|
40
|
+
|
|
41
|
+
* Add token breakdown to `/tokens` and simplify `/compact` messages ([#1782](https://github.com/langchain-ai/bog-agents/issues/1782)) ([2f37bff](https://github.com/langchain-ai/bog-agents/commit/2f37bffa9d7a9ced6945abe4ab6bc3409bfb97b1))
|
|
42
|
+
* `--json` flag for machine-readable output ([#1768](https://github.com/langchain-ai/bog-agents/issues/1768)) ([6f62496](https://github.com/langchain-ai/bog-agents/commit/6f62496bb699dfa6086ee1850b83f38d3b1242fa))
|
|
43
|
+
|
|
44
|
+
### Bug Fixes
|
|
45
|
+
|
|
46
|
+
* Work around VS Code 1.110 space key regression ([#1748](https://github.com/langchain-ai/bog-agents/issues/1748)) ([f5fe431](https://github.com/langchain-ai/bog-agents/commit/f5fe4315143bf5b636cf42fc98cbfe3d99918cfc))
|
|
47
|
+
|
|
48
|
+
## [0.0.31](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.30...bog-agents-cli==0.0.31) (2026-03-09)
|
|
49
|
+
|
|
50
|
+
### Features
|
|
51
|
+
|
|
52
|
+
* Opt-in `ask_user` tool for interactive agent questions ([#1377](https://github.com/langchain-ai/bog-agents/issues/1377)) ([de7068d](https://github.com/langchain-ai/bog-agents/commit/de7068d21fd4b932c6e53f500b0ea3b02a04c0aa))
|
|
53
|
+
* Big thread improvements!
|
|
54
|
+
* Rework `/thread` switcher with search, columns, delete, and sort toggle ([#1723](https://github.com/langchain-ai/bog-agents/issues/1723)) ([8b21ddb](https://github.com/langchain-ai/bog-agents/commit/8b21ddb2ff7f13d6b3ffcbf2fe605bfbadbc3d38))
|
|
55
|
+
* Track and display working directory per thread ([#1735](https://github.com/langchain-ai/bog-agents/issues/1735)) ([0e4f25d](https://github.com/langchain-ai/bog-agents/commit/0e4f25dfbc3e15653bc3f8a6d32a0a61ead4ba82))
|
|
56
|
+
* Add `-n` short flag for `threads list --limit` ([#1731](https://github.com/langchain-ai/bog-agents/issues/1731)) ([8bbace9](https://github.com/langchain-ai/bog-agents/commit/8bbace9facd1e33757521e835dcb291accd2fa91))
|
|
57
|
+
* Add sort, branch filter, and verbose flags to threads list ([#1732](https://github.com/langchain-ai/bog-agents/issues/1732)) ([11dc8e3](https://github.com/langchain-ai/bog-agents/commit/11dc8e3397ef9e9dbe8b15578e9258544ed6b452))
|
|
58
|
+
* Tailor system prompt for non-interactive mode ([#1727](https://github.com/langchain-ai/bog-agents/issues/1727)) ([871e5cf](https://github.com/langchain-ai/bog-agents/commit/871e5cf76b1a7e7cf7175b4415bb8e2206da39ec))
|
|
59
|
+
* `/reload` command for in-session config refresh ([#1722](https://github.com/langchain-ai/bog-agents/issues/1722)) ([381aee6](https://github.com/langchain-ai/bog-agents/commit/381aee6d223fe3d866bedfe3a534916f419a4435))
|
|
60
|
+
* Rearrange HITL option order in approval menu ([#1726](https://github.com/langchain-ai/bog-agents/issues/1726)) ([0ca6cb2](https://github.com/langchain-ai/bog-agents/commit/0ca6cb237b6da538bad2b4bf292942c8db72ec1f))
|
|
61
|
+
|
|
62
|
+
### Bug Fixes
|
|
63
|
+
|
|
64
|
+
* Localize newline shortcut labels by platform ([#1721](https://github.com/langchain-ai/bog-agents/issues/1721)) ([f35576b](https://github.com/langchain-ai/bog-agents/commit/f35576bafac711d6c04f1f9dd40ec97a90e30060))
|
|
65
|
+
* Prevent `shift+enter` from sending `backslash+enter` ([#1728](https://github.com/langchain-ai/bog-agents/issues/1728)) ([81dceb0](https://github.com/langchain-ai/bog-agents/commit/81dceb043097a47702bb5a0227a8f12e9055bd05))
|
|
66
|
+
* Write files with langsmith sandbox ([#1714](https://github.com/langchain-ai/bog-agents/issues/1714)) ([5933c9e](https://github.com/langchain-ai/bog-agents/commit/5933c9e2995c422e43649c61981e086ac1eaf725))
|
|
67
|
+
|
|
68
|
+
## [0.0.30](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.29...bog-agents-cli==0.0.30) (2026-03-07)
|
|
69
|
+
|
|
70
|
+
### Features
|
|
71
|
+
|
|
72
|
+
* `--acp` mode to run CLI agent as ACP server ([#1297](https://github.com/langchain-ai/bog-agents/issues/1297)) ([c9ba00a](https://github.com/langchain-ai/bog-agents/commit/c9ba00a56b7ee5e48b56b13f9f093bb8bf639700))
|
|
73
|
+
* Model detail footer + persist `--profile-override` on hot-swap ([#1700](https://github.com/langchain-ai/bog-agents/issues/1700)) ([f2c8b54](https://github.com/langchain-ai/bog-agents/commit/f2c8b54e9b4c541bf6f91139bfb9b6a2f20c8de0))
|
|
74
|
+
* Show message timestamp toast on click ([#1702](https://github.com/langchain-ai/bog-agents/issues/1702)) ([4f403ec](https://github.com/langchain-ai/bog-agents/commit/4f403ecb3332010062158ec30fd55f349654a533))
|
|
75
|
+
|
|
76
|
+
### Bug Fixes
|
|
77
|
+
|
|
78
|
+
* Expire `ctrl+c` quit window when toast disappears ([#1701](https://github.com/langchain-ai/bog-agents/issues/1701)) ([38b5ea9](https://github.com/langchain-ai/bog-agents/commit/38b5ea9484ab121c9b2919dd74469e82fce19b82))
|
|
79
|
+
* Preserve input text when escaping shell/command mode ([#1706](https://github.com/langchain-ai/bog-agents/issues/1706)) ([3c00edb](https://github.com/langchain-ai/bog-agents/commit/3c00edb93eddf74e87d58526a02be72577ed65b1))
|
|
80
|
+
* Right-align token count next to model name in status bar ([#1705](https://github.com/langchain-ai/bog-agents/issues/1705)) ([311c919](https://github.com/langchain-ai/bog-agents/commit/311c9191cf663540e1b62eb9452abecda5bc7b4f))
|
|
81
|
+
|
|
82
|
+
## [0.0.29](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.28...bog-agents-cli==0.0.29) (2026-03-06)
|
|
83
|
+
|
|
84
|
+
### Features
|
|
85
|
+
|
|
86
|
+
* `--model-params` flag on `/model` command ([#1679](https://github.com/langchain-ai/bog-agents/issues/1679)) ([9b6433d](https://github.com/langchain-ai/bog-agents/commit/9b6433d557e6e8b3d39c10577595b0ef6d741c94))
|
|
87
|
+
* `--shell-allow-list all` ([#1695](https://github.com/langchain-ai/bog-agents/issues/1695)) ([4aec7b3](https://github.com/langchain-ai/bog-agents/commit/4aec7b35caa7723b8bbda189c9ca1d213e0a9a6d))
|
|
88
|
+
* Hook dispatch for external tool integration ([#1553](https://github.com/langchain-ai/bog-agents/issues/1553)) ([cdb2230](https://github.com/langchain-ai/bog-agents/commit/cdb2230f04ce7a2b7ef0837cbbc223dcbf04b78e))
|
|
89
|
+
* Detect deceptive unicode in tool args and URLs ([#1694](https://github.com/langchain-ai/bog-agents/issues/1694)) ([d4c8544](https://github.com/langchain-ai/bog-agents/commit/d4c8544bd6bf3b6df50b99f8a0c7208c20f86bd9))
|
|
90
|
+
* MCP tool loading with auto-discovery ([#801](https://github.com/langchain-ai/bog-agents/issues/801)) ([df0908e](https://github.com/langchain-ai/bog-agents/commit/df0908ebed4e17f0fd904d83e9d4ea38dfc1207d))
|
|
91
|
+
* Surface mcp server/tool info in system prompt ([#1693](https://github.com/langchain-ai/bog-agents/issues/1693)) ([068e075](https://github.com/langchain-ai/bog-agents/commit/068e075ecd4a7f3e35219ae6b87707bd9dc3f785))
|
|
92
|
+
|
|
93
|
+
### Bug Fixes
|
|
94
|
+
|
|
95
|
+
* Anchor `ChatInput` below scrollable area ([#1671](https://github.com/langchain-ai/bog-agents/issues/1671)) ([11105d9](https://github.com/langchain-ai/bog-agents/commit/11105d93f593d802d5e120c095f16d771c674bef))
|
|
96
|
+
* Remove dead chat-spacer widget and resize handler ([#1686](https://github.com/langchain-ai/bog-agents/issues/1686)) ([b6ecec5](https://github.com/langchain-ai/bog-agents/commit/b6ecec5bd14677a878c92a1b51e950f61fabf8d3))
|
|
97
|
+
|
|
98
|
+
## [0.0.28](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.27...bog-agents-cli==0.0.28) (2026-03-05)
|
|
99
|
+
|
|
100
|
+
### Features
|
|
101
|
+
|
|
102
|
+
* Video support to multimodal inputs ([#1521](https://github.com/langchain-ai/bog-agents/issues/1521)) ([f9b49b7](https://github.com/langchain-ai/bog-agents/commit/f9b49b7341bd42b5278a03496743e4709689598e))
|
|
103
|
+
* NVIDIA API key support and default model ([#1577](https://github.com/langchain-ai/bog-agents/issues/1577)) ([9ce2660](https://github.com/langchain-ai/bog-agents/commit/9ce2660a67c3497cff18d27131fb7ef49e85b310))
|
|
104
|
+
* Fuzzy search for slash command autocomplete ([#1660](https://github.com/langchain-ai/bog-agents/issues/1660)) ([5f6e9c0](https://github.com/langchain-ai/bog-agents/commit/5f6e9c014e6a99783b3113184cc12f0179a902f0))
|
|
105
|
+
* Tab autocomplete in model selector ([#1669](https://github.com/langchain-ai/bog-agents/issues/1669)) ([28bd0aa](https://github.com/langchain-ai/bog-agents/commit/28bd0aaca737b8bb194ecb9f6612989b9aacec02))
|
|
106
|
+
|
|
107
|
+
### Bug Fixes
|
|
108
|
+
|
|
109
|
+
* Backspace at cursor position 0 exits mode even with text ([#1666](https://github.com/langchain-ai/bog-agents/issues/1666)) ([dfa4c1f](https://github.com/langchain-ai/bog-agents/commit/dfa4c1fedcecf2bb17d8ffef01cf50efe6c80fb0))
|
|
110
|
+
* Skip auto-approve toggle when modal screen is open ([#1668](https://github.com/langchain-ai/bog-agents/issues/1668)) ([6597f0b](https://github.com/langchain-ai/bog-agents/commit/6597f0b8da3c3bd701a42e228660d459cefe3f64))
|
|
111
|
+
* Truncate model name in status bar on narrow terminals ([#1665](https://github.com/langchain-ai/bog-agents/issues/1665)) ([0e24a04](https://github.com/langchain-ai/bog-agents/commit/0e24a04aa9e5894735522ce23295bb27fd2b8190))
|
|
112
|
+
|
|
113
|
+
## [0.0.27](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.26...bog-agents-cli==0.0.27) (2026-03-04)
|
|
114
|
+
|
|
115
|
+
### Features
|
|
116
|
+
|
|
117
|
+
* Background PyPI update check ([#1648](https://github.com/langchain-ai/bog-agents/issues/1648)) ([2e7a5e7](https://github.com/langchain-ai/bog-agents/commit/2e7a5e7d97f64147ab2d000fae833fe681f1d6b2))
|
|
118
|
+
* Install script ([#1649](https://github.com/langchain-ai/bog-agents/issues/1649)) ([68f6ef9](https://github.com/langchain-ai/bog-agents/commit/68f6ef96e7d66b2c98d1371e91e5d25f107b80fe))
|
|
119
|
+
* Fuzzy search for model switcher ([#1266](https://github.com/langchain-ai/bog-agents/issues/1266)) ([a6bbb18](https://github.com/langchain-ai/bog-agents/commit/a6bbb182a2336ba748d93a06b9fcf27966321e20))
|
|
120
|
+
* Model usage stats display ([#1587](https://github.com/langchain-ai/bog-agents/issues/1587)) ([a1208db](https://github.com/langchain-ai/bog-agents/commit/a1208db096761eb54e0fe712a5aa922502575cb6))
|
|
121
|
+
* Substring matching in command history navigation ([#1301](https://github.com/langchain-ai/bog-agents/issues/1301)) ([e276d5a](https://github.com/langchain-ai/bog-agents/commit/e276d5a64bee9394f53ab993b01447023bcd4c7d))
|
|
122
|
+
|
|
123
|
+
### Bug Fixes
|
|
124
|
+
|
|
125
|
+
* Allow Esc to exit command/bash input mode ([#1644](https://github.com/langchain-ai/bog-agents/issues/1644)) ([906da72](https://github.com/langchain-ai/bog-agents/commit/906da72ea40e16492f8e7f3c35758af486c92b3c))
|
|
126
|
+
* Make `!` bash commands interruptible via `Esc`/`Ctrl+C` ([#1638](https://github.com/langchain-ai/bog-agents/issues/1638)) ([0c414d1](https://github.com/langchain-ai/bog-agents/commit/0c414d154a74cfabebfae8fc2dbb6d7e39da3857))
|
|
127
|
+
* Make escape reject pending HITL approval first ([#1645](https://github.com/langchain-ai/bog-agents/issues/1645)) ([5d7be0c](https://github.com/langchain-ai/bog-agents/commit/5d7be0c1a2fbe54f7fe062c5a43a7591aecb00e4))
|
|
128
|
+
* Show cwd on startup ([#1209](https://github.com/langchain-ai/bog-agents/issues/1209)) ([23032dd](https://github.com/langchain-ai/bog-agents/commit/23032ddd80b0ec8bf58c91776e62b834f6e03b5e))
|
|
129
|
+
* Terminate active subprocesses on app quit ([#1646](https://github.com/langchain-ai/bog-agents/issues/1646)) ([5f2e614](https://github.com/langchain-ai/bog-agents/commit/5f2e614f05912d3278a988cb7366612099105acf))
|
|
130
|
+
* Use first-class OpenRouter attribution kwargs ([#1635](https://github.com/langchain-ai/bog-agents/issues/1635)) ([9c1ed93](https://github.com/langchain-ai/bog-agents/commit/9c1ed93861a52b9ced2c1426131d542f50afa623))
|
|
131
|
+
|
|
132
|
+
## [0.0.26](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.25...bog-agents-cli==0.0.26) (2026-03-03)
|
|
133
|
+
|
|
134
|
+
### Features
|
|
135
|
+
|
|
136
|
+
* Compaction hook ([#1420](https://github.com/langchain-ai/bog-agents/issues/1420)) ([e87cdad](https://github.com/langchain-ai/bog-agents/commit/e87cdaddb9a984c4fd189b4f71303881edb32cb2))
|
|
137
|
+
* `/compact` command ([#1579](https://github.com/langchain-ai/bog-agents/issues/1579)) ([46e9e95](https://github.com/langchain-ai/bog-agents/commit/46e9e950087e973175d49d6a863cfa9d2f241528))
|
|
138
|
+
* `--profile-override` CLI flag ([#1605](https://github.com/langchain-ai/bog-agents/issues/1605)) ([1984099](https://github.com/langchain-ai/bog-agents/commit/1984099ae9ac4b0c13dc08722abb9d56055da7b7))
|
|
139
|
+
* Model profile overrides in config ([#1603](https://github.com/langchain-ai/bog-agents/issues/1603)) ([d3d6899](https://github.com/langchain-ai/bog-agents/commit/d3d6899209b7cf97447da0eee642b3f55261ffbc))
|
|
140
|
+
* Show summarization status and notification ([#919](https://github.com/langchain-ai/bog-agents/issues/919)) ([2e3cb74](https://github.com/langchain-ai/bog-agents/commit/2e3cb743eff8e0a33b215359132cee13a673a4df))
|
|
141
|
+
|
|
142
|
+
### Bug Fixes
|
|
143
|
+
|
|
144
|
+
* Fix image path pasting qualms ([#1560](https://github.com/langchain-ai/bog-agents/issues/1560)) ([8caaf3e](https://github.com/langchain-ai/bog-agents/commit/8caaf3e71ae7f5a26c20ca86700cc51f3c6f37ed))
|
|
145
|
+
* Load `.agents` skill alias directories at interactive startup ([#1556](https://github.com/langchain-ai/bog-agents/issues/1556)) ([af0a759](https://github.com/langchain-ai/bog-agents/commit/af0a759ee231cfe8860da34fe39dbcff38726102))
|
|
146
|
+
* Coerce execute timeout to int before formatting tool display ([#1588](https://github.com/langchain-ai/bog-agents/issues/1588)) ([04b8c72](https://github.com/langchain-ai/bog-agents/commit/04b8c72361f7eb60b86fa560ef3f6283912c3395)), closes [#1586](https://github.com/langchain-ai/bog-agents/issues/1586)
|
|
147
|
+
* Add missing flags to help screen ([#1619](https://github.com/langchain-ai/bog-agents/issues/1619)) ([6067749](https://github.com/langchain-ai/bog-agents/commit/60677492b3f49adc8535b34156029271a0728923))
|
|
148
|
+
* Align compaction messaging across `/compact` and `compact_conversation` ([#1583](https://github.com/langchain-ai/bog-agents/issues/1583)) ([d455a6b](https://github.com/langchain-ai/bog-agents/commit/d455a6b117dbca2dfb5156050273a84946adc247))
|
|
149
|
+
* Apply profile overrides in `/compact` ([#1612](https://github.com/langchain-ai/bog-agents/issues/1612)) ([a9dc2c5](https://github.com/langchain-ai/bog-agents/commit/a9dc2c5a1ad6d37f3f682491664b3f709cad8552))
|
|
150
|
+
* Disambiguate `/tokens` vs `/compact` token reporting ([#1618](https://github.com/langchain-ai/bog-agents/issues/1618)) ([51c3347](https://github.com/langchain-ai/bog-agents/commit/51c3347e5a402115d4ecbb09f0074c607270f992))
|
|
151
|
+
* Make LangSmith URL lookups non-blocking ([#1595](https://github.com/langchain-ai/bog-agents/issues/1595)) ([572eaee](https://github.com/langchain-ai/bog-agents/commit/572eaeefbe2f9318555733977e4771815879273c))
|
|
152
|
+
* Only exit input mode on backspace, not text clear ([#1479](https://github.com/langchain-ai/bog-agents/issues/1479)) ([da0965e](https://github.com/langchain-ai/bog-agents/commit/da0965ee33e6bdf7aec30865bed44a1bd38a7d12))
|
|
153
|
+
* Retry langsmith project url lookup until project exists ([#1562](https://github.com/langchain-ai/bog-agents/issues/1562)) ([e137a63](https://github.com/langchain-ai/bog-agents/commit/e137a633fdadda205b8e05a9fdabc4b978726a37))
|
|
154
|
+
* Show model info in `/tokens` before first usage ([#1607](https://github.com/langchain-ai/bog-agents/issues/1607)) ([7b01ae7](https://github.com/langchain-ai/bog-agents/commit/7b01ae7258ed079046262d1c174f1c406101294c))
|
|
155
|
+
* Support `timeout=0` for sandbox `execute()` ([#1558](https://github.com/langchain-ai/bog-agents/issues/1558)) ([ed14443](https://github.com/langchain-ai/bog-agents/commit/ed14443b5aec8afde1f74bb2e12a17cb7d1829b6))
|
|
156
|
+
* Unreachable `except` block ([#1535](https://github.com/langchain-ai/bog-agents/issues/1535)) ([0e17e35](https://github.com/langchain-ai/bog-agents/commit/0e17e352fa2ae4e34320a27d272586a10a0a7aec))
|
|
157
|
+
|
|
158
|
+
### Performance Improvements
|
|
159
|
+
|
|
160
|
+
* Optimize thread resume path with prefetch and batched hydration ([#1561](https://github.com/langchain-ai/bog-agents/issues/1561)) ([068d112](https://github.com/langchain-ai/bog-agents/commit/068d1128177de0f0a01f533a01184039c2a2f09f))
|
|
161
|
+
* Parallelize detection scripts for faster first-turn ([#1541](https://github.com/langchain-ai/bog-agents/issues/1541)) ([dad8b6e](https://github.com/langchain-ai/bog-agents/commit/dad8b6e15a78d26921c0cb831579648927caa551))
|
|
162
|
+
* Speed up `/threads` first-open ([#1481](https://github.com/langchain-ai/bog-agents/issues/1481)) ([b248b15](https://github.com/langchain-ai/bog-agents/commit/b248b15fd70de3c4d055b68a0dae04f00e41ea9e))
|
|
163
|
+
|
|
164
|
+
## [0.0.25](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.24...bog-agents-cli==0.0.25) (2026-02-20)
|
|
165
|
+
|
|
166
|
+
### Features
|
|
167
|
+
|
|
168
|
+
* Set OpenRouter headers, default to `gemini-3.1-pro-preview` ([#1455](https://github.com/langchain-ai/bog-agents/issues/1455)) ([95c0b71](https://github.com/langchain-ai/bog-agents/commit/95c0b71c2fafbec8424d92e7698563045a787866)), closes [#1454](https://github.com/langchain-ai/bog-agents/issues/1454)
|
|
169
|
+
|
|
170
|
+
### Bug Fixes
|
|
171
|
+
|
|
172
|
+
* Duplicate paste issue ([#1460](https://github.com/langchain-ai/bog-agents/issues/1460)) ([9177515](https://github.com/langchain-ai/bog-agents/commit/9177515c8a968882e980d229fb546c9753475de7)), closes [#1425](https://github.com/langchain-ai/bog-agents/issues/1425)
|
|
173
|
+
* Remove model fallback to env variables ([#1458](https://github.com/langchain-ai/bog-agents/issues/1458)) ([c9b4275](https://github.com/langchain-ai/bog-agents/commit/c9b4275e22fda5aa35b3ddce924277ec8aaa9e1f))
|
|
174
|
+
|
|
175
|
+
## [0.0.24](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.23...bog-agents-cli==0.0.24) (2026-02-20)
|
|
176
|
+
|
|
177
|
+
### Features
|
|
178
|
+
|
|
179
|
+
* Add single-click link opening for rich-style hyperlinks ([#1433](https://github.com/langchain-ai/bog-agents/issues/1433)) ([ef1fd31](https://github.com/langchain-ai/bog-agents/commit/ef1fd3115d77cd769e664d2ad0345623f9ce4019))
|
|
180
|
+
* Display model name and context window size using `/tokens` ([#1441](https://github.com/langchain-ai/bog-agents/issues/1441)) ([ff7ef0f](https://github.com/langchain-ai/bog-agents/commit/ff7ef0f87e6dfc6c581edb34b1a57be7ff6e059c))
|
|
181
|
+
* Refresh local context after summarization events ([#1384](https://github.com/langchain-ai/bog-agents/issues/1384)) ([dcb9583](https://github.com/langchain-ai/bog-agents/commit/dcb95839de360f03d2fc30c9144096874b24006f))
|
|
182
|
+
* Windowed thread hydration and configurable thread limit ([#1435](https://github.com/langchain-ai/bog-agents/issues/1435)) ([9da8d0b](https://github.com/langchain-ai/bog-agents/commit/9da8d0b5c86441e87b85ee6f8db1d23848a823ed))
|
|
183
|
+
* Per-command `timeout` override to `execute()` ([#1154](https://github.com/langchain-ai/bog-agents/issues/1154)) ([49277d4](https://github.com/langchain-ai/bog-agents/commit/49277d45a026c86b5bf176142dcb1dfc2c7643ae))
|
|
184
|
+
|
|
185
|
+
### Bug Fixes
|
|
186
|
+
|
|
187
|
+
* Escape `Rich` markup in shell command display ([#1413](https://github.com/langchain-ai/bog-agents/issues/1413)) ([c330290](https://github.com/langchain-ai/bog-agents/commit/c33029032a1e2072dab2d06e93953f2acaa6d400))
|
|
188
|
+
* Load root-level `AGENTS.md` into agent system prompt ([#1445](https://github.com/langchain-ai/bog-agents/issues/1445)) ([047fa2c](https://github.com/langchain-ai/bog-agents/commit/047fa2cadfb9f005410c21a6e1e3b3d59eadda7d))
|
|
189
|
+
* Prevent crash when quitting with queued messages ([#1421](https://github.com/langchain-ai/bog-agents/issues/1421)) ([a3c9ae6](https://github.com/langchain-ai/bog-agents/commit/a3c9ae681501cd3efca82573a8d20a0dc8c9b338))
|
|
190
|
+
|
|
191
|
+
## [0.0.23](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.22...bog-agents-cli==0.0.23) (2026-02-18)
|
|
192
|
+
|
|
193
|
+
### Features
|
|
194
|
+
|
|
195
|
+
* Add drag-and-drop image attachment to chat input ([#1386](https://github.com/langchain-ai/bog-agents/issues/1386)) ([cd3d89b](https://github.com/langchain-ai/bog-agents/commit/cd3d89b4419b4c164915ff745afff99cb11b55a5))
|
|
196
|
+
* Skill deletion command ([#580](https://github.com/langchain-ai/bog-agents/issues/580)) ([40a8d86](https://github.com/langchain-ai/bog-agents/commit/40a8d866f952e0cf8d856e2fa360de771721b99a))
|
|
197
|
+
* Add visual mode indicators to chat input ([#1371](https://github.com/langchain-ai/bog-agents/issues/1371)) ([1ea6159](https://github.com/langchain-ai/bog-agents/commit/1ea6159b068b8c7d721d90a5c196e2eb9877c1c5))
|
|
198
|
+
* Dismiss completion dropdown on `esc` ([#1362](https://github.com/langchain-ai/bog-agents/issues/1362)) ([961b7fc](https://github.com/langchain-ai/bog-agents/commit/961b7fc764a7fbf63466d78c1d80b154b5d1692b))
|
|
199
|
+
* Expand local context & implement via bash for sandbox support ([#1295](https://github.com/langchain-ai/bog-agents/issues/1295)) ([de8bc7c](https://github.com/langchain-ai/bog-agents/commit/de8bc7cbbd7780ef250b3838f61ace85d4465c0a))
|
|
200
|
+
* Show sdk version alongside cli version ([#1378](https://github.com/langchain-ai/bog-agents/issues/1378)) ([e99b4c8](https://github.com/langchain-ai/bog-agents/commit/e99b4c864afd01d68c3829304fb93cc0530eedee))
|
|
201
|
+
* Strip mode-trigger prefix from chat input text ([#1373](https://github.com/langchain-ai/bog-agents/issues/1373)) ([6879eff](https://github.com/langchain-ai/bog-agents/commit/6879effb37c2160ef3835cd2d058b79f9d3a5a99))
|
|
202
|
+
|
|
203
|
+
### Bug Fixes
|
|
204
|
+
|
|
205
|
+
* Path hardening ([#918](https://github.com/langchain-ai/bog-agents/issues/918)) ([fc34a14](https://github.com/langchain-ai/bog-agents/commit/fc34a144a2791c75f8b4c11f67dd1adbc029c81e))
|
|
206
|
+
* Only navigate prompt history at input boundaries ([#1385](https://github.com/langchain-ai/bog-agents/issues/1385)) ([6d82d6d](https://github.com/langchain-ai/bog-agents/commit/6d82d6de290e73b897a58d724f3dfc7a32a06cba))
|
|
207
|
+
* Substitute image base64 for placeholder in result block ([#1381](https://github.com/langchain-ai/bog-agents/issues/1381)) ([54f4d8e](https://github.com/langchain-ai/bog-agents/commit/54f4d8e834c4aad672d78b4130cd43f2454424fa))
|
|
208
|
+
|
|
209
|
+
### Performance Improvements
|
|
210
|
+
|
|
211
|
+
* Defer more heavy imports to speed up startup ([#1389](https://github.com/langchain-ai/bog-agents/issues/1389)) ([4dd10d5](https://github.com/langchain-ai/bog-agents/commit/4dd10d5c9f3cfe13cd7b9ac18a1799c0832976ff))
|
|
212
|
+
|
|
213
|
+
## [0.0.22](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.21...bog-agents-cli==0.0.22) (2026-02-17)
|
|
214
|
+
|
|
215
|
+
### Features
|
|
216
|
+
|
|
217
|
+
* Add `langchain-openrouter` ([#1340](https://github.com/langchain-ai/bog-agents/issues/1340)) ([5b35247](https://github.com/langchain-ai/bog-agents/commit/5b35247b126ed328e9562ac3a3c2acd184b39011))
|
|
218
|
+
* Update system & default prompt ([#1293](https://github.com/langchain-ai/bog-agents/issues/1293)) ([2aeb092](https://github.com/langchain-ai/bog-agents/commit/2aeb092e027affd9eaa8a78b33101e1fd930d444))
|
|
219
|
+
* Warn when ripgrep is not installed ([#1337](https://github.com/langchain-ai/bog-agents/issues/1337)) ([0367efa](https://github.com/langchain-ai/bog-agents/commit/0367efa323b7a29c015d6a3fbb5af8894dc724b8))
|
|
220
|
+
* Ensure dep group version match for CLI ([#1316](https://github.com/langchain-ai/bog-agents/issues/1316)) ([db05de1](https://github.com/langchain-ai/bog-agents/commit/db05de1b0c92208b9752f3f03fa5fa54813ab4ef))
|
|
221
|
+
* Enable type checking in `bog-agents` and resolve most linting issues ([#991](https://github.com/langchain-ai/bog-agents/issues/991)) ([5c90376](https://github.com/langchain-ai/bog-agents/commit/5c90376c02754c67d448908e55d1e953f54b8acd))
|
|
222
|
+
|
|
223
|
+
### Bug Fixes
|
|
224
|
+
|
|
225
|
+
* Handle `None` selection endpoint, `IndexError` in clipboard copy ([#1342](https://github.com/langchain-ai/bog-agents/issues/1342)) ([5754031](https://github.com/langchain-ai/bog-agents/commit/57540316cf928da3dcf4401fb54a5d0102045d67))
|
|
226
|
+
|
|
227
|
+
### Performance Improvements
|
|
228
|
+
|
|
229
|
+
* Defer heavy imports ([#1361](https://github.com/langchain-ai/bog-agents/issues/1361)) ([dd992e4](https://github.com/langchain-ai/bog-agents/commit/dd992e48feb3e3a9fc6fd93f56e9d8a9cb51c7bf))
|
|
230
|
+
|
|
231
|
+
## [0.0.21](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.20...bog-agents-cli==0.0.21) (2026-02-11)
|
|
232
|
+
|
|
233
|
+
### Features
|
|
234
|
+
|
|
235
|
+
* Support piped stdin as prompt input ([#1254](https://github.com/langchain-ai/bog-agents/issues/1254)) ([cca61ff](https://github.com/langchain-ai/bog-agents/commit/cca61ff5edb5e2424bfc54b2ac33b59a520fdd6a))
|
|
236
|
+
* `/threads` command switcher ([#1262](https://github.com/langchain-ai/bog-agents/issues/1262)) ([45bf38d](https://github.com/langchain-ai/bog-agents/commit/45bf38d7c5ca7ca05ec58c320494a692e419b632)), closes [#1111](https://github.com/langchain-ai/bog-agents/issues/1111)
|
|
237
|
+
* Make thread link clickable when switching ([#1296](https://github.com/langchain-ai/bog-agents/issues/1296)) ([9409520](https://github.com/langchain-ai/bog-agents/commit/9409520d524c576c3b0b9686c96a1749ee9dcbbb)), closes [#1291](https://github.com/langchain-ai/bog-agents/issues/1291)
|
|
238
|
+
* `/trace` command to open LangSmith thread, link in switcher ([#1291](https://github.com/langchain-ai/bog-agents/issues/1291)) ([fbbd45b](https://github.com/langchain-ai/bog-agents/commit/fbbd45b51be2cf09726a3cd0adfcb09cb2b1ff46))
|
|
239
|
+
* `/changelog`, `/feedback`, `/docs` ([#1261](https://github.com/langchain-ai/bog-agents/issues/1261)) ([4561afb](https://github.com/langchain-ai/bog-agents/commit/4561afbea17bb11f7fc02ae9f19db15229656280))
|
|
240
|
+
* Show langsmith thread url on session teardown ([#1285](https://github.com/langchain-ai/bog-agents/issues/1285)) ([899fd1c](https://github.com/langchain-ai/bog-agents/commit/899fd1cdea6f7b2003992abd3f6173d630849a90))
|
|
241
|
+
|
|
242
|
+
### Bug Fixes
|
|
243
|
+
|
|
244
|
+
* Fix stale model settings during model hot-swap ([#1257](https://github.com/langchain-ai/bog-agents/issues/1257)) ([55c119c](https://github.com/langchain-ai/bog-agents/commit/55c119cb6ce73db7cae0865172f00ab8fc9f8fc1))
|
|
245
|
+
|
|
246
|
+
## [0.0.20](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.19...bog-agents-cli==0.0.20) (2026-02-10)
|
|
247
|
+
|
|
248
|
+
### Features
|
|
249
|
+
|
|
250
|
+
* `--quiet` flag to suppress non-agent output w/ `-n` ([#1201](https://github.com/langchain-ai/bog-agents/issues/1201)) ([3e96792](https://github.com/langchain-ai/bog-agents/commit/3e967926655cf5249a1bc5ca3edd48da9dd3061b))
|
|
251
|
+
* Add docs link to `/help` ([#1098](https://github.com/langchain-ai/bog-agents/issues/1098)) ([8f8fc98](https://github.com/langchain-ai/bog-agents/commit/8f8fc98bd403d96d6ed95fce8906d9c881236613))
|
|
252
|
+
* Built-in skills, ship `skill-creator` as first ([#1191](https://github.com/langchain-ai/bog-agents/issues/1191)) ([42823a8](https://github.com/langchain-ai/bog-agents/commit/42823a88d1eb7242a5d9b3eba981f24b3ea9e274))
|
|
253
|
+
* Enrich built-in skill metadata with license and compatibility info ([#1193](https://github.com/langchain-ai/bog-agents/issues/1193)) ([b8179c2](https://github.com/langchain-ai/bog-agents/commit/b8179c23f9130c92cb1fb7c6b34d98cc32ec092a))
|
|
254
|
+
* Implement message queue for CLI ([#1197](https://github.com/langchain-ai/bog-agents/issues/1197)) ([c4678d7](https://github.com/langchain-ai/bog-agents/commit/c4678d7641785ac4f17045eb75d55f9dc44f37fe))
|
|
255
|
+
* Model switcher & arbitrary chat model support ([#1127](https://github.com/langchain-ai/bog-agents/issues/1127)) ([28fc311](https://github.com/langchain-ai/bog-agents/commit/28fc311da37881257e409149022f0717f78013ef))
|
|
256
|
+
* Non-interactive mode w/ shell allow-listing ([#909](https://github.com/langchain-ai/bog-agents/issues/909)) ([433bd2c](https://github.com/langchain-ai/bog-agents/commit/433bd2cb493d6c4b59f2833e4304eead0304195a))
|
|
257
|
+
* Support custom working directories and LangSmith sandbox templates ([#1099](https://github.com/langchain-ai/bog-agents/issues/1099)) ([21e7150](https://github.com/langchain-ai/bog-agents/commit/21e715054ea5cf48cab05319b2116509fbacd899))
|
|
258
|
+
|
|
259
|
+
### Bug Fixes
|
|
260
|
+
|
|
261
|
+
* `-m` initial prompt submission ([#1184](https://github.com/langchain-ai/bog-agents/issues/1184)) ([a702e82](https://github.com/langchain-ai/bog-agents/commit/a702e82a0f61edbadd78eff6906ecde20b601798))
|
|
262
|
+
* Align skill-creator example scripts with agent skills spec ([#1177](https://github.com/langchain-ai/bog-agents/issues/1177)) ([199d176](https://github.com/langchain-ai/bog-agents/commit/199d17676ac1bfee645908a6c58193291e522890))
|
|
263
|
+
* Harden dictionary iteration and HITL fallback handling ([#1151](https://github.com/langchain-ai/bog-agents/issues/1151)) ([8b21fc6](https://github.com/langchain-ai/bog-agents/commit/8b21fc6105d808ad25c53de96f339ab21efb4474))
|
|
264
|
+
* Per-subcommand help screens, short flags, and skills enhancements ([#1190](https://github.com/langchain-ai/bog-agents/issues/1190)) ([3da1e8b](https://github.com/langchain-ai/bog-agents/commit/3da1e8bc20bf39aba80f6507b9abc2352de38484))
|
|
265
|
+
* Port skills behavior from SDK ([#1192](https://github.com/langchain-ai/bog-agents/issues/1192)) ([ad9241d](https://github.com/langchain-ai/bog-agents/commit/ad9241da6e7e23e4430756a1d5a3afb6c6bfebcc)), closes [#1189](https://github.com/langchain-ai/bog-agents/issues/1189)
|
|
266
|
+
* Rewrite skills create template to match spec guidance ([#1178](https://github.com/langchain-ai/bog-agents/issues/1178)) ([f08ad52](https://github.com/langchain-ai/bog-agents/commit/f08ad520172bd114e4cebf69138a10cbf98e157a))
|
|
267
|
+
* Terminal virtualize scrolling to stop perf issues ([#965](https://github.com/langchain-ai/bog-agents/issues/965)) ([5633c82](https://github.com/langchain-ai/bog-agents/commit/5633c825832a0e8bd645681db23e97af31879b65))
|
|
268
|
+
* Update splash thread ID on `/clear` ([#1204](https://github.com/langchain-ai/bog-agents/issues/1204)) ([23651ed](https://github.com/langchain-ai/bog-agents/commit/23651edbc236e4a68fb0d9496506e6293b836cd9))
|
|
269
|
+
* Refactor summarization middleware ([#1138](https://github.com/langchain-ai/bog-agents/issues/1138)) ([e87001e](https://github.com/langchain-ai/bog-agents/commit/e87001eace2852c2df47095ffd2611f09fdda2f5))
|
|
270
|
+
|
|
271
|
+
## [0.0.19](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.18...bog-agents-cli==0.0.19) (2026-02-06)
|
|
272
|
+
|
|
273
|
+
### Features
|
|
274
|
+
|
|
275
|
+
* Add click support and hover styling to autocomplete popup ([#1130](https://github.com/langchain-ai/bog-agents/issues/1130)) ([b1cc83d](https://github.com/langchain-ai/bog-agents/commit/b1cc83d277e01614b0cc4141993cde40ce68d632))
|
|
276
|
+
* Per-command `timeout` override to `execute` tool ([#1158](https://github.com/langchain-ai/bog-agents/issues/1158)) ([cb390ef](https://github.com/langchain-ai/bog-agents/commit/cb390ef7a89966760f08c5aceb2211220e8653b8))
|
|
277
|
+
* Highlight file mentions and support CJK parsing ([#558](https://github.com/langchain-ai/bog-agents/issues/558)) ([cebe333](https://github.com/langchain-ai/bog-agents/commit/cebe333246f8bea6b04d6283985e102c2ed5d744))
|
|
278
|
+
* Make thread id in splash clickable ([#1159](https://github.com/langchain-ai/bog-agents/issues/1159)) ([6087fb2](https://github.com/langchain-ai/bog-agents/commit/6087fb276f39ed9a388d722ff1be88d94debf49f))
|
|
279
|
+
* Use LocalShellBackend, gives shell to subagents ([#1107](https://github.com/langchain-ai/bog-agents/issues/1107)) ([b57ea39](https://github.com/langchain-ai/bog-agents/commit/b57ea3906680818b94ecca88b92082d4dea63694))
|
|
280
|
+
|
|
281
|
+
### Bug Fixes
|
|
282
|
+
|
|
283
|
+
* Disable iTerm2 cursor guide during execution ([#1123](https://github.com/langchain-ai/bog-agents/issues/1123)) ([4eb7d42](https://github.com/langchain-ai/bog-agents/commit/4eb7d426eaefa41f74cc6056ae076f475a0a400d))
|
|
284
|
+
* Dismiss modal screens on escape key ([#1128](https://github.com/langchain-ai/bog-agents/issues/1128)) ([27047a0](https://github.com/langchain-ai/bog-agents/commit/27047a085de99fcb9977816663e61114c2b008ac))
|
|
285
|
+
* Hide resume hint on app error and improve startup message ([#1135](https://github.com/langchain-ai/bog-agents/issues/1135)) ([4e25843](https://github.com/langchain-ai/bog-agents/commit/4e258430468b56c3e79499f6b7c5ab7b9cd6f45b))
|
|
286
|
+
* Propagate app errors instead of masking ([#1126](https://github.com/langchain-ai/bog-agents/issues/1126)) ([79a1984](https://github.com/langchain-ai/bog-agents/commit/79a1984629847ce067b6ce78ad14797889724244))
|
|
287
|
+
* Remove Interactive Features from --help output ([#1161](https://github.com/langchain-ai/bog-agents/issues/1161)) ([a296789](https://github.com/langchain-ai/bog-agents/commit/a2967898933b77dd8da6458553f49e717fa732e6))
|
|
288
|
+
* Rename `SystemMessage` -> `AppMessage` ([#1113](https://github.com/langchain-ai/bog-agents/issues/1113)) ([f576262](https://github.com/langchain-ai/bog-agents/commit/f576262aeee54499e9970acf76af93553fccfefd))
|
|
289
|
+
* Unify spinner API to support dynamic status text ([#1124](https://github.com/langchain-ai/bog-agents/issues/1124)) ([bb55608](https://github.com/langchain-ai/bog-agents/commit/bb55608b7172f55df38fef88918b2fded894e3ce))
|
|
290
|
+
* Update help text to include `Esc` key for rejection ([#1122](https://github.com/langchain-ai/bog-agents/issues/1122)) ([8f4bcf5](https://github.com/langchain-ai/bog-agents/commit/8f4bcf52547dcd3e38d4d75ce395eb973a7ee2c0))
|
|
291
|
+
|
|
292
|
+
## [0.0.18](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.17...bog-agents-cli==0.0.18) (2026-02-05)
|
|
293
|
+
|
|
294
|
+
### Features
|
|
295
|
+
|
|
296
|
+
* LangSmith sandbox integration ([#1077](https://github.com/langchain-ai/bog-agents/issues/1077)) ([7d17be0](https://github.com/langchain-ai/bog-agents/commit/7d17be00b59e586c55517eaca281342e1a6559ff))
|
|
297
|
+
* Resume thread enhancements ([#1065](https://github.com/langchain-ai/bog-agents/issues/1065)) ([e6663b0](https://github.com/langchain-ai/bog-agents/commit/e6663b0b314582583afd32cb906a6d502cd8f16b))
|
|
298
|
+
* Support .`agents/skills` dir alias ([#1059](https://github.com/langchain-ai/bog-agents/issues/1059)) ([ec1db17](https://github.com/langchain-ai/bog-agents/commit/ec1db172c12bc8b8f85bb03138e442353d4b1013))
|
|
299
|
+
|
|
300
|
+
### Bug Fixes
|
|
301
|
+
|
|
302
|
+
* `Ctrl+E` for tool output toggle ([#1100](https://github.com/langchain-ai/bog-agents/issues/1100)) ([9fa9d72](https://github.com/langchain-ai/bog-agents/commit/9fa9d727dbf6b8996a61f2f764675dbc2e23c1b6))
|
|
303
|
+
* Consolidate tool output expand/collapse hint placement ([#1102](https://github.com/langchain-ai/bog-agents/issues/1102)) ([70db34b](https://github.com/langchain-ai/bog-agents/commit/70db34b5f15a7e81ff586dd0adb2bdfd9ac5d4e9))
|
|
304
|
+
* Delete `/exit` ([#1052](https://github.com/langchain-ai/bog-agents/issues/1052)) ([8331b77](https://github.com/langchain-ai/bog-agents/commit/8331b7790fcf0474e109c3c29f810f4ced0f1745)), closes [#836](https://github.com/langchain-ai/bog-agents/issues/836) [#651](https://github.com/langchain-ai/bog-agents/issues/651)
|
|
305
|
+
* Installed default prompt not updated following upgrade ([#1082](https://github.com/langchain-ai/bog-agents/issues/1082)) ([bffd956](https://github.com/langchain-ai/bog-agents/commit/bffd95610730c668406c485ad941835a5307c226))
|
|
306
|
+
* Replace silent exception handling with proper logging ([#708](https://github.com/langchain-ai/bog-agents/issues/708)) ([20faf7a](https://github.com/langchain-ai/bog-agents/commit/20faf7ac244d97e688f1cc4121d480ed212fe97c))
|
|
307
|
+
* Show full shell command in error output ([#1097](https://github.com/langchain-ai/bog-agents/issues/1097)) ([23bb1d8](https://github.com/langchain-ai/bog-agents/commit/23bb1d8af85eec8739aea17c3bb3616afb22072a)), closes [#1080](https://github.com/langchain-ai/bog-agents/issues/1080)
|
|
308
|
+
* Support `-h`/`--help` flags ([#1106](https://github.com/langchain-ai/bog-agents/issues/1106)) ([26bebf5](https://github.com/langchain-ai/bog-agents/commit/26bebf592ab56ffdc5eeff55bb7c2e542ef8f706))
|
|
309
|
+
|
|
310
|
+
## [0.0.17](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.16...bog-agents-cli==0.0.17) (2026-02-03)
|
|
311
|
+
|
|
312
|
+
### Features
|
|
313
|
+
|
|
314
|
+
* Add expandable shell command display in HITL approval ([#976](https://github.com/langchain-ai/bog-agents/issues/976)) ([fb8a007](https://github.com/langchain-ai/bog-agents/commit/fb8a007123d18025beb1a011f2050e1085dcf69b))
|
|
315
|
+
* Model identity ([#770](https://github.com/langchain-ai/bog-agents/issues/770)) ([e54a0ee](https://github.com/langchain-ai/bog-agents/commit/e54a0ee43c7dfc7fd14c3f43d37cc0ee5e85c5a8))
|
|
316
|
+
* Sandbox provider interface ([#900](https://github.com/langchain-ai/bog-agents/issues/900)) ([d431cfd](https://github.com/langchain-ai/bog-agents/commit/d431cfd4a56713434e84f4fa1cdf4a160b43db95))
|
|
317
|
+
|
|
318
|
+
## [0.0.16](https://github.com/langchain-ai/bog-agents/compare/bog-agents-cli==0.0.15...bog-agents-cli==0.0.16) (2026-02-02)
|
|
319
|
+
|
|
320
|
+
### Features
|
|
321
|
+
|
|
322
|
+
* Add configurable timeout to `ShellMiddleware` ([#961](https://github.com/langchain-ai/bog-agents/issues/961)) ([bc5e417](https://github.com/langchain-ai/bog-agents/commit/bc5e4178a76d795922beab93b87e90ccaf99fba6))
|
|
323
|
+
* Add timeout formatting to enhance `shell` command display ([#987](https://github.com/langchain-ai/bog-agents/issues/987)) ([cbbfd49](https://github.com/langchain-ai/bog-agents/commit/cbbfd49011c9cf93741a024f6efeceeca830820e))
|
|
324
|
+
* Display thread ID at splash ([#988](https://github.com/langchain-ai/bog-agents/issues/988)) ([e61b9e8](https://github.com/langchain-ai/bog-agents/commit/e61b9e8e7af417bf5f636180631dbd47a5bb31bb))
|
|
325
|
+
|
|
326
|
+
### Bug Fixes
|
|
327
|
+
|
|
328
|
+
* Improve clipboard copy/paste on macOS ([#960](https://github.com/langchain-ai/bog-agents/issues/960)) ([3e1c604](https://github.com/langchain-ai/bog-agents/commit/3e1c604474bd98ce1e0ac802df6fb049dd049682))
|
|
329
|
+
* Make `pyperclip` hard dep ([#985](https://github.com/langchain-ai/bog-agents/issues/985)) ([0f5d4ad](https://github.com/langchain-ai/bog-agents/commit/0f5d4ad9e63d415c9b80cd15fa0f89fc2f91357b)), closes [#960](https://github.com/langchain-ai/bog-agents/issues/960)
|
|
330
|
+
* Revert, improve clipboard copy/paste on macOS ([#964](https://github.com/langchain-ai/bog-agents/issues/964)) ([4991992](https://github.com/langchain-ai/bog-agents/commit/4991992a5a60fd9588e2110b46440337affc80da))
|
|
331
|
+
* Update timeout message for long-running commands in `ShellMiddleware` ([#986](https://github.com/langchain-ai/bog-agents/issues/986)) ([dcbe128](https://github.com/langchain-ai/bog-agents/commit/dcbe12805a3650e63da89df0774dd7e0181dbaa6))
|
|
332
|
+
|
|
333
|
+
---
|
|
334
|
+
|
|
335
|
+
## Prior Releases
|
|
336
|
+
|
|
337
|
+
Versions prior to 0.0.16 were released without release-please and do not have changelog entries. Refer to the [releases page](https://github.com/langchain-ai/bog-agents/releases?q=bog-agents-cli) for details on previous versions.
|