Use Cases & Workflows
Build AI agents and tool-using LLM apps first—with Neo in VS Code planning, executing, and iterating on real code. Classical ML and training pipelines are here too, as a focused track when your problem needs datasets and models—not prompts alone.
Neo reads your repository, runs steps locally (or on cloud you configure), and leaves inspectable artifacts: code, configs, evals, and traces. Additional example walkthroughs live under Projects in the documentation sidebar.
Why agent builders start with Neo
Goals grounded in your repo
Plans reference real files, APIs, and constraints—not a blank chat. Neo decomposes work into steps you can review and rerun.
Tools, MCP, and glue code
Wire HTTP APIs, MCP servers, scripts, and CLIs into a coherent agent or service—see MCP Optimization and Repo Query Agent.
Multi-agent orchestration
Split planner, coder, and reviewer roles; ship from specs to diffs—Spec to Ship, LLM Council, Agent swarms.
Evals, safety, and ops
Benchmark hallucinations, harden prompts, watch traces—Hallucination Benchmark, Prompt injection defense, Observability.
The agent loop on Neo
Neo fits how teams describe modern agent work:
You stay in control: approve risky steps, edit generated code, and version prompts next to application code. For more examples by theme, use the Projects section in the sidebar.
Deep dive: agents built with Neo
Three end-to-end patterns illustrated with linked walkthroughs—swap in your domain and repo.
Spec to multi-agent delivery
From product spec to merged code
Multi-agentWhat you ask Neo
Turn this spec into a plan, implement in-repo, and have a reviewer agent validate against acceptance criteria.How it comes together
What you get
Repository intelligence at scale
Ask questions across any large codebase
Tools & retrievalWhat you ask Neo
Clone this repo, map architecture, then answer multi-turn questions without reading every file by hand.How it comes together
What you get
RAG and document-grounded apps
Retrieval you can ship
RAG & multimodalWhat you ask Neo
Build a RAG stack over our documents (and modalities we care about), with evaluation hooks and clean APIs.How it comes together
What you get
More agent & tool patterns
Pick a theme in the tabs below, then use the link rows—each opens the full walkthrough (same pages as under Projects in the sidebar).
Neo in VS Code
Neo runs in your editor: it reads your repo, runs tasks, and leaves diffs and logs you can inspect. Watch the demos first, then try the example prompts—larger reference builds are linked where they help.
Debugging & error resolution
Neo traces stack frames and code paths to suggest targeted fixes when an agent or service misbehaves.
“Why is the session token null after the third redirect in auth_middleware.py?”Reference: Code Analysis & Refactoring Agent
Install / open Neo in VS CodeLocal data analysis
EDA on CSV and tabular files stays on your machine—good before you lock in a pipeline or feature store.
“Summarize nulls and outliers in sales_data.csv”Try this in VS CodeRepos & open source
Map issues to files, suggest patches, and onboard faster—the same muscle as large-repo agents.
“What needs to change to close GitHub issue #402?”Reference: GitHub Repo Query Agent
Open in VS CodeML & model development
When the job is data and metrics first—not only prompts—Neo still runs end-to-end ML work: tabular, time series, speech, vision, and training pipelines. Everything stays inspectable in your repo, the same way as agent tasks.
Data Ingestion → Validation → Feature Engineering → Model Training → Evaluation → DeploymentWalkthroughs
Each tile is a full write-up—title on the first line, what you get on the second.
Starter scenarios (order-of-magnitude)
| Scenario | Type | Typical data | Ballpark time |
|---|---|---|---|
| ETA prediction | Tabular / time series | CSV, Parquet | Tens of minutes |
| Fine-tune Whisper | Speech | Audio + transcripts | Hours |
| Sleep stage classification | Biomedical TS | Wearables, EEG | ~30–60 min |
| Network anomaly detection | Security | Multi-source logs | Tens of minutes |
| Churn modeling | Tabular | CRM / transactions | Tens of minutes |
Times depend on data size and hardware. Describe the dataset and target metrics in your task — Neo will align artifacts and reports the same way as for agents.
Best practices
Agent & LLM applications
Define tools and boundaries
Spell out callable tools, side effects, and what requires human approval.
Eval before scale
Ship benchmarks and regression suites alongside the happy path.
Human-in-the-loop for risk
Gate deploys, secrets, and irreversible data operations.
Version prompts like code
Keep prompts, eval sets, and configs in-repo with PR review.