Skip to content

Commit adb13d2

Browse files
committed
fix: remove deprecation phase comments from attemptCompletionTool
1 parent f6004d0 commit adb13d2

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/core/tools/attemptCompletionTool.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,9 @@ export async function attemptCompletionTool(
7474
const experimentsConfig = state?.experiments ?? {}
7575
const isCommandDisabled = experiments.isEnabled(
7676
experimentsConfig as Record<string, boolean>,
77-
EXPERIMENT_IDS.DISABLE_COMPLETION_COMMAND
77+
EXPERIMENT_IDS.DISABLE_COMPLETION_COMMAND,
7878
)
7979

80-
// DEPRECATION NOTICE: The command parameter is being deprecated.
81-
// Phase 1 (Current): Experimental flag to disable command execution
82-
// Phase 2 (Q2 2025): Disabled by default with opt-in
83-
// Phase 3 (Q3 2025): Complete removal
84-
// See docs/deprecation-attempt-completion-command.md for migration guide
8580
if (command && !isCommandDisabled) {
8681
if (lastMessage && lastMessage.ask !== "command") {
8782
// Haven't sent a command message yet so first send completion_result then command.

0 commit comments

Comments
 (0)