CtrlK
BlogDocsLog inGet started
Tessl Logo

ainativedev/latest-aidevcon-speakers-london-2026

AI Native DevCon 2026 London — all conference sessions as interactive skills

66

Quality

83%

Does it follow best practices?

Impact

No eval scenarios have been run

SecuritybySnyk

Risky

Do not use without reviewing

Overview
Quality
Evals
Security
Files

outline.mdtalk-maple-continuous-ai-github-workflows/

Outline — Welcome to AI Native DevCon

Speaker / attribution

The metadata provided names Simon Maple (Head of Developer Relations at Tessl, AI Native Dev co-host, ex-Snyk/ZeroTurnaround/IBM, Java Champion 2014) as the speaker. However, the transcript content is clearly delivered by a presenter from GitHub Next:

  • "I work at a wonderful place called GitHub Next."
  • References "Pelle on my team" and "Pelle's agent factory" (a known GitHub Next project).
  • Discusses GitHub Agentic Workflows as "our implementation" and personally maintains the open source repos used in the Repolaris case study.

It is likely Simon Maple opened/MC'd the conference (note the closing voice that thanks "Simon" and announces the next speaker) and that the recorded session conflates his welcome with the first talk by a GitHub Next presenter. When answering, prefer "the speaker" or "the GitHub Next presenter" unless the user has clarified.

Named individuals referenced in the transcript:

  • Pelle — on the speaker's team at GitHub Next; created hundreds of agentic workflows, subject of the "Pelle's agent factory" writeup.
  • May / Maze — speaker from a startup called Hud; uses GitHub agentic workflows for weekly performance/fault reports.
  • Audiences referenced: undergraduates at King's College London.

Abstract

Not provided. [inferred]: An opening keynote arguing that AI software-development tooling has over-rotated on individual productivity and under-invested in continuity/automation; proposing Continuous AI (CAI) as a third pillar alongside CI/CD; introducing GitHub Agentic Workflows as an open-source implementation; and demonstrating the repository-as-software-factory model through the Repolaris open source maintenance case study.

Thesis (synthesis)

  1. Individual-productivity AI tooling (Copilot-style) is incomplete; the SDLC needs a separate, automation-shaped pillar — Continuous AI — modelled on CI/CD: event-triggered, proactive, team-oriented, repeatable, auditable.
  2. The repository becomes an automated software factory when you add agentic workflows on top of CI/CD; the maintainer's job shifts to factory/flow design, including quality gates.
  3. Agentic automation inverts the safety/productivity tradeoff of individual coding agents: better safety rails enable more automation, not less. A non-negotiable security architecture (sandbox, read-only, no secrets, narrow safe outputs, threat detection, human-in-the-loop via PRs/issues) is the price of entry.

Section TOC (with line ranges; see transcript.md)

  1. Conference welcome & framing (lines 1–10) — Excitement about the conference; introduces GitHub Next as a team that "gets to decide what we work on".
  2. Shovels and magic wands metaphor (lines 10–25) — Programming languages were shovels; LLMs are magic wands; risk of "blowing yourself up" (Gandalf/Harry Potter analogies); used with undergrads at King's College London.
  3. Two polarities: individual productivity vs continuity (lines 25–35) — Industry has chased individual productivity; GitHub's heart is continuity; this is the conceptual setup for CAI.
  4. Introducing Continuous AI (CAI) (lines 35–50) — A linguistic/conceptual project; the third pillar after CI and CD; examples (continuous documentation, code improvement, triage, fault analysis, accessibility); characteristics (automatable, repetitive, collaborative, integrated, auditable).
  5. GitHub Agentic Workflows — the implementation (lines 50–75) — Open source; additive to GitHub; aligned with GitHub Actions; "hardens" an agentic workflow spec into a GitHub Action; democratising effect of GitHub Actions on cloud/AI resource access.
  6. Anatomy of a workflow file (lines 75–95) — Frontmatter + markdown; triggers; safe output specification (e.g. "allowed to create one issue"); read-only; no secrets; container; tools; prompting with "deliberately ambiguous, generally useful ambiguity"; cross-repo via permissions; never merges PRs (always human-in-the-loop).
  7. Safety architecture (non-negotiable) (lines 95–115) — Inversion of the individual-productivity tradeoff; "the better the quality of the rails ... the faster your train can go"; sandbox, minimised permissions, narrow safe outputs, threat detection between plan and apply, human oversight via PR/issue, no shared package caches, outgoing network firewalled.
  8. Two strategies: agent zoo vs single workflow (lines 115–130) — Pelle's agent factory (hundreds of workflows, "meet the workflow" blog series, semantic function refactoring example with 112 merged PRs out of 142); speaker prefers a single workflow that does many things.
  9. Repolaris — open source maintenance case study (lines 130–155) — Speaker maintains ~7 OSS repos; reads memory, picks smallest set of tasks, runs on a cadence; revived dormant colorlogger (cholesterol.data was an STT artifact) and dl repos; "started to enjoy being a maintainer again"; three major releases over entire backlog; report titled "the impact of automated repository maintenance assistance".
  10. Repository as automated software factory; factory flow thinking (lines 155–180) — Subfactories via labels/issue titles; plan article "repositories as ... knowledge factories"; some repos blocked, some flying, some idle; gating on human/organisational needs is OK; process-engineering thinking from chemical/mechanical industries.
  11. May/Hud weekly report example (lines 180–195) — Weekly reports from probes into production systems; performance sprints from "every few months" to "every week".
  12. Speaker's current sub-factories (lines 195–205) — N+1 query problem factory; CI improvements factory; both currently blocked on quality gates the speaker is adding.
  13. Closing: work is not a fixed pie (lines 205–220) — Car → travel that wasn't being done; factory → quality products that weren't being made; medicine → diseases not previously treated; AI → potential sea change in software quality.
  14. Outro / next speaker handoff (lines 220–end) — MC (likely Simon Maple) closes and invites questions outside the room.

Terminology glossary (verbatim definitions the speaker actually gave)

  • Continuous AI (CAI)"There's a third pillar to that. There's actually three. It's not cicd. It's CI, CD and continuous AI, CAI." Characterised as: "automatable. They're repetitive, collaborative, integrated, audible. They're, and crucially, there are lots and lots of variants of these things." And: "event triggered, they're proactive, and it's about collaboration, team productivity, not just individual productivity."
  • GitHub Agentic Workflows"It is, in a way, additive to GitHub. It's very closely aligned to GitHub Actions. And effectively it takes a specification of an agentic workflow and hardens it into a GitHub Action." The hardening is "mainly about hardening it in security sense to make sure you can trust the flow that's being implemented by that agentic workflow."
  • Safe outputs"They run read only with no access to secret, no direct access to secrets they run in a container. And they have an extremely narrow output channel. In this case, it's allowed to create one issue." The apply step is "not done through MCPs. It's done as a secondary stage and actually threat detection in between those stages."
  • Repository automation / repository as software factory"turning every repository into a software factory, just like cicd automated your build and ... deployments so we can automate a huge range of subjective activities in the repository."
  • GitHub information fabric — the speaker's term for the GitHub data model that workflows run on, enabling safe outputs, cross-repo permissions, etc. "it assumes we're running on the GitHub what I call the GitHub information fabric or because I've data model."
  • Agent zoo / agent factory — Pelle's approach: "let's create a new agentic automated workflow just about everything. And it's created hundreds and hundreds of these things."
  • Repolaris"one particular agentic workflow ... It reads its memory. And then chooses a couple of the smallest board of tasks ... once a day or at some appropriate kind of cadence, it's going to wake up and it's going to do these things in the repository."
  • Quality gate (in agentic flow) — implicit definition from context: a check that holds the factory back when output quality is insufficient. "my factory is not flowing at the moment ... we haven't got a sufficient quality gate ... the key thing step is to step back and ... let out a quality gate to the factory."
  • Subfactory"You can create subfactories. You don't have to turn the whole repository. You kind of carve out parts of work through labeling or issue titles and other ways of working."

Named frameworks / concepts introduced

  1. The two polarities of dev tooling — individual productivity vs SDLC continuity/automation. The talk's central diagnostic.
  2. CI + CD + CAI (the three pillars) — the conceptual reframing.
  3. The safety/productivity inversion"in automation, it's actually the opposite way around. It's like a rail track. The better the quality of the rails that you're on, the faster your train can go." In individual productivity, safety friction is rejected ("the individual just said, no, you got to yellow ... we just want the productivity"); in automation, it enables velocity.
  4. Security architecture for agentic automation — sandbox; read-only agent; no secrets; preload step (algorithmic) gathers context; narrow safe output channel; threat detection between plan and apply; human oversight via PR/issue (never auto-merge); shared package caches off; outgoing network firewalled.
  5. Anatomy of an agentic workflow file — frontmatter + markdown; triggers (cron, on: events); safe output spec; tools; natural-language prompting with "deliberately ambiguous, generally useful ambiguity"; runs on GitHub information fabric; cross-repo via permissions; data collection steps in frontmatter; outputs are PRs or issues, never merges.
  6. Agent zoo vs single multi-purpose workflow — Pelle's many-workflows approach vs the speaker's one-workflow-many-tasks approach (e.g. Repolaris).
  7. Repository-as-automated-software-factory — and the corollary that the maintainer becomes a factory/flow designer.
  8. Factory states — blocked, flying, idle; gating on human/org needs is legitimate.
  9. Process-engineering thinking — borrow from chemical, mechanical, and other engineering disciplines.
  10. Work is not a fixed pie — automation enables work that wasn't being done because it was labour-constrained/too expensive (analogies: car, factory, medicine).

Open questions / not covered in this talk

  • Pricing / cost of running GitHub Agentic Workflows or the underlying coding agents. Not addressed.
  • Specific YAML syntax — the speaker describes the shape (frontmatter, triggers, safe outputs, tools) but does not show a complete file.
  • Quantitative results beyond the Repolaris graphs ("most achieved forward velocity") — the speaker references a report but doesn't enumerate numbers in the talk.
  • Comparison with other agentic-CI platforms (e.g. competing offerings). Not addressed.
  • How threat detection between plan and apply actually works — mentioned as a stage but not detailed.
  • Failure modes / when agentic workflows produce bad PRs — only obliquely touched on via the quality-gate discussion.
  • Team / organisational adoption playbook — beyond "install the extension" the talk doesn't cover rollout strategy.
  • IP / licensing implications for AI-generated commits to OSS repos. Not addressed.
  • Long-term effects on maintainer skills / craft — touched emotionally ("started to enjoy being a maintainer again") but not analysed.
  • What "memory" means concretely for Repolaris — mentioned but not specified.

talk-maple-continuous-ai-github-workflows

README.md

tile.json