What changed
Laravel creator Taylor Otwell said on September 4, 2026 that he disabled GitHub Issues on most Laravel open-source package repositories. When users hit a bug, his requested workflow is to describe it to a coding agent and open a pull request instead of first filing an Issue. Otwell explicitly says an imperfect first patch is acceptable because the pull request can document the failure and give maintainers code to review. He later clarified that the central `laravel/framework` repository still has Issues enabled; examples such as Socialite are among the package repositories using the new approach.
Why it matters
Coding agents are changing more than how code is written: they can alter what maintainers expect from bug reporters. Asking for a patch first can reduce reproduction and triage work for a small maintainer team and turn a bug report into something directly testable. It can also raise the contribution barrier for users who cannot produce a safe patch, and AI-generated changes still require maintainer review. The significant development is the contribution-policy experiment itself, not a claim that issue trackers are obsolete.
The change applies to most packages, not the main framework repository
Otwell clarified that `laravel/framework` still keeps GitHub Issues enabled. The new policy targets package repositories where he says issue volume was relatively low, including examples such as Socialite.
A pull request becomes the bug report
Users are being encouraged to give a coding agent the failure context and open a PR with the attempted fix. Even when the code is incomplete, the diff, tests and PR discussion can give maintainers a more concrete starting point than a prose-only report.
Agent output does not remove maintainer review
The workflow shifts effort toward contributors and coding agents but does not establish that generated patches are trustworthy. Maintainers still need reproduction, tests, security review and architectural judgment before accepting a change.
The broader claim is still an opinion
Otwell has suggested this contribution pattern may become more common as coding agents improve. BTN treats that as his forecast, not evidence that other major open-source projects are following the same policy.