Walkthrough of the executive analytics agent example project: an agent that answers analytical questions over a lakehouse and when the answer doesn't exist yet, files the work to build it as a permanent pipeline.The setup uses Claude Cowork as the interface, the Bauplan MCP for querying and validating against the lakehouse, Linear as the ticketing system and GitHub Actions to run Claude against the repo when an issue lands.Every question takes one of two paths:Path A: a gold table already answers it. The agent queries and returns the result. Nothing is written, nothing is reviewed.Path B: no table answers it yet, but the data is one query away. The agent runs the query, returns the result to the executive immediately, then files a Linear issue to turn that query into a permanent pipeline.Path B closes the loop automatically. Linear syncs the issue to GitHub, a GitHub Action runs Claude against the repository, the agent reads the issue and project docs, and validates the pipeline with a Bauplan dry run. An engineer reviews and merges, a scheduler materializes the gold table on main, and the next time that question is asked it hits path A.What's covered: