{"id":6598,"date":"2026-08-23T12:43:16","date_gmt":"2026-08-23T12:43:16","guid":{"rendered":"https:\/\/areeblog.com\/?p=6598"},"modified":"2026-08-23T12:43:16","modified_gmt":"2026-08-23T12:43:16","slug":"cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents","status":"publish","type":"post","link":"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/","title":{"rendered":"Cloudflare Cut Astro&#8217;s Open GitHub Issues by 85% Using a Team of AI Agents"},"content":{"rendered":"<p><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" data-attachment-id=\"6599\" data-permalink=\"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/images-36\/\" data-orig-file=\"https:\/\/areeblog.com\/wp-content\/uploads\/2026\/08\/images-36.jpeg\" data-orig-size=\"700,400\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;,&quot;alt&quot;:&quot;&quot;}\" data-image-title=\"images (36)\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/areeblog.com\/wp-content\/uploads\/2026\/08\/images-36.jpeg\" class=\"aligncenter size-full wp-image-6599\" src=\"https:\/\/areeblog.com\/wp-content\/uploads\/2026\/08\/images-36.jpeg\" alt=\"Cloudflare Cut Astro's Open GitHub Issues by 85% Using a Team of AI Agents\" width=\"700\" height=\"400\" srcset=\"https:\/\/areeblog.com\/wp-content\/uploads\/2026\/08\/images-36.jpeg 700w, https:\/\/areeblog.com\/wp-content\/uploads\/2026\/08\/images-36-300x171.jpeg 300w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/p>\n<p><a href=\"https:\/\/areeblog.com\/cloudflare-unveils-kitesurf-a-browser-built-for-ai-agents\/\">Cloudflare<\/a> and the Astro team have reduced the Astro project&#8217;s unresolved GitHub issue backlog from more than 200 issues to roughly 30 by using multiple artificial intelligence agents inside GitHub Actions, according to a <a href=\"https:\/\/blog.cloudflare.com\/astro-issue-triage\/\">Cloudflare engineering report.<\/a><\/p>\n<p>The system was designed around several specialised agents rather than a single autonomous agent. Separate stages handle issue reproduction, diagnosis, verification and fixing, with each stage producing information that can be used by the next agent in the workflow.<\/p>\n<p>Cloudflare said the reduction represents an approximately 85% decrease in the number of open issues. The figure refers specifically to the project&#8217;s unresolved GitHub issue count and does not mean that artificial intelligence independently fixed 85% of all bugs or that human involvement was removed from the process.<\/p>\n<p>The work began with an agent skill based on the way Astro maintainers investigated issues manually. The skill was first developed and tested locally before being moved into GitHub Actions, allowing the workflow to operate within the project&#8217;s existing development environment.<\/p>\n<p>The first stage attempts to reproduce an issue using the reporter&#8217;s reproduction repository. When the reported behaviour can be reproduced, another stage investigates the codebase, adds instrumentation or logging when needed and attempts to determine the underlying cause.<\/p>\n<p>A separate verification stage then checks whether the reported behaviour is actually unintended. The agent can examine existing tests, documentation, comments and surrounding implementation details before the issue is treated as a confirmed bug.<\/p>\n<p>For issues that reach the fix stage, the workflow turns the reproduction into a failing test and then attempts to implement a solution. Astro&#8217;s repository guidance instructs coding agents to define success criteria and verify their changes, with bug fixes generally following a test-first pattern in which the bug is reproduced, the test is made to pass and the result is verified.<\/p>\n<p>The separation of responsibilities was deliberate. Cloudflare said large language models can develop a tendency to search for a solution even when the reported behaviour may not actually represent a bug. Isolating reproduction, diagnosis, verification and fixing gives each stage a narrower task and prevents one long agent session from making the entire decision.<\/p>\n<p>Information is passed between the stages through a <code>report.md<\/code> file rather than one continuously expanding conversation. This gives each agent a record of what the previous stage found while limiting the amount of context it has to process.<\/p>\n<p>The workflow also uses GitHub issue labels as its state-management system. The open-source <a href=\"https:\/\/github.com\/withastro\/triagebot-action\">triagebot-action<\/a> includes states such as <code>triage: needs triage<\/code>, <code>triage: needs reproduction<\/code>, <code>triage: unable to reproduce<\/code>, <code>triage: unable to fix<\/code>, <code>triage: fix pending<\/code>, <code>triage: fix rejected<\/code>, <code>triage: fix verified<\/code>, <code>triage: not actionable<\/code>, <code>triage: skipped<\/code> and <code>triage: failed<\/code>.<\/p>\n<p>That label-based approach allows the GitHub issue itself to retain the state of the workflow. Some states are terminal, while issues can be reconsidered when new comments provide information that could change the result.<\/p>\n<p>When the system produces a possible fix, the process can include a human verification step. The workflow can create a branch and preview release, post its findings and logs to the issue and provide instructions for the original reporter to test the proposed change. After the reporter confirms that the fix works, the system can proceed to create a pull request.<\/p>\n<p>The current <a href=\"https:\/\/github.com\/withastro\/triagebot-action\/blob\/main\/action.yml\">GitHub Action configuration<\/a> also supports automatic pull-request creation after a fix, giving projects the option to use a confirmation-first workflow or open a pull request immediately after a fix is produced.<\/p>\n<p>The project has been extracted into the standalone <a href=\"https:\/\/github.com\/withastro\/triagebot-action\">withastro\/triagebot-action<\/a> repository. The action provides the general workflow, GitHub integration, model calls, state handling, verification and pull-request operations, while individual projects provide repository-specific instructions and skills.<\/p>\n<p>Those project-specific instructions are a significant part of the system. Astro maintains agent guidance that describes areas of the codebase, development practices, testing requirements and architectural constraints. Its <a href=\"https:\/\/github.com\/withastro\/astro\/blob\/main\/.agents\/skills\/astro-developer\/SKILL.md\">Astro developer skill<\/a> and <a href=\"https:\/\/github.com\/withastro\/astro\/blob\/main\/AGENTS.md\">AGENTS.md guidance<\/a> give coding agents information needed to work within the repository rather than relying only on general model knowledge.<\/p>\n<p>The agents can also execute commands in the GitHub Actions environment, which allows them to build, test and investigate code instead of producing fixes solely from static source-code analysis.<\/p>\n<p>The action supports Anthropic models as well as Cloudflare Workers AI models. Its current configuration lists Claude Opus 4.6 for triage and Claude Sonnet 4.6 for verification, while the project documentation also describes the use of Cloudflare Workers AI models.<\/p>\n<p>Cloudflare said the process exposed weaknesses in Astro&#8217;s own codebase in addition to reducing the issue backlog. One example involved Hot Module Replacement logic. An agent repeatedly modified a particular condition while trying to address related HMR issues, producing changes that appeared useful for the reported problem but caused regressions elsewhere.<\/p>\n<p>The experience showed that the relevant code did not have enough test coverage around the condition. After the team added a descriptive comment explaining the intended behaviour, the agent stopped repeatedly attempting the problematic modification. Cloudflare said the experience highlighted problems involving opaque abstractions, missing documentation and insufficient tests.<\/p>\n<p>The issue-triage project subsequently contributed to the development of <a href=\"https:\/\/github.com\/withastro\/flue\">Flue<\/a>, an open-source agent framework from the Astro team. Flue supports agents, subagents, skills, sandboxes, tools, durable execution, MCP servers and observability, and can be deployed through environments including Node.js, Cloudflare Workers and GitHub Actions.<\/p>\n<p>The broader architecture treats agent work as a sequence of controlled stages rather than one unrestricted process. A GitHub issue enters the workflow, the appropriate agent is selected based on its state, the agent performs its assigned task, results are recorded and the issue moves to another state when the required conditions are met.<\/p>\n<p>The project also raises security considerations because the system processes GitHub issue content while agents can interact with source code and repository credentials. The public <a href=\"https:\/\/github.com\/withastro\/triagebot-action\/actions\">triagebot-action development history<\/a> includes work concerning long-lived tokens and prompt-injection risks associated with issue bodies.<\/p>\n<p>The action&#8217;s documentation distinguishes between read and write credentials and describes using a GitHub App token or personal access token for write operations. These controls are important because issue content is supplied by external users and can become part of the context presented to an automated coding system.<\/p>\n<p>Astro&#8217;s public issue tracker now contains issues carrying triage labels such as <code>triage: needs reproduction<\/code>, <code>triage: fix pending<\/code>, <code>triage: fix verified<\/code>, <code>triage: unable to reproduce<\/code> and <code>triage: unable to fix<\/code>, showing that the workflow is integrated into the project&#8217;s public issue-management process. The <a href=\"https:\/\/github.com\/withastro\/astro\/issues\">Astro GitHub issue tracker<\/a> provides the public record of those states.<\/p>\n<p>Cloudflare&#8217;s reported result is significant because it demonstrates a way to use AI agents for software maintenance without assigning every responsibility to one system. In Astro&#8217;s case, the agents operate within a workflow with defined stages, repository-specific instructions, tests, GitHub state tracking and opportunities for human verification.<\/p>\n<p>The reduction from more than 200 open issues to approximately 30 is therefore best understood as the result of an engineered maintenance workflow rather than a demonstration of an AI system independently resolving most of Astro&#8217;s bugs. The work is now available in open source through the <a href=\"https:\/\/github.com\/withastro\/triagebot-action\">triagebot-action repository<\/a>, while the wider agent architecture has continued through Flue.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Cloudflare and the Astro team have reduced the Astro project&#8217;s unresolved GitHub issue backlog from more than 200 issues to roughly 30 by using multiple artificial intelligence agents inside GitHub Actions, according to a Cloudflare engineering report. The system was designed around several specialised agents rather than a single autonomous agent. Separate stages handle issue [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":6599,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"content-type":"","_monsterinsights_skip_tracking":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[164],"tags":[166],"class_list":["post-6598","post","type-post","status-publish","format-standard","has-post-thumbnail","category-tech-updates","tag-ai"],"share_on_mastodon":{"url":"https:\/\/mastodon.social\/@Areeblog\/117144907990122027","error":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v28.4 (Yoast SEO v28.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Cloudflare Cut Astro&#039;s Open GitHub Issues by 85% Using a Team of AI Agents - Aree Blog<\/title>\n<meta name=\"description\" content=\"Cloudflare and Astro cut GitHub&#039;s open issue backlog by 85% using AI agents for triage, diagnosis, testing and fixes.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Cloudflare Cut Astro&#039;s Open GitHub Issues by 85% Using a Team of AI Agents\" \/>\n<meta property=\"og:description\" content=\"Cloudflare and Astro cut GitHub&#039;s open issue backlog by 85% using AI agents for triage, diagnosis, testing and fixes.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/\" \/>\n<meta property=\"og:site_name\" content=\"Aree Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-23T12:43:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/areeblog.com\/wp-content\/uploads\/2026\/08\/images-36.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"700\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Daniel Chinonso John\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Daniel Chinonso John\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/areeblog.com\\\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/areeblog.com\\\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\\\/\"},\"author\":{\"name\":\"Daniel Chinonso John\",\"@id\":\"https:\\\/\\\/areeblog.com\\\/#\\\/schema\\\/person\\\/d972222c55618fb0f4b4c0c11ff52f63\"},\"headline\":\"Cloudflare Cut Astro&#8217;s Open GitHub Issues by 85% Using a Team of AI Agents\",\"datePublished\":\"2026-08-23T12:43:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/areeblog.com\\\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\\\/\"},\"wordCount\":1141,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/areeblog.com\\\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/areeblog.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/images-36.jpeg\",\"keywords\":[\"AI\"],\"articleSection\":[\"Tech Updates\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/areeblog.com\\\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/areeblog.com\\\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\\\/\",\"url\":\"https:\\\/\\\/areeblog.com\\\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\\\/\",\"name\":\"Cloudflare Cut Astro's Open GitHub Issues by 85% Using a Team of AI Agents - Aree Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/areeblog.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/areeblog.com\\\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/areeblog.com\\\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/areeblog.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/images-36.jpeg\",\"datePublished\":\"2026-08-23T12:43:16+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/areeblog.com\\\/#\\\/schema\\\/person\\\/d972222c55618fb0f4b4c0c11ff52f63\"},\"description\":\"Cloudflare and Astro cut GitHub's open issue backlog by 85% using AI agents for triage, diagnosis, testing and fixes.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/areeblog.com\\\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/areeblog.com\\\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/areeblog.com\\\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\\\/#primaryimage\",\"url\":\"https:\\\/\\\/areeblog.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/images-36.jpeg\",\"contentUrl\":\"https:\\\/\\\/areeblog.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/images-36.jpeg\",\"width\":700,\"height\":400,\"caption\":\"Cloudflare Cut Astro's Open GitHub Issues by 85% Using a Team of AI Agents\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/areeblog.com\\\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/areeblog.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Cloudflare Cut Astro&#8217;s Open GitHub Issues by 85% Using a Team of AI Agents\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/areeblog.com\\\/#website\",\"url\":\"https:\\\/\\\/areeblog.com\\\/\",\"name\":\"Aree Blog\",\"description\":\"Unfiltered Perspectives, Unstoppable Insights\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/areeblog.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/areeblog.com\\\/#\\\/schema\\\/person\\\/d972222c55618fb0f4b4c0c11ff52f63\",\"name\":\"Daniel Chinonso John\",\"description\":\"Daniel Chinonso John is a web designer, penetration tester, and founder of Aree Tech. He writes clear, actionable posts at the intersection of productivity, AI, cybersecurity, and blogging to help readers get things done.\",\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/daniel-john-45183a169\\\/\"],\"url\":\"https:\\\/\\\/areeblog.com\\\/author\\\/danojohn55gmail-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Cloudflare Cut Astro's Open GitHub Issues by 85% Using a Team of AI Agents - Aree Blog","description":"Cloudflare and Astro cut GitHub's open issue backlog by 85% using AI agents for triage, diagnosis, testing and fixes.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/","og_locale":"en_US","og_type":"article","og_title":"Cloudflare Cut Astro's Open GitHub Issues by 85% Using a Team of AI Agents","og_description":"Cloudflare and Astro cut GitHub's open issue backlog by 85% using AI agents for triage, diagnosis, testing and fixes.","og_url":"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/","og_site_name":"Aree Blog","article_published_time":"2026-08-23T12:43:16+00:00","og_image":[{"width":700,"height":400,"url":"https:\/\/areeblog.com\/wp-content\/uploads\/2026\/08\/images-36.jpeg","type":"image\/jpeg"}],"author":"Daniel Chinonso John","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Daniel Chinonso John","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/#article","isPartOf":{"@id":"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/"},"author":{"name":"Daniel Chinonso John","@id":"https:\/\/areeblog.com\/#\/schema\/person\/d972222c55618fb0f4b4c0c11ff52f63"},"headline":"Cloudflare Cut Astro&#8217;s Open GitHub Issues by 85% Using a Team of AI Agents","datePublished":"2026-08-23T12:43:16+00:00","mainEntityOfPage":{"@id":"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/"},"wordCount":1141,"commentCount":0,"image":{"@id":"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/#primaryimage"},"thumbnailUrl":"https:\/\/areeblog.com\/wp-content\/uploads\/2026\/08\/images-36.jpeg","keywords":["AI"],"articleSection":["Tech Updates"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/","url":"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/","name":"Cloudflare Cut Astro's Open GitHub Issues by 85% Using a Team of AI Agents - Aree Blog","isPartOf":{"@id":"https:\/\/areeblog.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/#primaryimage"},"image":{"@id":"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/#primaryimage"},"thumbnailUrl":"https:\/\/areeblog.com\/wp-content\/uploads\/2026\/08\/images-36.jpeg","datePublished":"2026-08-23T12:43:16+00:00","author":{"@id":"https:\/\/areeblog.com\/#\/schema\/person\/d972222c55618fb0f4b4c0c11ff52f63"},"description":"Cloudflare and Astro cut GitHub's open issue backlog by 85% using AI agents for triage, diagnosis, testing and fixes.","breadcrumb":{"@id":"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/#primaryimage","url":"https:\/\/areeblog.com\/wp-content\/uploads\/2026\/08\/images-36.jpeg","contentUrl":"https:\/\/areeblog.com\/wp-content\/uploads\/2026\/08\/images-36.jpeg","width":700,"height":400,"caption":"Cloudflare Cut Astro's Open GitHub Issues by 85% Using a Team of AI Agents"},{"@type":"BreadcrumbList","@id":"https:\/\/areeblog.com\/cloudflare-cut-astros-open-github-issues-by-85-using-a-team-of-ai-agents\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/areeblog.com\/"},{"@type":"ListItem","position":2,"name":"Cloudflare Cut Astro&#8217;s Open GitHub Issues by 85% Using a Team of AI Agents"}]},{"@type":"WebSite","@id":"https:\/\/areeblog.com\/#website","url":"https:\/\/areeblog.com\/","name":"Aree Blog","description":"Unfiltered Perspectives, Unstoppable Insights","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/areeblog.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/areeblog.com\/#\/schema\/person\/d972222c55618fb0f4b4c0c11ff52f63","name":"Daniel Chinonso John","description":"Daniel Chinonso John is a web designer, penetration tester, and founder of Aree Tech. He writes clear, actionable posts at the intersection of productivity, AI, cybersecurity, and blogging to help readers get things done.","sameAs":["https:\/\/www.linkedin.com\/in\/daniel-john-45183a169\/"],"url":"https:\/\/areeblog.com\/author\/danojohn55gmail-com\/"}]}},"jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":6471,"url":"https:\/\/areeblog.com\/cloudflare-unveils-kitesurf-a-browser-built-for-ai-agents\/","url_meta":{"origin":6598,"position":0},"title":"Cloudflare Unveils Kitesurf, A Browser Built for AI Agents","author":"Daniel Chinonso John","date":"August 7, 2026","format":false,"excerpt":"Cloudflare has introduced Kitesurf, a cloud-hosted browser designed for autonomous AI agents and built on its Workers platform. The company says the browser is meant for machine-driven web interaction rather than everyday human browsing, and it is being released in beta through Browser Run, Cloudflare\u2019s browser execution service. In its\u2026","rel":"","context":"In &quot;Tech Updates&quot;","block_context":{"text":"Tech Updates","link":"https:\/\/areeblog.com\/category\/tech-updates\/"},"img":{"alt_text":"Cloudflare unveils Kitesurf, a browser built for AI agents","src":"https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/08\/IMG-20260807-WA0011.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/08\/IMG-20260807-WA0011.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/08\/IMG-20260807-WA0011.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/08\/IMG-20260807-WA0011.jpg?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/08\/IMG-20260807-WA0011.jpg?resize=1050%2C600&ssl=1 3x"},"classes":[]},{"id":6749,"url":"https:\/\/areeblog.com\/cloudflare-and-openai-bring-ai-powered-vulnerability-fixes-to-the-network-edge\/","url_meta":{"origin":6598,"position":1},"title":"Cloudflare and OpenAI Bring AI-Powered Vulnerability Fixes to the Network Edge","author":"Daniel Chinonso John","date":"September 4, 2026","format":false,"excerpt":"Cloudflare is bringing OpenAI\u2019s cybersecurity models into its vulnerability management workflow, allowing selected customers to investigate software vulnerabilities, use production data to assess their exposure and propose security measures while engineers review permanent fixes. The company announced Vulnerability Discovery and Remediation on September 3, 2026. The invitation-only service is being\u2026","rel":"","context":"In &quot;Tech Updates&quot;","block_context":{"text":"Tech Updates","link":"https:\/\/areeblog.com\/category\/tech-updates\/"},"img":{"alt_text":"Cloudflare and OpenAI Bring AI-Powered Vulnerability Fixes to the Network Edge","src":"https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/09\/images-50.jpeg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":6752,"url":"https:\/\/areeblog.com\/ai-agents-are-creating-a-new-software-supply-chain-air-security-warns\/","url_meta":{"origin":6598,"position":2},"title":"AI Agents Are Creating a New Software Supply Chain, AIR Security Warns","author":"Daniel Chinonso John","date":"September 4, 2026","format":false,"excerpt":"AI agents are beginning to rely on a growing ecosystem of skills, plugins, MCP servers, sub-agents and other add-ons, creating a new software supply chain that can be difficult for security teams to track. AIR Security, a cybersecurity company that emerged from stealth this week with $50 million in funding,\u2026","rel":"","context":"In &quot;Tech Updates&quot;","block_context":{"text":"Tech Updates","link":"https:\/\/areeblog.com\/category\/tech-updates\/"},"img":{"alt_text":"AI Agents Are Creating a New Software Supply Chain, AIR Security Warns","src":"https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/09\/IMG-20260904-WA0012.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/09\/IMG-20260904-WA0012.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/09\/IMG-20260904-WA0012.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/09\/IMG-20260904-WA0012.jpg?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/09\/IMG-20260904-WA0012.jpg?resize=1050%2C600&ssl=1 3x"},"classes":[]},{"id":6634,"url":"https:\/\/areeblog.com\/managed-openclaw-hosting-emerges-as-developers-look-for-easier-ways-to-run-ai-agents\/","url_meta":{"origin":6598,"position":3},"title":"Managed OpenClaw Hosting Emerges as Developers Look for Easier Ways to Run AI Agents","author":"Daniel Chinonso John","date":"August 28, 2026","format":false,"excerpt":"Managed hosting services for OpenClaw are emerging as developers, agencies and businesses look for simpler ways to keep the open-source AI agent running without handling all of the underlying server administration themselves. The trend has attracted established infrastructure companies as well as OpenClaw-focused hosting providers. Cloudways, a DigitalOcean company, announced\u2026","rel":"","context":"In &quot;Tech Updates&quot;","block_context":{"text":"Tech Updates","link":"https:\/\/areeblog.com\/category\/tech-updates\/"},"img":{"alt_text":"Managed OpenClaw Hosting Emerges as Developers Look for Easier Ways to Run AI Agents","src":"https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/08\/DTZvZXmPaA8zMJoW733ZVa-1920-80-1.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/08\/DTZvZXmPaA8zMJoW733ZVa-1920-80-1.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/08\/DTZvZXmPaA8zMJoW733ZVa-1920-80-1.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/08\/DTZvZXmPaA8zMJoW733ZVa-1920-80-1.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/08\/DTZvZXmPaA8zMJoW733ZVa-1920-80-1.png?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/08\/DTZvZXmPaA8zMJoW733ZVa-1920-80-1.png?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":6546,"url":"https:\/\/areeblog.com\/blacksmith-raises-45-million-as-ai-coding-increases-pressure-on-testing-infrastructure\/","url_meta":{"origin":6598,"position":4},"title":"Blacksmith Raises $45 Million as AI Coding Increases Pressure on Testing Infrastructure","author":"Daniel Chinonso John","date":"August 16, 2026","format":false,"excerpt":"Blacksmith has raised $45 million in Series B funding as the growing use of AI coding tools increases the volume of software changes that development teams need to build, test and validate. The San Francisco-based infrastructure company announced the funding on August 12, 2026. The round was led by Peak\u2026","rel":"","context":"In &quot;Tech Updates&quot;","block_context":{"text":"Tech Updates","link":"https:\/\/areeblog.com\/category\/tech-updates\/"},"img":{"alt_text":"Blacksmith Raises $45 Million as AI Coding Increases Pressure on Testing Infrastructure","src":"https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/08\/blacksmith-2026-08-13-10-23-10.webp?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/08\/blacksmith-2026-08-13-10-23-10.webp?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/areeblog.com\/wp-content\/uploads\/2026\/08\/blacksmith-2026-08-13-10-23-10.webp?resize=525%2C300&ssl=1 1.5x"},"classes":[]}],"jetpack_featured_media_url":"https:\/\/areeblog.com\/wp-content\/uploads\/2026\/08\/images-36.jpeg","_links":{"self":[{"href":"https:\/\/areeblog.com\/wp-json\/wp\/v2\/posts\/6598","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/areeblog.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/areeblog.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/areeblog.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/areeblog.com\/wp-json\/wp\/v2\/comments?post=6598"}],"version-history":[{"count":1,"href":"https:\/\/areeblog.com\/wp-json\/wp\/v2\/posts\/6598\/revisions"}],"predecessor-version":[{"id":6600,"href":"https:\/\/areeblog.com\/wp-json\/wp\/v2\/posts\/6598\/revisions\/6600"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/areeblog.com\/wp-json\/wp\/v2\/media\/6599"}],"wp:attachment":[{"href":"https:\/\/areeblog.com\/wp-json\/wp\/v2\/media?parent=6598"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/areeblog.com\/wp-json\/wp\/v2\/categories?post=6598"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/areeblog.com\/wp-json\/wp\/v2\/tags?post=6598"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}