Use cases

What people build with NEO

Real projects built using NEO, from LLM benchmarks to agent swarms. Pick a workflow below to browse, or start with a featured use case.

24 use cases · 7 workflows · production-tested

Featured

Browse by workflow

Same stack you're already debugging

Agents with brittle tool calls. Prompts that need another pass. Evals before you trust a model swap. NEO lives in VS Code or Cursor and helps you turn that work into real code and runs, so you iterate on behavior, not boilerplate.

Get started
CursorCursor
Claude CodeClaude Code
CodexCodex
WindsurfWindsurf
ZedZed
AntigravityAntigravity
ContinueContinue
CursorCursor
Claude CodeClaude Code
CodexCodex
WindsurfWindsurf
ZedZed
AntigravityAntigravity
ContinueContinue
eval_pipeline.py
  def run_eval(model, tasks):-     results = model.predict(tasks)+     results = batch_eval(model, tasks)+     log_regression(results)      return score(results)