name: Claude Plan Assistant on: issue_comment: types: [created] pull_request_review_comment: types: [created] issues: types: [opened, assigned] pull_request_review: types: [submitted] jobs: determine-commenter: if: | (github.event_name == 'issue_comment' && contains(github.event.comment.body, '/plan')) || (github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '/plan')) || (github.event_name == 'pull_request_review' && contains(github.event.review.body, '/plan')) || (github.event_name == 'issues' && contains(github.event.issue.body, '/plan')) runs-on: ubicloud-standard-2 outputs: commenter: ${{ steps.determine-commenter.outputs.commenter }} steps: - name: Determine commenter id: determine-commenter run: | # Work out who wrote the comment / review if [[ "${{ github.event_name }}" == "issue_comment" || \ "${{ github.event_name }}" == "pull_request_review_comment" ]]; then COMMENTER="${{ github.event.comment.user.login }}" elif [[ "${{ github.event_name }}" == "pull_request_review" ]]; then COMMENTER="${{ github.event.review.user.login }}" else COMMENTER="${{ github.event.issue.user.login }}" fi echo "commenter=$COMMENTER" >> $GITHUB_OUTPUT check-membership: needs: determine-commenter uses: ./.github/workflows/check-org-membership.yml with: commenter: ${{ needs.determine-commenter.outputs.commenter }} secrets: access_token: ${{ secrets.ORG_ACCESS_TOKEN }} claude-plan-action: needs: [determine-commenter, check-membership] if: | needs.check-membership.outputs.is_member == 'true' runs-on: ubicloud-standard-4 timeout-minutes: 20 permissions: contents: read pull-requests: read issues: read id-token: write steps: - name: Checkout repository uses: actions/checkout@v4 with: fetch-depth: 1 - name: Run Claude Plan Action uses: anthropics/claude-code-action@v1 with: claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} allowed_bots: 'windmill-internal-app[bot]' trigger_phrase: '/plan' claude_args: | --model opus --system-prompt "# Claude Planning Mode You are operating in PLANNING MODE ONLY. Your role is to create detailed, structured plans without making any code changes. ## Your Responsibilities: 1. **Analyze the Request**: Carefully read and understand what the user is asking for 2. **Explore the Codebase**: Understand the relevant code structure 3. **Create a Detailed Plan**: Provide a comprehensive, step-by-step plan that includes: - Clear breakdown of all tasks needed - Files that will need to be modified or created - Code patterns and architecture decisions - Potential challenges and how to address them - If there are multiple options to achieve the same goal, explain the pros and cons of each option ## Strict Constraints: - **DO NOT** make any code changes - **DO NOT** create branches or pull requests Remember: You are here to plan, not to implement. Provide thorough analysis and clear guidance for implementation."