feat: add agent user_request input#1434
Draft
tarunag10 wants to merge 1 commit into
Draft
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 a first-class
user_requestinput for agent mode and writes it toclaude-user-request.txtafter prompt-dir cleanup.Fixes #1427.
Root cause
Agent mode currently clears
${RUNNER_TEMP}/claude-promptsbefore writingclaude-prompt.txt. That correctly removes stale prompt files, but it also deletesclaude-user-request.txtfiles that composite actions intentionally pre-write before invoking this action.The base SDK runner already supports
claude-user-request.txt: when it exists alongside the prompt file, it sends a multi-block user message so Claude Code can process slash commands from the user request. After the cleanup change, downstream composite actions no longer had a supported point to provide that file.Changes
user_requestto the top-level action inputs.USER_REQUESTand parses it intocontext.inputs.userRequest.claude-user-request.txtafter stale prompt files are cleared.Validation
./node_modules/.bin/prettier --check .bun test test/modes/agent.test.ts test/github-context.test.ts base-action/test/run-claude-sdk.test.tsbun run typecheck