Remove yourself from the loop. Let agents handle the boring work.
You've been the one typing prompts. In every chapter so far, you started the conversation. You were the driver. The agent was the engine — powerful, fast, tireless — but it only moved when you turned the key. This chapter is about removing yourself from the loop.
You'll build an automated multi-step pipeline: unstructured feedback goes in, AI agents parse, categorise, and prioritise it, GitHub issues come out, and a summary report is generated — all orchestrated by shell scripts and scheduled with cron.
This is 'multi-agent' orchestration. Two agents, two system prompts, two jobs. The intake agent doesn't know about priorities. The triage agent doesn't do parsing. Each one is specialised, and the shell script connects them. You've just built what framework vendors charge you a monthly subscription for — with two bash scripts and a pipe.
— from the exercise
What you'll build
Key concepts
What's covered
What just happened
You built an automated pipeline from nothing but shell scripts and AI agents. The intake agent parses, the triage agent categorises, issues get filed, reports get written — all running on a schedule while you sleep. You designed the system. The agents execute it.