[instructions] Sync github-agentic-workflows.md with release v0.49.1#17792
Merged
[instructions] Sync github-agentic-workflows.md with release v0.49.1#17792
Conversation
Add documentation for three undocumented frontmatter fields and safe-output capabilities found during code audit against v0.49.1 codebase state: - rate-limit: frontmatter field for per-user rate limiting - inlined-imports: frontmatter field for compile-time import inlining - max-bot-mentions: safe-output global option for bot trigger escaping - Templatable integer fields note (max, expires, max-bot-mentions accept expressions) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
Author
|
✅ Pull request created: #17792 |
pelikhan
approved these changes
Feb 23, 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.49.1
This PR updates the
github-agentic-workflows.mdinstructions file based on code audit against the v0.49.1 release and the post-release commit (789c4c5).Changes Made
rate-limit:field: Added complete documentation for per-user rate limiting configuration (max,window,events,ignored-roles). Previously undocumented despite being fully implemented and referenced in the docs site's rate-limiting-controls.md.inlined-imports:field: Added documentation for compile-time import inlining. Previously undocumented despite being in both the JSON Schema and frontmatter-full.md reference.max-bot-mentions:safe-output option: Added documentation for the global bot trigger reference escaping threshold (default: 10). Previously undocumented despite being in the schema and safe-outputs.md reference.max,expires, andmax-bot-mentionsfields accept GitHub Actions expression strings (e.g.,$\{\{ inputs.max-issues }}), not just literal integers. Clarifies which fields remain literal booleans.Documentation Commits Reviewed
789c4c5Refactor safe outputs prompt: extract all content to template files, wrap in XML, optimize for token usageCode Files Audited
pkg/workflow/compiler_types.go—SafeOutputsConfigstruct andRateLimitConfigpkg/workflow/safe_outputs_config.go— all safe-output parse handlers including newunassign-from-userpkg/parser/schemas/main_workflow_schema.json— full safe-outputs and root-level propertiesdocs/src/content/docs/reference/rate-limiting-controls.md— rate-limit behaviordocs/src/content/docs/reference/safe-outputs.md— max-bot-mentions, templatable fieldsValidation
pkg/workflow/,pkg/parser/schemas/)