Members-Only
Recent Talks & Demos are for members only
You must be an AI Tinkerers active member to view these talks and demos.
June 16, 2026
·
Valencia
Linear agent
Explore the Linear agent's evolution from trial to intelligent product manager. Learn about architectural insights and challenges overcome, presented on the mainstage.
Overview
The Linear agent helps builders move faster. It has evolved from an initial trial 3 years ago that we never shipped to an intelligent product manager that does a lot of heavy lifting for you.
Links
An AI-driven project management system automating issue intake, labeling, and routing.
Tech stack
- TypeScriptTypeScript is an open-source superset of JavaScript: it adds static typing and compiles to clean, standards-based JavaScript.TypeScript is a high-level, open-source language developed by Microsoft: it acts as a superset of JavaScript, adding a powerful static type system. This system enables compile-time type checking, catching errors before runtime (a critical benefit for large-scale applications). The TypeScript Compiler (TSC) reliably transpiles all code into clean, standards-based JavaScript (ES3 or newer), ensuring compatibility across any browser or host environment (Node.js, React.js, etc.).
- GraphQLGraphQL is a data query language for APIs and a server-side runtime (originally developed by Facebook in 2012) that lets clients request *exactly* the data they need, eliminating the over-fetching common with traditional REST endpoints.This is a client-driven specification: it shifts data control to the consumer. Unlike REST, GraphQL uses a single endpoint, allowing clients to send a query that specifies the precise data fields required, minimizing payload size and network calls. The API's capabilities are defined by a strongly-typed schema (Schema Definition Language), which acts as a contract between the client and server. This schema enables powerful tooling and introspection. Major platforms like GitHub, Shopify, and Yelp have adopted GraphQL, proving its efficiency for complex, evolving data requirements.
- K8sK8s is the open-source industry standard for automating the deployment, scaling, and management of containerized applications at scale.Originally built by Google and now managed by the CNCF (Cloud Native Computing Foundation), K8s orchestrates clusters of virtual or physical machines (nodes) to run containerized workloads. It handles the operational heavy lifting: service discovery, load balancing, and automated rollouts. If a pod fails, K8s restarts it: if a node goes down, it reschedules the work elsewhere to maintain your desired state. You define the infrastructure via declarative YAML files, and the control plane ensures your production environment stays stable under heavy traffic.
- KubernetesKubernetes (K8s): Production-grade container orchestration: automate deployment, scaling, and management across your cluster.Kubernetes (K8s) is your control plane for planet-scale container orchestration: it automates the deployment, scaling, and management of containerized applications across your cluster. Built on 15 years of Google's production experience (Borg), K8s ensures your *desired state* is always maintained. Core resources like Pods, Deployments, and Services manage auto-scaling, load balancing, and self-healing for you. You interact directly with the API server using `kubectl` (the command-line tool) to execute zero-downtime rollouts and rapid rollbacks. As a CNCF project, it provides vendor-neutral flexibility for any infrastructure: cloud, on-premises, or hybrid.
- TurbopufferA serverless, multi-tenant search engine built on object storage to deliver vector and full-text search at a fraction of the cost of memory-heavy databases.Turbopuffer bypasses expensive, RAM-heavy setups by running vector and full-text search directly on top of cheap object storage like Amazon S3. Built by former Shopify infrastructure engineers, the platform separates compute and storage, using a tiered NVMe SSD and RAM cache to achieve sub-10ms warm query latency while keeping costs roughly 10x lower than traditional alternatives. It handles massive production workloads (powering search for teams like Notion, Cursor, and Anthropic) and scales to over 4 trillion documents, 10 million writes per second, and 25,000 queries per second without breaking the bank.