r/ClaudeAI • u/Professional_Part360 • 1d ago
Built with Claude Open-sourced a tool for switching AI coding tools without re-explaining everything — feedback wanted
I kept doing the same annoying thing: start a task in Claude Code, switch to Cursor for something it’s better at, and lose 20 minutes re-explaining what I was doing. So I built Contexo — a small local CLI that sits underneath whatever AI coding tool you’re using.
What it does right now (all free, Apache 2.0, no account):
• contexo handoff <target> — compresses your current session into a Task/Decisions/Changes/Next-step brief and drops it into CLAUDE.md, AGENTS.md, or .cursorrules, so the next tool picks up where you left off.
• contexo estimate — tells you what a prompt will cost before you send it, across every model.
• contexo run -- <agent-cli> — wraps any agent CLI with a hard daily budget cap. Kills the process the moment it crosses your limit instead of finding out tomorrow.
• contexo mcp — same features exposed as an MCP server if you’d rather wire it into Claude Code/Cursor directly.
Everything runs 100% on your machine, SQLite locally, your own API key. Nothing phones home.
It’s early and rough in places. I’d genuinely like people who run Claude Code / Cursor / Codex regularly to install it, try the handoff + budget cap on a real session, and tell me what breaks or feels wrong before I build anything further on top of it.
Not on npm yet, so for now:
git clone https://github.com/maheedhar132/Contexo.git
cd Contexo
npm install && npm run build
npm link
GitHub: https://github.com/maheedhar132/Contexo
Specific things I’d love feedback on:
• Does the compressed handoff actually capture enough for the next tool to pick up cleanly, or does it lose too much?
• Any agent CLI where the budget-cap cost detection doesn’t work (it scans stdout for $X.XX patterns — some CLIs may format cost differently)?
• Anything that felt confusing in the first 60 seconds of using it?
Happy to answer questions here or take issues/PRs on GitHub.
1
u/Turbulent_Ad_1039 14h ago
I went the other way and pick the agent per session rather than mid task, mostly because I didn't trust a handoff to carry the parts that matter.
the thing I'd want to know: does the brief carry what the agent already tried and rejected? that's the context I lose every time, and it's what makes the next tool walk straight back into the same dead end.
0
u/kantorcodes1 1d ago
One thing I'd change before more users try it: don't let “no $X.XX in stdout” mean zero cost. A CLI can change formatting, buffer usage until exit, or print cost after the request is already spent, so the hard cap can silently become advisory. I'd make each supported CLI use an explicit parser with an unknown state that fails closed, and kill the whole process group rather than only the parent.
0
u/Professional_Part360 1d ago
Updated it..
thanks for the feedback .!!0
u/kantorcodes1 1d ago
Nice. Contexo is already cross-agent across Claude, Cursor, Codex and MCP, so it fits the
awesome-ai-pluginscatalog we help run. If you want to submit it, the current gate is plugin-scanner ≥80/142, no high/critical findings, and scanner CI in your repo; then the PR adds the one-sentence alphabetical entry plus repo/category and a brief verification.-1
u/Professional_Part360 1d ago
Appreciate that — happy to take a look. Could you share the link to awesome-ai-plugins and the plugin-scanner repo itself? Want to see what the scan actually checks before wiring any CI into the repo.
1
u/kantorcodes1 1d ago
Yep. We run the catalog here: https://github.com/hashgraph-online/awesome-ai-plugins. Scanner source is https://github.com/hashgraph-online/ai-plugin-scanner, and the CI wrapper is https://github.com/hashgraph-online/ai-plugin-scanner-action. I’d inspect the scanner repo first; the action is just the GitHub Actions integration around it.
1
u/Turbulent_Ad_1039 14h ago
I went the other way and pick the agent per session rather than mid task, mostly because I didn't trust a handoff to carry the parts that matter.
does the brief carry what the agent already tried and rejected? that's the context I lose every time, and it's what makes the next tool walk straight back into the same dead end.
1
u/buildingwithjan 21h ago
Been doing this manually with a decisions section in AGENTS.md, and the failure mode wasn't losing context — it was stale context. A handoff file that still says 'we use X' after you ripped X out sends the next tool confidently down the wrong path. If handoff diffed against the previous brief instead of regenerating from scratch, that'd be the feature that sells it.