feat(kanban): expose per-task reasoning in tool and CLI - #79405
Open
alexferrari88 wants to merge 1 commit into
Open
feat(kanban): expose per-task reasoning in tool and CLI#79405alexferrari88 wants to merge 1 commit into
alexferrari88 wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
PR #76417 added Kanban task-level
reasoning_effortstorage, Desktop/REST controls, and dispatcher propagation. The coordinator tool and human Kanban CLI could not set that existing field when creating a task.This change completes that surface parity:
reasoning_efforttokanban_create--reasoning LEVELtohermes kanban createnoneas an explicit valueThe implementation reuses the existing database normalization and dispatcher path from #76417. It does not change the database, dispatcher, REST API, Desktop UI, or conversation loop.
Prior art: #47476 proposed the tool and CLI surfaces before #76417 established the final
reasoning_effortschema.Verification
PYTHONDONTWRITEBYTECODE=1 scripts/run_tests.sh tests/tools/test_kanban_tools.py tests/hermes_cli/test_kanban_cli.py tests/plugins/test_kanban_model_override.py -qPYTHONDONTWRITEBYTECODE=1 scripts/run_tests.sh tests/hermes_cli/test_kanban_db.py tests/hermes_cli/test_kanban_core_functionality.py tests/hermes_cli/test_kanban_cli_dispatch_passthrough.py -qpython -m ruff check tools/kanban_tools.py hermes_cli/kanban.py tests/tools/test_kanban_tools.py tests/hermes_cli/test_kanban_cli.pygit diff --check origin/main...HEADIndependent acceptance also exercised explicit effort,
none, omitted/empty inheritance, invalid-value rejection without creating a task, model/provider coexistence, and list/show/JSON visibility.