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

IMPORTANT NOTE: Timing of sessions and room locations are subject to change.
Type: Agentic Engineering clear filter
Thursday, September 10
 

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

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
 
Friday, September 11
 

10:40 JST

How I Built the Most Viral Agentmemory Completely Opensource With 22K+ GitHub Stars - Rohit Ghumare, iii & Vinuja Khatode, JP Morgan Chase
Friday September 11, 2026 10:40 - 11:05 JST
Most agent memory is a chat log with extra steps. Dump turns into a vector store, retrieve the top-k by cosine similarity, and hope the right context shows up. It usually doesn't, and the agent pays for it three turns later.

agentmemory MCP Server began as a fix for that. It combines BM25, dense vector search, and a knowledge graph, fuses them with reciprocal rank fusion, and ages stored memories on an Ebbinghaus forgetting curve so old context decays instead of drowning new signal. On LongMemEval-S it reaches 95.2% recall
at 5. The repo trended on GitHub, ranked on Product Hunt, got picked up by AlphaSignal, and was recognized by the Agentic AI Foundation, none of it paid for.

This talk covers how it was built and where the easy version breaks. Single-method retrieval looks fine in a demo and falls apart on long histories. I'll show why each method earns its place, how the pieces compose with one engine an agent can query over MCP, and which design decisions held up once real workloads hit them.

You'll leave with a memory model that beats top-k vector search and a clear picture of how to expose it to agents through MCP.
Speakers
avatar for Rohit Ghumare

Rohit Ghumare

Founding Engineer, iii
As a Google Developer Expert specializing in Google Cloud and GenAI, I am a passionate DevOps Advocate and a dedicated Community Evangelist. I lead and nurture multiple communities across diverse platforms, fostering DevOps and Developer Relations awareness. My commitment to the open-source... Read More →
avatar for Vinuja Khatode

Vinuja Khatode

Platform Engineer, JP Morgan Chase
A Platform Engineer at JPMorgan Chase and a CNCF community regular and lifelong learner. She’s spoken at global conferences like State of Open Con, KCDs, and DevOpsDays, bringing raw, real-world DevOps and Platform lessons to the stage. Vinuja has also built and scaled platforms... Read More →
Friday September 11, 2026 10:40 - 11:05 JST
Hall C

14:40 JST

Building an Agentic Software Factory - Valentin De Matos, Delphi
Friday September 11, 2026 14:40 - 15:05 JST
AI coding agents are useful in isolated demos; the hard problem is making them controlled enough to ship production code. At Delphi, we built an agentic software factory that turns product specs and engineering tickets into scoped pull requests, then routes those PRs through reviewer agents, CI, browser verification, and merge gates.

This session breaks down the operating system around the agents: how we package repo context, encode architectural rules, isolate attempts in worktrees, make agents cite source-of-truth patterns, prevent drift from legacy code, and decide what should stay human-controlled. I will also cover failure modes we hit in production: stale context, over-broad diffs, flaky tests, review spam, false confidence, and agents copying the wrong pattern.

Attendees will leave with a practical blueprint for moving from “agent writes code” to a controlled delivery pipeline for agent-generated software
Speakers
avatar for Valentin De Matos

Valentin De Matos

AI Engineer, Delphi
AI Engineer at Delphi AI in San Francisco, Valentin builds production AI systems for digital twins, agent behavior, and AI-assisted engineering workflows.
Friday September 11, 2026 14:40 - 15:05 JST
Hall C

17:20 JST

Your Agent Inherits Code, Not Decisions: How To Use Context Graphs for Intent - Nyah Macklin, Neo4j
Friday September 11, 2026 17:20 - 17:45 JST
Technical debt lives in code. Cognitive debt lives in your head. Intent debt, Addy Osmani's term for the goals, constraints, and rationale behind a decision that never got written down, lives nowhere. It's the one debt agents can't pay down: an agent drafting a spec fills the gap with a confident guess, and the guess is usually wrong.

This talk covers building context graphs that capture the why: connecting decisions to the document threads and ticket discussions where humans actually made them, then exposing that structure to agents alongside code and data. I'll draw on an open-source toolkit that bootstraps context graphs from existing work artifacts (workspace threads, ticket histories) and the modeling questions that turned out hard: what separates a decision from a discussion, and when capture should run as a background process versus an explicit act.

Vendors now race to pitch "context layers for agents." I'll argue the differentiator isn't collection but connection: rationale linked to the entities, people, and prior choices it affects: queryable, not just retrievable.

You'll leave with patterns for making the why available to every agent that touches your work.
Speakers
avatar for Nyah Macklin

Nyah Macklin

Sr. Developer Advocate, Artificial Intelligence, Neo4j
Nyah Macklin is a seasoned researcher and speaker on AI, ML, Ethics, Governance, and Responsibility. Nyah serves as a Sr. Developer Advocate at Neo4j, specializing in context engineering, knowledge graphs, and AI-driven developer tooling where Nyah has built high-impact technical... Read More →
Friday September 11, 2026 17:20 - 17:45 JST
Hall C
 
Share Modal

Share this link via

Or copy link

Filter sessions
Apply filters to sessions.