Conversation
Document two undocumented fields in the tools.github configuration: - lockdown: limits content from public repos to items by users with push access - app: GitHub App token minting for the GitHub MCP server (added in v0.40.1) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
pelikhan
approved these changes
Feb 26, 2026
pelikhan
approved these changes
Feb 26, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Instructions Update - Synchronized with v0.40.1
This PR updates
github-agentic-workflows.mdbased on code analysis since v0.40.1.Changes Made
tools.github.lockdownfield: enables lockdown mode to limit content surfaced from public repositories to items authored by users with push access (boolean, default: false)tools.github.appfield: GitHub App configuration for token minting; when set, mints an installation access token at workflow start that overridesgithub-token(supportsapp-id,private-key,owner,repositories)These fields are present in
pkg/workflow/tools_types.go(GitHubToolConfig.LockdownandGitHubToolConfig.App) and inpkg/parser/schemas/main_workflow_schema.json, but were previously undocumented in the instructions file.Documentation Commits Reviewed
7ba970aAdd debug logging to 5 pkg files (no user-facing changes)Code Sources Reviewed
pkg/workflow/compiler_types.go—SafeOutputsConfigstruct (all safe-output types verified)pkg/workflow/safe_outputs_config.go— safe-output parsing (all operations verified against docs)pkg/workflow/tools_types.go—GitHubToolConfigstruct (found undocumented fields)pkg/workflow/mcp_github_config.go— GitHub App token minting implementationpkg/parser/schemas/main_workflow_schema.json— JSON Schema (confirmed fields and descriptions)Validation