Members-Only
Recent Talks & Demos are for members only
You must be an AI Tinkerers active member to view these talks and demos.
Pull-architecture agents: how I forced myself to do growth work
Learn how to build a multi-agent system from your terminal and chat to automate growth tasks like writing and follow-ups, using your own backend and sandboxed identity.
A multi-agent system that manufactures pull for the growth work — writing, conference follow-up, CRM hygiene, responding to news — that I’d otherwise skip when product and ops eat my week. Seven agents across five repos, two APIs, and two websites (one fully autonomous), all driven from the only two surfaces I actually live in: my terminal and Mattermost. The demo walks a live pass through the rig: a LinkedIn contact lands in our self-hosted CRM, an article draft gets pushed to a website, a post-conference follow-up gets queued — every action is a curl command an agent emits, with circuit breakers I can tighten in the moment or across the long arc.
Cirdia develops privacy-architected infrastructure and media centering women's wellness data.
Cirdia provides branded client insight reports using QR-enabled referral links.
- Claude CodeAnthropic's agentic coding tool: Unleash Claude's raw power directly in your terminal or IDE to turn complex, hours-long workflows into a single command.Claude Code is Anthropic’s powerful agentic coding assistant, designed for high-velocity development. It operates natively within your terminal, IDE (VS Code, JetBrains), or via a web interface, allowing you to delegate complex tasks like feature building, bug fixing, and codebase navigation. The agent plans, edits files, executes commands, and creates commits, maintaining awareness of your entire project structure. Internally, Anthropic engineers using Claude Code reported a 67% increase in productivity, demonstrating its capacity to deliver significant gains for Pro and Max plan users.
- NodeNode.js is a high-performance JavaScript runtime built on the V8 engine for executing scalable network applications.Ryan Dahl launched Node.js in 2009 to rethink server-side concurrency. It utilizes an event-driven, non-blocking I/O model to manage thousands of concurrent connections on a single thread. The system runs on Google's V8 engine (C++) and provides access to npm (a registry with over 2 million packages). Companies like Netflix and LinkedIn use it for its speed and scalability: it remains the top choice for real-time data streaming and microservices.
- SvelteSvelte is a UI compiler: it converts declarative components into highly efficient, vanilla JavaScript, eliminating the Virtual DOM overhead.Svelte redefines front-end development by operating as a compiler, not a traditional framework or runtime library. Unlike React or Vue, which perform bulk work in the browser (e.g., Virtual DOM diffing), Svelte shifts that load to the build step. This compile-time approach generates highly optimized, surgical code that updates the DOM directly: the result is smaller application bundles, minimal overhead (often just 2KB of runtime code), and superior performance metrics. Developers appreciate the concise component syntax, which uses standard HTML, CSS, and JavaScript, ensuring a faster, more approachable workflow.
- PostgreSQLPostgreSQL (Postgres): The world's most advanced, open-source object-relational database (ORDBMS), built for reliability and extensibility.PostgreSQL is the premier open-source ORDBMS, proven over 35+ years of active development. It adheres strictly to ACID properties (Atomicity, Consistency, Isolation, Durability), ensuring data integrity for mission-critical workloads. Key features include robust SQL compliance, Multi-Version Concurrency Control (MVCC), and superior extensibility (e.g., custom data types, functions in multiple languages). Advanced capabilities like native JSON/JSONB support and the PostGIS extension (geospatial data) make it a powerful, flexible choice for complex enterprise applications.
- MattermostAn open-source, self-hosted collaboration platform designed for high-security engineering and operational teams.Mattermost serves as a secure alternative to Slack and Microsoft Teams, specifically engineered for technical workflows. It integrates deeply with developer tools like GitHub, Jira, and GitLab, allowing teams to manage incident response and DevOps pipelines within a unified interface. Organizations like NASA and the U.S. Air Force deploy it on-premise or in private clouds to maintain full data sovereignty. The platform supports structured playbooks for repeatable processes (such as SRE on-call rotations) and provides a robust API for custom bot integrations.
- Claude (Anthropic)Anthropic's flagship AI assistant designed for sophisticated reasoning, high-speed coding, and nuanced text generation.Claude 3.5 Sonnet sets the standard with a 200,000-token context window and top-tier performance on benchmarks like GPQA (graduate-level reasoning). Anthropic builds these models using Constitutional AI: a framework that ensures safety through explicit principles rather than just human feedback. The platform features Artifacts (a dedicated workspace for real-time code execution and UI rendering) to streamline technical projects. Whether you are debugging Python scripts or drafting long-form reports, Claude delivers reliable results with a human-like, professional tone.
- AgentAn Agent is an autonomous software system (often LLM-driven) that perceives its environment, makes goal-directed decisions, and executes multi-step actions without continuous human oversight.This is the next-generation automation layer: a software entity capable of independent operation. Agents utilize a core perception-action loop, integrating memory and planning systems to break down complex objectives (e.g., 'book a full business trip') into actionable subtasks. They are distinguished by their autonomy, moving beyond simple chatbots or rule-based scripts. Modern examples like AutoGPT and Devin AI demonstrate their capacity to use external tools (APIs, web browsers) and adapt their strategy in real-time, delivering a step-change in efficiency for enterprise workflows and complex data analysis.
- RuntimeThe software environment that executes code: it provides core services, manages resources, and acts as the crucial abstraction layer between your program and the operating system.A Runtime Environment (RTE) is the dedicated platform where a program’s compiled or interpreted code runs, abstracting away the underlying OS and hardware complexities. It handles critical operations: memory allocation (heap and stack), garbage collection, I/O access, and threading. For example, the Java Virtual Machine (JVM) executes Java bytecode, while Node.js and Bun utilize the V8 engine to run JavaScript outside of a browser. This environment ensures cross-platform compatibility and provides the necessary system interfaces (APIs) for your application to function correctly.
- APIsThe software intermediary: APIs (Application Programming Interfaces) define the rules for two applications to communicate, enabling secure data exchange and functionality access.APIs are the essential contracts that allow distinct software systems to interact without exposing internal code. They operate on a request-response cycle: a client sends a structured request (often via HTTP methods like GET or POST) to a specific endpoint (URL), and the server delivers a formatted response (typically JSON or XML). Major architectural styles include REST (Representational State Transfer) and SOAP (Simple Object Access Protocol). This standardized protocol allows massive-scale integration: for example, a travel application uses the Google Maps API for location data, or a payment gateway API (like Stripe) to process a transaction securely. APIs accelerate development by leveraging existing services, drastically cutting time-to-market and development costs.
- Svelte (Cirdia front ends)Svelte is a high-performance, compile-time frontend framework used by Cirdia to build fast, lightweight, and highly interactive user interfaces for its privacy-first wellness applications.Cirdia leverages Svelte to power the user interfaces of its privacy-centric wellness ecosystem, including the Tapestry wellness journal and its companion wearable devices. Unlike traditional frameworks that rely on a heavy runtime virtual DOM, Svelte acts as a compiler (converting component code into highly optimized, surgical vanilla JavaScript at build time). This architectural choice allows Cirdia to deliver exceptionally fast, responsive, and lightweight client-side experiences. By eliminating framework overhead, Svelte ensures that complex data visualization, local pattern tracking, and real-time biometric dashboards run smoothly directly on the user's device, reinforcing Cirdia's core commitment to local, secure, and ephemeral data processing.
- Astro (personal/autonomous site work)Astro is a server-first web framework designed to build fast, content-driven personal and professional websites with zero unnecessary JavaScript overhead.Astro excels at rendering highly performant, content-heavy personal sites and portfolios by utilizing a unique island architecture. By default, it delivers pure HTML to the browser and only hydrates interactive components (built in React, Vue, or Svelte) when and where they are needed. This server-first approach dramatically reduces page load times and improves SEO. With built-in markdown support, type-safe content collections, and seamless deployment integrations for platforms like Vercel and Netlify, Astro allows developers to build and automate autonomous site updates with minimal maintenance.
Compose Email
Loading recent emails...