I stopped prompting and started building a harness A developer has built an alpha-stage Claude Code plugin harness that encodes React Native development workflows into reusable skills and agents, replacing repeated ad-hoc prompting. Running the harness's refactoring agent on a personal headache-tracker app split a ~330-line Home() component into named hooks and components, cutting it to roughly 150 lines with static checks passing. The developer plans to open the harness to other React Native engineers. For the last few months I've been using AI agents in almost every part of my React Native work. At some point I noticed I was writing the same instructions over and over: how I want projects set up, what a good refactoring looks like, what to check before shipping. Every new session started from zero. So I started turning those instructions into a harness: a set of skills and agents that encode how I actually work. It's still in alpha, I use it daily on my own projects, and here's how it's built and what I've learned so far. My first version was just files copied into ~/.claude . Now the harness is a proper Claude Code plugin in its own git repo. Every skill and agent is called with an rnmh: prefix, so it's clear what comes from the harness and what doesn't. The biggest change wasn't organizational, though. Once each task had its own dedicated skill, the agent's answers became noticeably more structured, and the results got better with them. I ran the refactoring agent on my own side project, a headache tracker that's currently in alpha. The home screen had grown into a classic Long Function : one Home component of ~330 lines with 5 useState , 5 useEffect , 3 async handlers and a three-way JSX branch, all inline. Before: function Home { const openAttack, setOpenAttack = useState