Add --detect-honeypots option and harden tool/attack robustness across the board #44
Workflow file for this run
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
| name: Claude Code | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| issue_comment: | |
| types: [created] | |
| pull_request_review_comment: | |
| types: [created] | |
| jobs: | |
| claude: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: write | |
| pull-requests: write | |
| issues: write | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v6.0.2 | |
| - name: Run Claude Code Action | |
| uses: anthropics/claude-code-action@v1 | |
| with: | |
| anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} | |
| # What Claude should do | |
| prompt: | | |
| You are an expert security researcher reviewing changes to wifite2 (a Python WiFi auditing tool). | |
| Review this pull request or comment for: | |
| - bugs | |
| - security issues | |
| - code quality problems | |
| - performance improvements | |
| Focus especially on Python code. Be concise but thorough. If you can fix something, do it. | |
| claude_args: | | |
| --max-turns 8 | |
| # Optional but very useful | |
| trigger_phrase: "@claude" | |
| use_sticky_comment: true | |
| include_fix_links: true | |
| track_progress: true |