Starting an AI agent is easy. The hard part is what comes after: iterating on it in production without the whole thing turning into a mess.
Requirements that belong in code leak into prompts. Shared types get copied between files. And when something breaks, debugging is rough, because nothing separates what the model decided from what your code actually did.
Atlas Eve Starter is a public GitHub template that hands you a project shape before any of that sets in. The short version: the default Eve scaffold helps you start an agent; this starter helps you start an agent project.
It keeps the Eve app small and replaceable, then wraps it in the engineering defaults you would add yourself a week later anyway: a pnpm monorepo, formatting and linting, tests, dependency maintenance, and Atlas AI context for the people and coding agents working in the repo.
Eve is Vercel's open-source, filesystem-first framework for durable backend AI agents. Instead of one large configuration object, you describe an agent as a directory of files: instructions in Markdown, deterministic behavior in typed tools, ingress surfaces in channels, and evals next to the code they check. Eve discovers those files and compiles them into an app.
That layout is the point. Real agents have to be inspected, reviewed, tested, and changed over time, and a folder of small files is much easier to reason about than a monolithic config.
What you get from Eve is more than a chat loop:
In practice, that means ops bots that live in Slack, GitHub and Linear automations, and webhook-driven backend agents: long-running work where "it crashed halfway through" is not an acceptable outcome.
The default scaffold is deliberately minimal: an agent file, a channel, instructions, and TypeScript setup. That's the right way to learn the framework. Atlas Eve Starter picks up at the next step, when you already suspect the agent will end up inside a real product.
Here is the shape the starter gives you:
atlas-eve-starter/
ββ apps/
β ββ example-agent/
β ββ agent/
β β ββ agent.ts # root agent config
β β ββ instructions.md # system prompt
β β ββ tools/echo.ts # typed tool
β β ββ channels/http.ts # custom HTTP ingress with input validation
β ββ evals/example.eval.ts # opt-in smoke eval
β ββ tests/echo.test.ts # plain unit test for the tool
ββ packages/
β ββ example/ # shared Zod contracts (no Eve dependency)
ββ .ai/ # Atlas: memory, skills, decisions, plans, vocabulary
The example app is intentionally domain-neutral and not meant to be a finished product.
The boundary between model-guided behavior and deterministic code is already in place. The app is a shell, but it hands you the structure and building blocks to expand into something functional.
Shared contracts live in their own package, with no dependency on Eve:
// packages/example/src/index.ts
export const exampleRequestSchema = z.object({
message: z.string().trim().min(1, "Message must not be empty."),
});
export type ExampleRequest = z.infer<typeof exampleRequestSchema>;
A tool imports that contract and stays an ordinary, testable function, with no model in the loop:
// apps/example-agent/agent/tools/echo.ts
export function createEchoResponse(request: ExampleRequest): ExampleResponse {
return {
echoedMessage: request.message,
messageLength: request.message.length,
};
}
export default defineTool({
inputSchema: exampleRequestSchema,
execute(input) {
return createEchoResponse(input);
},
});
And the channel validates input at the edge, before anything reaches the agent:
// apps/example-agent/agent/channels/http.ts
POST("/echo", async (req, { send }) => {
const body = await req.json().catch(() => ({}));
const parsed = exampleRequestSchema.safeParse(body);
if (!parsed.success) {
return Response.json(
{ error: "Invalid example request.", issues: parsed.error.issues },
{ status: 400 },
);
}
// valid input β hand the message off to the agent
});
The same Zod schema backs the package, the tool, and the channel. You can unit-test the deterministic parts directly while the model handles only the model-shaped work. That is what makes the project easier to review, and to debug when something goes wrong.
The default Eve scaffold covers the essentials. Atlas Eve Starter adds what teams reach for once a project gets serious:
.ai
project context, present from the startAtlas is Blazity's framework-agnostic AI engineering scaffold. In this starter it gives the repo a shared memory layer that people and coding agents both read from: project vocabulary, architecture and stack notes, artifact paths, and repo-local skills for creating or auditing Eve agent changes.
The practical effect is that a coding agent dropped into the project does not have to guess from filenames. It can read the rules first: what the starter is for, which files define agent behavior, where shared contracts belong, which checks are safe to run, and which model-backed checks are opt-in. If your team works with AI coding tools, that context takes a lot of ambiguity out of review.
Use Atlas Eve Starter when you want to evaluate Eve with a clean project structure, keep prompt behavior separate from deterministic code, and give reviewers and coding agents clear boundaries from the start. It is more structure than a throwaway demo needs. If the agent might become part of a product, that structure pays for itself quickly.
The template is on GitHub: github.com/Blazity/atlas-eve-starter. Create a repo from the template, then:
pnpm install
pnpm --filter @repo/example-agent dev
pnpm check && pnpm typecheck && pnpm test
From there, replace the example app with your own behavior and keep the boundaries explicit from the first commit. That's how we build Eve agents at Blazity: clear structure, typed contracts, reviewable behavior, and AI context that helps the next contributor, human or otherwise, get up to speed faster.