feat(agent-sdk): support text step cancel command in ActionWizard - #4006
Open
mehmetkr-31 wants to merge 1 commit into
Open
feat(agent-sdk): support text step cancel command in ActionWizard#4006mehmetkr-31 wants to merge 1 commit into
mehmetkr-31 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
Adds support for canceling an active
ActionWizardsession from free-text steps using a configured command string (e.g.cancel: { command: "/cancel" }).Previously,
ActionWizardCancelOptionsonly supported button-based cancellation (label) onselectsteps. During atextstep, if a user wished to cancel, typing any text (including/cancel) would be recorded as the answer to that step, leaving users unable to cancel without restarting the wizard via/{id}.Changes
ActionWizard.ts:ActionWizardCancelOptionswith optionalcommand?: \/${string}``.middlewareto recognize the configured cancel command on text messages and invoke#handleCancel.ActionWizard.test.ts:Verification
npx eslint agent-sdk/src/middleware/ActionWizard.ts agent-sdk/src/middleware/ActionWizard.test.ts(Clean)Note
Add cancel command support to text steps in
ActionWizardExtends
ActionWizardCancelOptionswith an optionalcommandfield (e.g.'/cancel'). When configured, sending that exact text while a wizard session is active triggers the cancel handler and stops the wizard without advancing to the next step. Previously, cancellation was only possible via a cancel button on select steps.Macroscope summarized ac7c0c7.