Turn one line into a finished app.
myVibe is a model-agnostic operating system for AI coding agents. Type one sentence — get a real, tested, localhost-running project. Works with Claude Code, GitHub Copilot, OpenAI Codex CLI, Cursor, and Windsurf.
Install — one line
Windows (PowerShell)
iwr https://raw.githubusercontent.com/Mohamed201389/myVibe/main/bootstrap.ps1 | iex
macOS / Linux
curl -fsSL https://raw.githubusercontent.com/Mohamed201389/myVibe/main/bootstrap.sh | bash
One command installs myVibe into every coding agent on your machine. After install, type /myvibe in VS Code Copilot — or just say "build me a kanban app" in Claude / Copilot / Cursor and the skill auto-loads.
What you get
One-shot intake
The agent collects every project decision upfront in a single round. No mid-build interrogation.
Ralph-style loop
One feature at a time: failing test → implementation → green → commit → next. Three-retry rule before escalating.
Quality gate
Lint + types + tests + build must all pass. No exceptions. "Done" is binary.
Localhost-first
You get a real running project. Deployment is a separate conversation, on purpose.
Latest stable
React 19, Vite 8, TS 5, Node 22, Fastify, Prisma 6, FastAPI + uv. No deprecated APIs.
Model-agnostic
Same kit, same rules, every agent. Switch from Claude to Copilot to Codex — no rewrites.
Examples
> build me a kanban board with drag-and-drop
> create a saas dashboard with auth and stripe
> scaffold a portfolio site with framer motion
> vibe code an inventory tool with sqlite
> make me a fastapi todo backend with jwt auth
How it compares
| Approach | What it gives you | Where myVibe is different |
|---|---|---|
| Default agent | A chat that suggests code | Deterministic workflow, real checkpoints, real quality gate |
| v0 / bolt.new / Lovable | A hosted builder for one stack | Runs in your IDE on any stack, your own machine, no vendor lock-in |
| Cursor / Windsurf alone | Better editor + completions | Adds the workflow on top — rules + intake + Ralph loop |
| Custom AGENTS.md | Per-project rules | Same rules everywhere, one-command install, plus the playbook |
Learn more
FAQ
Is myVibe a paid product?
No. MIT licensed, free, no telemetry, no signup. It's a folder of Markdown plus an installer.
Does it actually run code?
myVibe is instructions, not a runtime. Your AI coding agent (Claude, Copilot, Codex, Cursor) runs the code, following the rules in this kit.
Does it work with weaker models?
It works, but with a weak model it just fails earlier and louder. That's actually an improvement — you find out at minute 2 instead of hour 2.
How is this different from just writing my own AGENTS.md?
You can. myVibe is the version a lot of people landed on after dozens of iterations, plus the multi-agent installer and the per-project init.
Will it ever support deployment?
Not in the core kit. Deployment is a separate decision per stack; trying to bundle it would make the kit worse for everyone.