feat: manual thread close via slash command - #78
Merged
Conversation
Add CLAW_CLOSE_COMMANDS config with close_commands property, and _close_thread method in SlackPoller that cancels pending tasks, disconnects the client, closes the DB session, and sends a farewell. Close command detection runs in _handle_message before agent dispatch. Closes #77 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
• Add
CLAW_CLOSE_COMMANDSconfig setting withclose_commandsproperty that parses CSV into aset[str]• Add
_close_threadmethod toSlackPoller— cancels pending task, disconnects client, closes DB session, sends farewell• Intercept close commands in
_handle_messagebefore agent dispatch so no agent work is triggeredTest plan
•
test_close_command_closes_session—/closetriggersclose_sessionin DB•
test_close_command_disconnects_client— client.disconnect()called and removed from registry•
test_close_command_sends_farewell—reply_to_threadcalled with farewell text•
test_close_command_does_not_run_agent—create_client/send_messageNOT called•
test_non_close_message_runs_agent— normal message still dispatches agent• Full suite: 290 passed, 0 failures (baseline was 285)
Closes #77