Loading…
2026 September 10-11 | Tokyo, Japan
View More Details & Registration

IMPORTANT NOTE: Timing of sessions and room locations are subject to change.
Venue: Hall C clear filter
arrow_back View All Dates
Thursday, September 10
 

09:00 JST

Keynote: Welcome - Angie Jones, Vice President of Developer Experience, The Agentic AI Foundation
Thursday September 10, 2026 09:00 - 09:10 JST

Speakers
avatar for Angie Jones

Angie Jones

VP, DX, Agentic AI Foundation
Angie Jones is the VP of Developer Experience at the Agentic AI Foundation where she guides how agentic systems are designed, implemented, and adopted across the global developer ecosystem.

Angie is an international keynote speaker who shares her wealth of knowledge at software... Read More →
Thursday September 10, 2026 09:00 - 09:10 JST
Hall C

09:10 JST

Keynote: David Soria Parra, Member of Technical Staff, Anthropic
Thursday September 10, 2026 09:10 - 09:20 JST

Speakers
avatar for David Soria Parra

David Soria Parra

Member of Technical Staff, Anthropic
I am the co-creator of the Model Context Protocol (Modelcontextprotocol.io) and a Member of Technical Staff at Anthropic working on a wide variety of things. Formerly a senior manager at Facebook working on static analysis and simulation based testing. I was responsible of integrating... Read More →
Thursday September 10, 2026 09:10 - 09:20 JST
Hall C

09:20 JST

Keynote: Lin Sun, Head of Open Source, Solo.io
Thursday September 10, 2026 09:20 - 09:30 JST

Speakers
avatar for Lin Sun

Lin Sun

Head of Open Source, agentgateway contributor, kagent, Istio and kgateway maintainer, Solo.io
Lin is the Head of Open Source at Solo.io, co-chair of KubeCon + CloudNatibeCon 2026. She actively contributes to AAIF and CNCF projects. She is the author of “Sidecar-less Istio Explained” and “AI Agents in Kubernetes”, and holds more than 200 patents.
Thursday September 10, 2026 09:20 - 09:30 JST
Hall C

09:35 JST

Keynote: Kaz Sato, Staff Developer Advocate, Cloud AI, Google
Thursday September 10, 2026 09:35 - 09:45 JST

Speakers
avatar for Kaz Sato

Kaz Sato

Staff Developer Advocate, Cloud AI, Google
Kaz Sato, a Staff Developer Advocate from the Cloud AI team, has authored over 25 ML/AI blogs and demos for Google Cloud's official blog. His work has garnered attention from Jeff Dean and Eric Schmidt, and been featured in Newsweek and The New Yorker. He's a regular speaker at Google... Read More →
Thursday September 10, 2026 09:35 - 09:45 JST
Hall C

10:40 JST

Let AGENTS.md Write Itself: Self-Improving Coding Agents, No RL Required! - Rudraksh Karpe, Simplismart; Satyam Soni, NitroStack
Thursday September 10, 2026 10:40 - 11:05 JST
AGENTS.md is the file that tells any coding agent how to work in your repo. One open AAIF standard, read by Codex, Cursor, Claude Code, and goose. But it is static. Written once, by hand. It drifts as the code moves. Auto-generate it and agents often get worse, following bloated rules and chasing dead paths. The agent fails the same way every run. Nothing feeds those failures back. The text that drives it never learns.

This talk show how to fix that with a layer on top of AGENTS.md that tunes it from the agent's own runs.The loop is small. Run a task. Reflect on the trajectory in plain language. Find what broke. Propose one targeted edit. Validate it against an eval harness before it sticks. Reflect, mutate, validate, select. Borrowed from reflective optimizers like GEPA. No RL. No fine-tuning. Just an agent learning from its mistakes.

The layer is tool-agnostic because AGENTS.md is, and it extends to MCP tool selection. We measure what moved, task success, edits per gain, token cost, regressions on a held-out set. We beat hand-written and auto-generated files. You leave with a layer you drop onto the AGENTS.md you already have.
Speakers
avatar for Satyam Soni

Satyam Soni

Developer Advocate, NitroStack
Satyam is a Software Developer working at the intersection of AI and cloud-native technologies. He is a former member of the Kubernetes release team, serving as Release Notes Lead for v1.32, with experience in release engineering and a Google Summer of Code contributor at openSUS... Read More →
avatar for Rudraksh Karpe

Rudraksh Karpe

Forward Deployed Engineer, Simplismart
Rudraksh is an FDE and AI Inference Engineer at Simplismart, where he builds high-performance AI inference systems. He previously worked as an AI Engineer at ZS Associates.

He is a two-time Google Summer of Code participant with openSUSE and a GSoC 2026 mentor. He has spoken internationally at KubeCon EU, PyTorch Conference EU, OpenSearch Korea, PyCon US, PyCon JP, openSUSE Conference Germany, and openSUSE Asia Summit Tokyo, covering GenAI, open source... Read More →
Thursday September 10, 2026 10:40 - 11:05 JST
Hall C

11:15 JST

Carbon-Aware Agentic Engineering: Reducing Unnecessary Computation in AI Agent Workflows - Kouki Hama, NTT, Inc
Thursday September 10, 2026 11:15 - 11:40 JST
From a green software perspective, waste in agentic AI comes not only from model choice, but also from workflow design. Agent workflows combine planning, retrieval, retries, memory, tools, and model calls. Poor controls can lead to large models for simple tasks, long histories, repeated retrieval, or needless tool calls, increasing compute, cost, and latency.

This talk presents a design-review approach for reducing unnecessary computation in agent workflows. As a case study, it uses Lean Agentic AI (https://github.com/navveenb/lean-agentic-ai) as an open-source workflow example. For each workflow step, it asks: Is an LLM needed? Is the model appropriate? Is context bounded? Could code, rules, or a smaller model replace a large-model call?

The goal is not precise carbon accounting. Instead, it identifies avoidable inference, oversized context, and needless tool calls before estimating CO2 emissions.

Takeaways:
* See how agent workflow design affects compute, cost, and latency.
* Understand how reducing unnecessary computation supports green software goals.
* Ask simple review questions to reduce unnecessary LLM calls, retrieval, memory, and tool use.
Speakers
avatar for Kouki Hama

Kouki Hama

Senior Research Engineer, NTT, Inc
Kouki Hama is a Senior Research Engineer at NTT, Inc., Computer & Data Science Laboratories. His research focuses on green software engineering and software supply chain assurance, including CI/CD, GreenOps, FinOps, Software Carbon Intensity, and SBOM-based governance. As personal... Read More →
Thursday September 10, 2026 11:15 - 11:40 JST
Hall C

11:50 JST

Letting an Agent Upgrade Production Kubernetes — Without Getting Paged at 3 AM - Sanskar Agrawalla & Abhijeet Chaudhuri, Quartic.ai
Thursday September 10, 2026 11:50 - 12:15 JST
Kubernetes upgrades are high-stakes, deprecation-laden, and still mostly manual — most "AI for K8s upgrades" projects stop at a feasibility check. We went further: we built an agentic system that planned and executed a real cluster upgrade end to end, and in this talk we walk through exactly how it went, with the steps, evidence, and screenshots from our actual runs.

We'll break down the architecture we shipped — a planner → executor → verifier loop, deprecated-API and CRD/Helm compatibility analysis run before anything touched the cluster, a human-in-the-loop approval gate for irreversible steps, and health-gated automatic rollback. Using captured logs and screenshots, we'll show a real multi-node upgrade as it happened, the failure cases that nearly broke it (version skew, stuck drains, webhook deadlocks), and the decisions we deliberately refused to let the model make.

You leave with an open-source blueprint for autonomous infra agents with production-grade guardrails — plus real numbers on success rate, time saved, preflight catches, and rollbacks triggered.
Speakers
avatar for Sanskar Agrawalla

Sanskar Agrawalla

Site Reliability Engineer, Quartic.ai
👋 Site Reliability Engineer at Quartic.ai | Tech Enthusiast

Hey there! I'm a Site Reliability Engineer with a passion for building impactful solutions. Currently, I'm working on cutting-edge projects that drive innovation. From enhancing monitoring processes to optimizing infrastructure, I'm all about crafting efficient and secure systems... Read More →
avatar for Abhijeet Chaudhuri

Abhijeet Chaudhuri

Site Reliability Engineer, Quartic.ai
Site Reliability Engineer who runs a production distributed system on Kubernetes — Kafka, Spark, Airflow, and a fleet of edge devices — where long-running operations are a daily reality, having experience in implementing scalable cloud-native solutions across Kubernetes, AWS... Read More →
Thursday September 10, 2026 11:50 - 12:15 JST
Hall C

13:30 JST

Designing Trust Boundaries for Agent-to-Agent Systems: Lessons Learned from a Technical PoC - Ryuji Iijima, Softbank Corp.
Thursday September 10, 2026 13:30 - 13:55 JST
As AI agents increasingly invoke tools, access enterprise data, and collaborate, a new architectural challenge emerges: Where should trust boundaries be defined, and where should governance and security controls be enforced?

To explore this, we conducted a technical PoC introducing a shared control layer across agent-to-agent communications and tool execution pathways. Rather than presenting an ideal architecture, this session focuses on practical challenges and lessons learned during implementation.

Key topics include:
- Defining the "Agent": How to define what constitutes an agent in an ecosystem and where to establish trust boundaries for validation, monitoring, and control
- Architectural Insights: Redesign considerations and insights that emerged through prototype development and PoC activities.
- Performance Trade-offs: Balancing stronger security and governance with the low-latency requirements needed for real-world deployment.

We will share practical takeaways on designing trust boundaries and navigating trade-offs among security, governance, and operational performance.
Speakers
avatar for Ryuji Iijima

Ryuji Iijima

Engineer, AgentSecOps Platform Initiative, SoftBank Corp.
An engineer with experience in mobile authentication, enterprise communications, data integration platforms, and AI security. He is interested in how trust can be established, maintained, and governed across complex distributed systems. His current work focuses on AI agent ecosystems... Read More →
Thursday September 10, 2026 13:30 - 13:55 JST
Hall C

14:05 JST

The Agent Builder Loop from Daily Work to OSS - Minoru Onda, KDDI Agile Development Center Corporation
Thursday September 10, 2026 14:05 - 14:30 JST
AI agent discussions often focus on coding or MCP. My starting point is different. I use coding agents such as Claude Code and Codex as assistants for work beyond development. Instead of automating isolated tasks, I keep them beside me as a secretary and knowledge platform for routine operations, speaking requests, internal coordination, slide preparation, and customer-facing project delivery.

That daily use reveals agent-worthy problems. With Markdown, Git, Google Workspace, and MCP in the loop, work becomes context an agent can read, improve, and hand back. I then turn those problems into agents I build, deploy, review, and operate myself.

I will cover Vibe Presales, my term for turning a customer's concerns, constraints, and reactions in a presales conversation into a working demo while the context is fresh. I will also share lessons from a PowerPoint-building agent, including design, deployment, review, and output quality for real slide and proposal work.

These lessons become OSS code, articles, books, and hands-on material. Attendees leave with a loop for living with agents at work, building reliable systems, and sharing reusable lessons.
Speakers
avatar for Minoru Onda

Minoru Onda

KDDI Agile Development Center Corporation
Technology Evangelist, KDDI Agile Development Center Corporation
Thursday September 10, 2026 14:05 - 14:30 JST
Hall C

14:40 JST

The Production Gap: Why Governing Agent Traffic Is the Key To Shipping Multi-Agent Systems - Juhi Singh, Kong & Prithvi Raj, Mirantis
Thursday September 10, 2026 14:40 - 15:05 JST
Every team building agentic systems hits the same wall: the gap between a demo and a system you'd trust in production. Most assume it's an engineering problem. It isn't. It's a governance problem and governance in a multi-agent system isn't a policy document. It's the full data path.

We demonstrate a production-style multi-agent workflow where customer feedback flows through agents, MCP tools, GitHub integrations, and multiple LLM providers before triggering automated actions.

We show how cloud-native primitives govern every interaction: OpenTelemetry for distributed tracing across agent hops, OPA for declarative policy enforcement, API gateways for prompt injection protection and model routing, and Kubernetes for workload isolation.

The hardest part of running agents in production isn't the AI. It's the same problems Kubernetes solved for microservices, observability, traffic management, policy, workload isolation applied to a new class of workload the ecosystem is still learning to instrument.
Speakers
avatar for Juhi Singh

Juhi Singh

Developer Evangelist, Kong
Juhi is the Developer Evangelist (APAC) at Kong. She’s passionate about helping the developer community and building strong connections. Outside of work, Juhi enjoys reading, staying fit, trekking, traveling, and cooking. She describes herself as a "product of a community" with... Read More →
avatar for Prithvi Raj

Prithvi Raj

Senior Community Manager & Developer Advocate, Mirantis
Prithvi Raj is a Senior Community Manager & Developer Advocate at Mirantis working with the OSPO. He is a CNCF Ambassador with 6+ years of experience who helped scale a CNCF incubating project and runs the CNCG Platform Engineering Meetup group. He is currently leading the community... Read More →
Thursday September 10, 2026 14:40 - 15:05 JST
Hall C

15:35 JST

Stop Giving Agents Tokens: Securing With Side-Car Proxies - Girish Motwani, Microsoft & Ritwik Ranjan, Microsoft
Thursday September 10, 2026 15:35 - 16:00 JST
As autonomous agents move from experimental scripts to production systems, we’re exposing a massive flaw in how they’re built. We are giving LLMs the power to execute code, access files, and make network requests—essentially turning them into untrusted programs with direct authority over our infrastructure.

Prompt injection isn’t just a model quirk; it’s an open door to a massive attack surface. The moment an agent processes untrusted data, that input can hijack generated code, trigger outbound requests, and lead to data leaks or Server-Side Request Forgery (SSRF). Without proper guardrails, a highly capable agent is just a friendly interface over a Remote Code Execution (RCE) vulnerability.

This session reframes the entire security challenge. Instead of wasting time trying to make the model perfectly "safe," we’ll look at how to design infrastructure that stays secure even after the agent is compromised. By enforcing strict policy gates, we ensure that even if an agent is hijacked, it cannot access secrets, traverse your network, or execute privileged actions.
Speakers
avatar for Girish Motwani

Girish Motwani

Principal Software Engineering Manager, Microsoft
Girish Motwani is a Principal Software Engineering Manager at Microsoft, leading Azure Container Networking in Ireland, powering connectivity for Azure’s global container workloads. He previously led Azure Firewall. With 21+ years’ experience, he builds high-scale cloud platforms... Read More →
avatar for Ritwik Ranjan

Ritwik Ranjan

Software Engineer, Microsoft
Ritwik Ranjan is a results-driven software engineer with a passion for creating scalable, efficient, and innovative cloud-based solutions. Currently, he is working as an SDE 2 at Microsoft Azure Core in Dublin. His experience spans across diverse technologies, focusing on improving... Read More →
Thursday September 10, 2026 15:35 - 16:00 JST
Hall C

16:10 JST

Your Platform Is Your Context: Scaling AI Agents With Platform Engineering - Gang Luo & Kristina Kondrashevich, Electrolux
Thursday September 10, 2026 16:10 - 16:35 JST
A production issue spans multiple cloud environments. Everything looks fine in isolation, but the system behaves unexpectedly end-to-end. Reconstructing what is actually deployed requires stitching together cloud consoles, infrastructure definitions, and internal tooling.

AI agents could help with this kind of problem, but they need better context. Infrastructure is a key part of that context gap. Cloud resources, environments, configurations, and policies are essential for reasoning and decision-making, yet this information is fragmented across infrastructure-as-code, cloud providers, and internal systems.

This talk explores why a developer platform was built: to unify infrastructure management, standardize how teams provision and manage cloud resources, and provide a consistent abstraction across providers, accounts, and environments. The platform then evolves into a unified source of infrastructure context, aggregating metadata into a coherent infrastructure blueprint. By exposing this through an MCP server, it allows AI agents to understand the full infrastructure landscape, improving reasoning, troubleshooting, and the quality of assistance in engineering workflows.
Speakers
avatar for Gang Luo

Gang Luo

Engineering Manager, Electrolux Group
With extensive experience in the software industry, Gang has worked across Platform Engineering, Infrastructure Engineering, and Site Reliability Engineering. His focus is on building scalable platforms, enabling developer productivity, and driving operational excellence within fast-growing... Read More →
avatar for Kristina Kondrashevich

Kristina Kondrashevich

SRE Product Manager, Electrolux
Throughout her career, Kristina has written code, managed teams, and optimized delivery. As an SRE Product Manager at Electrolux Group, she helps the platform team adopt product management practices. Her mission is to elevate the developer experience by treating internal developers... Read More →
Thursday September 10, 2026 16:10 - 16:35 JST
Hall C

16:45 JST

Intent as Code: Why Existing Permissions Aren’t Enough for AI - Masaya Nakamura, Studist
Thursday September 10, 2026 16:45 - 17:10 JST
MCP grants AI agents access to file systems, Git, cloud, and SaaS. Yet permission models — IAM, OAuth scopes, PATs — were built for humans and fall short for AI.

The issue isn’t granularity. Existing permissions assume “human rationality” as a boundary: write access doesn’t mean a human wipes a repo; CI write access doesn’t mean a human exfiltrates secrets. Permissions stay broad because human judgment fills the gap. AI lacks this buffer — through prompt injection or edge cases, it acts destructively where a human would stop. Per-call approval collapses under fatigue.

As an SRE on strong production credentials, my question wasn’t “how to restrict AI” but “how to maximize safe delegation.”

I propose Intent as Code: coding what was left to human rationality. Three OSS tools:
safe-push rejects pushes touching .github/ or others’ commits, preventing CI hijacking
safe-gh wraps gh CLI with conditions like “only own issues” or “only approved PRs to develop” — expressing intent PATs can’t
safe-webfetch uses Claude Code Hooks to auto-allow learned-safe URLs, cutting fatigue decisions

Attendees leave understanding why permissions fall short for AI, with patterns to apply.
Speakers
avatar for Masaya Nakamura

Masaya Nakamura

Platform Engineer, studist
Super Engineer
Thursday September 10, 2026 16:45 - 17:10 JST
Hall C

17:20 JST

Accelerating the Autonomous Web With WebMCP - Vin Lim, StaffOS
Thursday September 10, 2026 17:20 - 17:45 JST
AI agents have long been capable of interacting with the web, relying on brittle DOM scrapers and heavy browser automation has kept these workflows slow and prone to failure. We will explore how the WebMCP shifts agentic web interaction from merely functional to highly performant and efficient by providing a standardized, machine-readable layer for context sharing and action execution. WebMCP eliminates the friction and overhead of legacy automation techniques.
Speakers
avatar for Vin Lim

Vin Lim

CTO, StaffOS
Vin is the co-founder of StaffOS, an AI Workforce platform for business to deploy and govern AI agents. He is also a Google Developer Expert, having partnered with Google to advocate web technology for the past 10 years, speaking, mentoring and conducting community workshops.
Thursday September 10, 2026 17:20 - 17:45 JST
Hall C
 
Share Modal

Share this link via

Or copy link

Filter sessions
Apply filters to sessions.
Filtered by Date -