-
Notifications
You must be signed in to change notification settings - Fork 0
Adds MCP server for AI assistant integration #202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
1d681ac
Fix incorrect unused variable warnings in static analyzer
logbie 58617aa
Refactor integration test runner to use PowerShell Jobs
logbie 95ab084
Optimize scope handling with reference counting
logbie 3149b1c
Updates error handling syntax
logbie 07e8471
Format code for improved readability
logbie f9af5a8
Overhauls WflHash with a buffered sponge construction
logbie b847c34
Add DoS protection and binary hashing to crypto lib
logbie ad13a16
Improve cross-platform support in tests
logbie 9040a0d
Adds 'input' function for user interaction
logbie 064b8bc
Adds security warning to experimental crypto functions
logbie 246e808
Docs: Formalize WFLHASH1 algorithm specification
logbie 6f00bf0
Adds MCP server for AI assistant integration
logbie 5ca2884
docs: Add WFL MCP server test report
logbie 115a2df
Applies consistent code formatting
logbie cf039af
docs: Add mandatory git worktrees workflow to CLAUDE.md
logbie 3d12987
ci: Allow all bots to trigger Claude Code reviews
logbie 769675a
Register loop variables in the static analyzer
logbie 720c692
Enable function invocation using parentheses
logbie 206033e
Applies consistent code formatting
logbie 7ab9bd7
Merge main into dev1
logbie a5e9c4c
Remove dev1-specific test for native function parens
logbie 0e81e27
Remove duplicate unreachable LeftParen match arm
logbie 2db07cf
Fix type checker for overloaded builtin functions
logbie 8f6a81c
Refactor code for conciseness
logbie cc565c9
Fix clippy::collapsible_if warning
logbie File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: WebFirstLanguage/wfl
Length of output: 3167
🌐 Web query:
anthropics/claude-code-action allowed_bots parameter💡 Result:
The Claude Code Action supports an allowed_bots input (env var ALLOWED_BOTS / input name allowed_bots) that controls which GitHub bot accounts may trigger the action. By default it's empty (no bots allowed). You can set a comma-separated list of bot usernames (e.g., "dependabot[bot],renovate[bot]") or "*" to allow all bots. [1][2]
Example (workflow with input):
Sources: Anthropic docs (Claude Code Action config) and action config/readme. [1][2]
Restrict
allowed_botsfrom wildcard to specific trusted bots.The
allowed_bots: '*'parameter allows any bot account to trigger Claude Code reviews, creating unnecessary exposure to unauthorized or malicious bots. Since the default behavior is to allow no bots, using a wildcard significantly increases the security surface and API usage costs. Restrict this to specific trusted bots that legitimately need to trigger reviews:🔎 Proposed fix
📝 Committable suggestion
🤖 Prompt for AI Agents