The core innovation of this project is not the API interceptor — it's the self-improving instruction set that teaches AI agents how to use it.
The .claude/ directory contains rules, skills, and agent definitions that Claude Code reads before performing any task. After every iteration of testing, these instructions are automatically refined based on what agents did wrong. The agents' code is throwaway. The instruction improvements are the product.
Iteration 1: Rule says "you should capture traffic first"
→ Agent skips it, guesses the API instead
| // http://stackoverflow.com/questions/21474678/scrolltop-animation-without-jquery | |
| function scrollToTop() { | |
| var deferred = $q.defer(); | |
| var content = document.getElementById('content'); | |
| var scrollDuration = 1200 * ((content.scrollTop / content.offsetHeight)); | |
| var cosParameter = content.scrollTop / 2, | |
| scrollCount = 0, |