fix: revert pipeline prompt to $(cat) inline expansion#276
Conversation
The @file syntax for --prompt is not supported by copilot in pipeline contexts. Revert to --prompt "$(cat file)" which works reliably in the AWF bash entrypoint. The local dev path (run.rs) retains @file since it avoids Windows cmd.exe argument length limits. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
🔍 Rust PR ReviewSummary: Fix is directionally correct but leaves a residual Findings🐛 Bugs / Logic Issues
🔒 Security Concerns
✅ What Looks Good
|
Reverts pipeline templates to use
--prompt "$(cat file)"instead of--prompt @file. The@filesyntax is not supported by copilot in pipeline contexts.Local dev (
run.rs) retains@filesince it avoids the Windows cmd.exe 8191-char argument length limit.