Select the search type
  • Site
  • Web
Search

16 Jun 2026

What Changed in Software Development This Week Because of AI

What Changed in Software Development This Week Because of AI

Author: Rod Claar  /  Categories: Free Articles,   / 

Story 01

Anthropic Releases Claude Fable 5 — the Most Powerful AI Coding Model Available to the Public

On June 9, 2026, Anthropic launched Claude Fable 5, calling it the first publicly available model from its new "Mythos" class — a tier that sits above the Opus line in raw capability. Anthropic says Fable 5 is state-of-the-art on nearly all tested benchmarks, with the biggest gains showing up on long, complex tasks.

The software engineering numbers are striking. Fable 5 scored 80.3% on SWE-Bench Pro, a benchmark that tests whether a model can fix real software engineering problems end to end. For comparison, the previous Claude Opus 4.8 scored 69.2%, GPT-5.5 scored 58.6%, and Gemini 3.1 Pro scored 54.2%. Fable 5 also topped Cognition's FrontierCode evaluation, which tests not just whether the task is done, but whether the resulting code meets production quality standards.

Stripe, an early tester, gave Anthropic a concrete real-world example. Stripe used Fable 5 to complete a migration across a 50-million-line Ruby codebase in a single day. Stripe said the same job would have taken a full engineering team more than two months by hand. Anthropic described the result as Fable 5 having "compressed months of engineering into days."

Fable 5 can also run for days at a time inside an agentic harness like Claude Code, planning its own approach, checking its progress, and refining its output as it goes. Anthropic notes the model also works with 1 million tokens of context, which means it can hold large portions of a real codebase in mind while it works.

One important note: access was suspended on June 12 due to a technical issue. Anthropic announced the suspension and said it is working to restore access. The model remains available through the Claude API, Amazon Bedrock, and GitHub Copilot. Pricing is set at $10 per million input tokens and $50 per million output tokens.

📊
80.3%
Claude Fable 5 score on SWE-Bench Pro — roughly 11 points ahead of the next best frontier model (Source: Anthropic, June 9, 2026)

Scrum Team Signal

If your backlog has migrations or large refactors sitting in "someday" column, this changes the math. The engineering bottleneck is shifting from writing the code to reviewing what the AI produced. That means your Definition of Done should now include a clear verification step for AI-generated changes, and your Sprint Planning should account for review time, not just generation time. Consider running a single deferred migration as a spike this Sprint to see how your team's CI pipeline handles AI-generated diffs.

Source: Anthropic — Claude Fable 5 and Claude Mythos 5 (June 9, 2026)

Story 02

GitHub Agentic Workflows Moves to Public Preview — Write Automation in Plain English, Not YAML

On June 11, 2026, GitHub announced that GitHub Agentic Workflows has moved from technical preview to public preview. The feature lets development teams automate reasoning-based tasks — things like issue triage, CI failure analysis, and documentation updates — by writing instructions in plain Markdown rather than YAML.

Here is how it works. A developer writes a workflow description in a Markdown file and places it in the repository. GitHub Agentic Workflows compiles that description into a standard GitHub Actions YAML file. The compiled workflow then runs inside GitHub Actions using the team's existing runner groups and policy settings. Teams can use GitHub Copilot, Claude, Gemini, or OpenAI Codex as the agent that executes the logic.

Security is built into the design from the start. Agents run with read-only permissions by default. They can only write back to GitHub through a declared "safe outputs" list that the team specifies in the workflow file. Each agent also runs inside a sandboxed container behind what GitHub calls the Agent Workflow Firewall. All proposed changes are scanned by a dedicated threat detection job before they are applied.

Marks & Spencer's CTO James Hoare described the impact in GitHub's announcement: "Our developers were losing hours every sprint to repetitive work such as triaging issues, remediating vulnerabilities, maintaining dependencies, and reviewing routine changes. With GitHub Agentic Workflows, we've built a catalogue of reusable workflows spanning security, quality, and delivery that our teams can adopt across any repository. What once required hours of engineering effort can now be completed autonomously in minutes."

GitHub's open-source agentics repository already contains more than 50 prebuilt workflows covering triage, CI diagnosis, compliance monitoring, and more.

⚙️
50+
Prebuilt agentic workflows available in GitHub's open-source agentics repository, covering triage, CI failure analysis, compliance, and documentation (Source: GitHub, June 11, 2026)

Scrum Team Signal

Issue triage and CI failure investigation are two of the most common interruptions during a Sprint. Both are now candidates for automation using GitHub Agentic Workflows. A practical first step: add the prebuilt issue triage workflow to your repository this Sprint and let it run for two weeks before evaluating whether the labels and routing match what your team would have done by hand. Track the time saved and bring it to your next Retrospective as a data point.

Source: GitHub Changelog — GitHub Agentic Workflows in Public Preview (June 11, 2026)

Story 03

GitHub Copilot Code Review Gets Deeper Controls — and Drops the Character Limit on Custom Instructions

On June 12, 2026, GitHub released several new controls for Copilot code review, the feature that uses an agentic AI to review pull requests inside GitHub Actions. Three changes stand out for teams using Copilot at the organization level.

First, runner configuration can now be set at the organization level. This means an administrator can pick one runner type — standard GitHub-hosted, self-hosted, or a larger runner — and that choice applies automatically to every repository in the organization. Before this change, each repository had to be configured individually. Teams can also lock the organization-level setting so individual repositories cannot override it.

Second, Copilot code review now respects content exclusion settings. Repository administrators can tell Copilot to skip specific files or directories during review using path-based rules. This addresses a common need for teams that have files containing sensitive data, generated code, or third-party code that should not be analyzed by an external model.

Third, the 4,000-character limit on custom instructions files has been removed. Teams write their coding standards and review preferences in a copilot-instructions.md file in the .github directory. Previously, Copilot stopped reading that file after 4,000 characters. That ceiling is now gone, which means teams can write more complete and detailed instructions without having to abbreviate their standards.

📝
0
Character limit on Copilot custom instruction files — the previous 4,000-character ceiling has been removed entirely (Source: GitHub Changelog, June 12, 2026)

Scrum Team Signal

The removal of the character limit is the most underrated change here. Your copilot-instructions.md file is where you encode your team's Definition of Done into the AI reviewer. If your file was previously cut short, now is the time to expand it. Add your coding standards, your naming conventions, your test coverage requirements, and any architecture rules the team has agreed on. An AI reviewer that knows your standards is more useful than one working from generic rules. Plan a short working session in your next Sprint to review and expand the file as a team.

Source: GitHub Changelog — Copilot Code Review: New Configurations and Controls (June 12, 2026)

Story 04

Apple's WWDC 2026 Gives iOS Developers a Single API to Swap AI Models Without Rewriting Their Code

Apple held WWDC 2026 from June 8 through June 12. The biggest developer-side announcement was a new LanguageModel protocol built into Apple's Foundation Models framework. The protocol lets iOS, macOS, and iPadOS apps switch between different AI models — Apple's own on-device model, Google's Gemini, or Anthropic's Claude — by updating a Swift Package Manager dependency. No changes are needed in the application's session logic or other code.

Google confirmed that cloud-hosted Gemini models plug into the protocol through the Firebase Apple SDK. Anthropic published a Swift package implementing the same protocol. This means an app can prototype using Apple's on-device Neural Engine model and then route heavier queries to a cloud model without the developer changing anything in their app logic.

The framework also received free Private Cloud Compute access for developers with fewer than two million first-time App Store downloads. That removes infrastructure cost as a barrier for smaller development teams who want to add AI-powered features to their apps. Apple also announced that the Foundation Models framework will go open source later this summer.

Xcode 27, also announced at WWDC 2026, ships a dual-engine coding system. It uses a local Neural Engine model for real-time Swift code suggestions and routes heavier analysis tasks to Claude, Gemini, or OpenAI's agents through a cloud layer. This keeps the fast suggestions local while offloading deeper code analysis to frontier models.

Apple also confirmed that SiriKit, the older framework for building Siri integrations, will be deprecated over a two-to-three-year period as teams migrate to the new Foundation Models architecture.

📱
Free
Private Cloud Compute access for Apple developers with fewer than 2 million first-time App Store downloads — removing infrastructure cost as a barrier for smaller teams (Source: Apple WWDC 2026, June 8–9, 2026)

Scrum Team Signal

If your team ships on Apple platforms, the LanguageModel protocol is a planning item for your next few Sprints. The ability to swap AI providers through a package dependency — without touching application logic — means you can experiment with different models during development and choose the best one for each feature without paying a rework cost. Update your team's technical standards to address how you will select and lock the AI provider for production builds. Teams building for the App Store for the first time should also explore the free Private Cloud Compute tier before writing any infrastructure budget.

Sources: MacRumors — Apple WWDC 2026 Platforms State of the Union (June 9, 2026); TechTimes — WWDC 2026 Developer Tools (June 9, 2026)

Story 05

GitHub Copilot Code Review Now Configures Runners at the Organization Level — One Setting Covers Every Repository

GitHub also made a structural change to how Copilot code review fits into enterprise environments. Starting June 12, 2026, organization administrators can set the runner type for Copilot code review once at the organization level, and that setting applies automatically across all repositories. Administrators can also lock the setting so individual repository owners cannot change it.

This matters for larger engineering teams because Copilot code review now runs on an agentic architecture powered by GitHub Actions. That architecture gives Copilot the ability to analyze a pull request across multiple files, hold context across the review, and produce more thorough feedback than a single-pass model. The runner it uses determines how much compute it has available and where that compute runs.

Teams that run their own self-hosted runners — often required when code must stay on-premises for compliance or security reasons — can now point Copilot code review at those runners without configuring each repository individually. Teams on GitHub Enterprise Cloud can also point the review agent at large runners for heavier repositories without a per-repo setup step.

The same runner configuration applies to both Copilot code review and the Copilot cloud agent when both features are enabled. That means one setting governs multiple AI features, reducing administrative overhead for teams managing many repositories.

🏢
1 setting
Organization-level runner configuration now covers all repositories for both Copilot code review and the Copilot cloud agent — no per-repo setup required (Source: GitHub Changelog, June 12, 2026)

Scrum Team Signal

This change is most valuable for teams in regulated industries where code must run on specific infrastructure. If your organization requires on-premises runners for compliance, you can now configure Copilot code review to use those runners once and stop thinking about it at the repository level. For Scrum Masters working with multiple teams sharing a GitHub organization, this is an opportunity to standardize the AI review environment across all of those teams in a single administrative step rather than asking each team to configure it separately.

Source: GitHub Changelog — Copilot Code Review: New Configurations and Controls (June 12, 2026)

Coming Next Week

Claude Fable 5 access was suspended on June 12, just three days after launch. Anthropic cited an unspecified technical issue and said it is working to restore access. Next week we will look at what restored access looks like in practice, what happened with Claude Mythos 5's deployment through Project Glasswing, and whether any other frontier labs made significant software development announcements in the days that followed.

RC

Rod Claar

Rod Claar has spent more than two decades teaching Scrum, Agile, Test Driven Development, and software design patterns. He now focuses on AI's practical impact on software teams. He publishes this newsletter weekly at AgileAIDev.com.

Print

Number of views (4271)      Comments (0)

Rod Claar Rod Claar

Other posts by Rod Claar
Contact author
Comments are only visible to subscribers.

Contact author

x

Certified Training

Become a Certified ScrumMaster

Master Agile leadership, transform your team dynamics, and earn your CSM® certification in this intensive 2-day virtual workshop. See new half-day options!

Who This Course Is For

This interactive workshop is designed for professionals ready to embrace Agile methodologies and lead high-performing teams. Whether you're transitioning into a Scrum Master role, seeking to enhance your team's collaboration, or looking to bring Agile practices to your organization, this certification workshop provides the foundational knowledge and practical skills you need to succeed.

Ideal for: Project Managers, Team Leads, Product Owners, Developers, Testers, Business Analysts, and anyone committed to improving team effectiveness through Scrum.

What You'll Achieve

  • Master Scrum Framework Fundamentals: Gain comprehensive understanding of Scrum roles, events, and artifacts, learning how each component contributes to team success and value delivery.
  • Facilitate Effective Team Collaboration: Develop practical skills to guide teams through impediments, foster self-organization, and create an environment where continuous improvement thrives.
  • Apply Agile Principles in Real-World Scenarios: Learn to translate theory into practice through hands-on exercises, case studies, and interactive simulations that mirror actual workplace challenges.
  • Earn Your Certified ScrumMaster® Credential: Successfully complete the course and receive eligibility to take the CSM exam, gaining a globally recognized certification that validates your Scrum expertise.
  • Build Your Agile Toolkit: Leave with actionable strategies, templates, and techniques you can immediately implement to guide your team toward higher performance and more predictable delivery.
Investment
$399
Includes CSM exam fee & 2-year Scrum Alliance membership
Format
Live Virtual
Interactive workshop with real-time instruction and collaboration
Time
9:00 AM - 5:00 PM PT
Duration
16 Contact Hours

Certified ScrumMaster Workshop Curriculum

Total Duration: 2 Days (16 hours) | 9:00 AM - 5:00 PM Pacific Time

  • The rationale for adopting Scrum
  • Overview of Scrum fundamentals and framework
  • Comparison with other methodologies
  • Detailed exploration of the ScrumMaster role
  • Understanding the Product Owner's duties
  • The dynamics and responsibilities of the Scrum Team
  • Scrum process basics
  • Deep dive into Scrum ceremonies:
    • Sprint Planning
    • Daily Standup
    • Sprint Review
    • Sprint Retrospective
  • Techniques for creating a project and product vision
  • Transition from high-level requirements to user stories and tasks
  • Prioritization and release planning
  • Strategies for getting started with Scrum
  • Common challenges and solutions in Scrum adoption
  • Scaling Scrum across multiple teams
  • Large Scrum simulation exercise
  • Practicing roles within a Scrum team
  • Conducting a mock project to apply learned concepts
  • Continuous improvement methods in Scrum
  • Identifying and resolving impediments
  • Role of QA within the Scrum framework
  • Review of key concepts
  • Exam preparation guidance
  • Open Q&A session

Note: Times are approximate and include breaks. The interactive nature of the workshop means actual timing may vary based on participant engagement and discussion.

PDUs Earned: 14 Professional Development Units upon completion

Frequently Asked Questions

Cancellation & Refund Policy

Full Refunds: Available up until 15 business days before the scheduled event date.

Within 15 Days: Cancellations made within 15 business days of the event will be credited toward future events. However, no refunds will be issued.

Transfer Fee: Rescheduling course attendance within 3 full business days or less will be subject to a transfer fee of $100.00.

No Show: No refunds or credits will be available for participants who fail to attend both days of the course.

Substitutions: Attendee substitutions for the same course will be accepted at any time prior to commencement of the course.

To submit a refund or transfer request, please contact us at registrations@effectiveagiledev.com or toll free at (888) 294-1865 prior to the deadline.

We may cancel courses for low attendance up to 2 weeks prior to the start date. Should your course be cancelled, you will be offered your choice of a discount on the next appropriate instance of the course or a full refund.

Important: Do not confirm travel to the class until you are certain that the class has been confirmed.

We offer flexible payment options:

  • Half Now, Half Later: Pay 50% now and the remainder before class starts
  • Full Payment: Pay the complete amount at registration
  • Team/Organization Purchase Orders: Available for groups of 3 or more

Select your preferred payment option during registration.

Prerequisites & Requirements

Prior to attending, participants should ideally have:

  • Basic Understanding of Agile: Some background in Agile methodologies, either through previous courses (such as Intro to Agile Methods) or through direct experience working in Agile environments.
  • Team Experience: Experience working on or managing development teams, though this is not strictly required.
  • Open Mind: Willingness to learn new approaches to project management and team collaboration.

Note: Whether you are a Scrum novice or someone looking to sharpen your skills, this program will enhance your understanding of how to implement Scrum successfully.

For our virtual training, you'll need:

  • Stable Internet Connection: High-speed internet for video conferencing
  • Computer with Webcam: Desktop or laptop with working camera and microphone
  • Video Conferencing Software: Zoom or other platform (details provided upon registration)
  • Quiet Environment: Space where you can participate actively without major distractions
  • Second Monitor (Recommended): Helpful for viewing materials while participating in activities

Detailed technical setup instructions will be sent to you one week before the class.

Yes, full class attendance is required for certification.

The course is designed as an integrated 2-day experience where concepts build upon each other. Both days are necessary to:

  • Complete all required learning objectives
  • Participate in hands-on Scrum simulations
  • Qualify for your Scrum Alliance Certified ScrumMaster (CSM) certification attempt
  • Earn the full 14 Professional Development Units (PDUs)

Class times are 9:00 AM to 5:00 PM Pacific Time both days.

Is This Course Right For You?

The Certified ScrumMaster Class is perfectly suited for those operating within or managing development teams involved in complex project or product development. The class is ideal for:

  • Development Team Members who are actively involved in software development and want to adopt agile practices
  • Managers and Directors who oversee teams and need to approach their roles with a more agile and Scrum-oriented mindset
  • Project Managers (PMs) looking to transition or adapt to more agile frameworks in managing projects
  • Testers and Analysts who work directly with product development and need Scrum knowledge to improve their workflows
  • C-level Executives responsible for steering the company's agile transformation efforts who want to support their teams with a thorough understanding of Scrum practices

This workshop may not be the best fit if you are:

  • Looking for Advanced Scrum Training: If you're already a practicing ScrumMaster with years of experience, you may benefit more from our Advanced Certified ScrumMaster (A-CSM) course or specialized Scrum coaching.
  • Seeking Product Owner Specific Training: While this course covers Product Owner basics, those focused on the Product Owner role should consider our Certified Scrum Product Owner (CSPO) workshop instead.
  • Not Working in Software/Product Development: While Scrum principles can apply broadly, this course focuses heavily on software and product development contexts. Those in other industries may find the examples less relevant.
  • Unable to Commit to Both Days: The certification requires full attendance of both days. If you cannot commit to the complete schedule, this may not be the right time to enroll.
  • Looking Only for Certification Without Learning: This is an interactive, hands-on learning experience. If you're only interested in getting the credential without engaging in the learning process, this isn't the course for you.
  • Seeking Technical Developer Training: For deep dives into technical practices like Test-Driven Development (TDD), design patterns, or AI-enhanced coding, consider our Effective Scrum Developer or AI Training courses instead.

Not sure if this is right for you? Contact us at info@effectiveagiledev.com or call (425) 738-0586 to discuss which course best fits your needs.

You're welcome! Whether you are a Scrum novice or someone looking to sharpen your skills, this program will enhance your understanding.

The course is designed to accommodate both beginners and those with some experience. We start with fundamentals and build up to more complex implementation strategies. The hands-on simulations and exercises help newcomers quickly understand Scrum concepts through direct experience.

However, having a basic understanding of software development or project management will help you get the most out of the course.

Additional Information

Upon successful completion of the course, you will:

  • Receive Access to CSM Exam: You'll get access to the Scrum Alliance Certified ScrumMaster examination (online and open book)
  • Exam Support Guarantee: Your instructor, Rod Claar CST, will guarantee to work with you until you pass the test!
  • Earn 14 PDUs: Professional Development Units upon completion
  • Gain Certification: Upon passing the exam, you'll receive your Scrum Alliance Certified ScrumMaster (CSM) certification
  • Access Recorded Sessions: Review materials anytime through our session recordings
  • Optional Gold Plan Coaching: Up to 8 hours of personalized coaching within 60 days (if selected)

Yes! All classes have team discounts available.

For organizations with 3 or more employees attending, we offer:

  • Special team pricing
  • Customized Private Team Sessions
  • Flexible scheduling options
  • Tailored content to address your organization's specific challenges

Contact us at info@effectiveagiledev.com for team pricing and private session options.

Note: Effective Agile Development reserves the right to limit the number of discounted seats available in any course. No discounts may be combined.

Yes, with our Free Refresher Course benefit!

As an added value to course participants, Effective Agile Development reserves two seats at each public course for individuals who have already successfully completed the same course but would like to take it a second time at no cost.

This allows you to:

  • Brush up on your learning
  • Attend a session led by a different trainer
  • Reinforce concepts before implementing Scrum in your organization

Requirements: The offer is provided on a first-come, first-served basis and must be used for the same course as the original within six months following the original course. Contact us early to reserve your seat.

Still Have Questions?

We're here to help! Contact us for personalized answers to your questions.

Why Choose Our Training

Our Approach

Hands-On, Interactive Learning

Experience comprehensive learning through large-scale Scrum simulations, role-playing exercises, and mock projects. You won't just learn about Scrum—you'll practice it in real-time with guidance from an experienced Certified Scrum Trainer.

Flexible Virtual Training

Attend from anywhere with interactive virtual collaboration tools, real-time engagement with peers and instructors, and access to recorded sessions. Save on travel costs while receiving high-quality, personalized instruction that fits your busy schedule.

Expert Instruction with Guaranteed Success

Learn from Rod Claar, CST (Certified Scrum Trainer), who brings decades of real-world experience in software development, Scrum implementation, and agile transformation. Rod personally guarantees to work with you until you pass your exam—demonstrating an unwavering commitment to your success.

Beyond the Basics

Go deeper than theory with practical implementation strategies, common challenge solutions, process improvement techniques, and guidance on scaling Scrum across multiple teams. Plus, optional Gold Plan coaching provides up to 8 hours of personalized support in your first 60 days.

Certified Scrum Trainer Badge

Scrum Alliance Certified Scrum Trainer (CST)

20+
Years Teaching Scrum
14
PDUs Earned
5800+
Students Certified

What Our Students Say

"Rod's workshop transformed how our team approaches development. The hands-on simulation made everything click—we went from confused to confident in just two days. His real-world experience and practical examples made all the difference."

Sarah M. Development Team Lead, Tech Solutions Inc.

"Best training investment I've made in my career. Rod doesn't just teach Scrum theory—he shows you how to implement it successfully with your actual team challenges. The virtual format worked perfectly, and I appreciated the recorded sessions for review."

Michael T. Project Manager, Financial Services

"I was skeptical about virtual training, but Rod's interactive approach kept everyone engaged throughout. The large-scale simulation exercise was incredible—we actually felt what it's like to work in a Scrum team. Passed my CSM exam on the first try!"

Jennifer K. Software Developer, Healthcare Technology

Proven Track Record

Used in real workshops with development teams at Fortune 500 companies

Successfully trained teams across multiple industries: software, healthcare, finance, and manufacturing

High first-time pass rate on Scrum Alliance CSM certification exam

Personalized guarantee: Your instructor will work with you until you pass the exam

🎯 New Flexible Payment Options

Half Now, Half Later: Split your payment—pay half now and the remainder before class starts
Gold Plan: Includes up to 8 hours of personalized coaching with Rod in your first 60 days after class
Team Discounts: Special pricing for organizations with 3+ attendees. Contact us for private team sessions!

Start Your ScrumMaster Journey Today

Transform your approach to Agile leadership. Reserve your spot in this comprehensive two-day certification workshop and join a community committed to continuous improvement.

Have questions about the workshop or certification process?

Contact Us

Virtual Format • Pacific Time Zone
February 10-11, 2026 • Full certification included