I kept wondering why Cursor was indexing my codebase, it was never clear.
Anyway context to me enables a lot more assurance and guarantees. RAG never did.
My favorite workflow right now is:
- Create context with https://github.com/backnotprop/prompt-tower
- Feed it to Gemini
- Gemini Plans
- I pass the plan into my local PM framework
- Claude Code picks it up and executes
- repeat
How does this work?
It’s not clear how context is used to plan by Gemini then the plan is fed to local framework. Do I have to replan every time context changes?
They use a tool like the one they linked to put all their files into one file that they give to gemini.
Then they put the plan into their "PM framework" (some markdown files?) to have Claude Code pick tasks out of.
Can you give an example of a local PM framework? What happens in this step - ticket creation?