From 3f29dffcfe27f54b0b30fd6875007b0ade38aa64 Mon Sep 17 00:00:00 2001 From: shadowdevcode Date: Tue, 31 Mar 2026 16:15:57 +0530 Subject: [PATCH] fix(workflow): use direct prompt instead of slash command for Claude Code CLI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CLI -p flag does not resolve skills/slash commands — only the interactive REPL does. Pass a plain prompt instructing Claude to read and execute commands/assign-reviewers.md directly. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/pr-auto-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-auto-review.yml b/.github/workflows/pr-auto-review.yml index faf8dc2..82a47fe 100644 --- a/.github/workflows/pr-auto-review.yml +++ b/.github/workflows/pr-auto-review.yml @@ -33,4 +33,4 @@ jobs: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} run: | claude --dangerously-skip-permissions \ - -p "/assign-reviewers ${{ github.event.pull_request.html_url }}" + -p "Read commands/assign-reviewers.md and execute the full protocol for this PR: ${{ github.event.pull_request.html_url }}"