惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
A
About on SuperTechFans
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
MongoDB | Blog
MongoDB | Blog
MyScale Blog
MyScale Blog
aimingoo的专栏
aimingoo的专栏
H
Help Net Security
月光博客
月光博客
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
T
Tailwind CSS Blog
Jina AI
Jina AI
有赞技术团队
有赞技术团队
博客园_首页

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Start an AI Agent Project, Not Just an Agent
Jakub Jabłoński · 2026-06-24 · via DEV Community

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.

What is Eve?

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:

  • Durable sessions. Every conversation is a checkpointed workflow, so a run can pause, survive a crash or a deploy, and pick up where it left off.
  • Per-agent sandboxes. Shell commands, scripts, and file access run in an isolated environment, away from your app runtime.
  • One agent, many channels. Slack, Discord, Teams, Telegram, Twilio, GitHub, and Linear are adapters you opt into, and the same agent serves all of them.

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.

From a scaffold to a project

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.

What the starter adds on top of Eve

The default Eve scaffold covers the essentials. Atlas Eve Starter adds what teams reach for once a project gets serious:

  • a pnpm and Turborepo monorepo for apps and shared packages
  • Biome for formatting and linting, with a pre-commit hook and lint-staged
  • Vitest tests for the deterministic tool and the shared contracts
  • an opt-in Eve eval
  • Renovate for dependency updates
  • a reusable package pattern for schemas and types
  • a custom HTTP channel with validation at the boundary
  • Atlas .ai project context, present from the start

Atlas context from the first commit

Atlas 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.

When to reach for it

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.

Get started

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.