Skip to main content
reopt Handbook
reopt Handbook
Enterprise Eve Agent Development

Core Architecture

Ch1. Eve Mental ModelCh2. Source Code AtlasCh3. Project Layout and DiscoveryCh4. Compiler and Runtime Graph

Agent Quality Design

Ch5. agent.ts, Models, CompactionCh6. Context, Skills, Dynamic CapabilitiesCh7. Tools, Approval, ConnectionsCh8. Sandbox Secure Runtime

Operational Runtime

Ch9. Channels, Auth, StreamingCh10. Subagents, Workflows, Remote AgentsCh11. Schedules, State, HooksCh12. Evals and Quality Gates

Production Operations

Ch13. Observability and DeploymentCh14. Enterprise PatternsCh15. Migration and Governance

Appendix

Official Docs CrosswalkVerification ReportUpdates
Handbook›엔터프라이즈 Eve 에이전트›Ch14. Enterprise Patterns
한국어English

Ch14. Enterprise Patterns

Combine Eve features into support, research, code, back-office, analytics, and incident-response agent patterns.

Key takeaways

  • Enterprise Eve patterns should be classified by authority, context, tools, sandbox posture, and eval gates.
  • Support, research, code, back-office, analytics, and incident-response agents need different approval and sandbox policies.
  • Reusable patterns reduce design time and make governance reviews repeatable.

This chapter translates Eve capabilities into common enterprise agent patterns.

Pattern 1. Customer Support Agent

Goal: answer customer questions, create tickets, escalate risky changes.

SurfaceDesign
instructionssupport tone, escalation rules
skillsrefund policy, SLA playbook
connectionsCRM, ticketing, docs
toolsread profile, create ticket
approvalrefund, account change
hooksaudit customer-impacting actions
evalsno PII leak, correct escalation

Read tools and write tools should be separate. Writes need approval and an audit trail.

Pattern 2. Internal Research Agent

SurfaceDesign
instructionscite sources, distinguish fact from inference
skillsresearch method, report format
connectionsdocs, warehouse, GitHub
sandboxanalysis workspace
subagentssource gatherer, critic
evalscitation discipline, no unsupported claims

Use sandbox files for large evidence and summaries. Avoid dumping all context into prompts.

Pattern 3. Code Work Agent

SurfaceDesign
sandboxrepo checkout and command execution
toolslimited deployment or PR actions
approvaldestructive commands and deploys
hookscommand/action audit
evalsno unapproved deploy, patch quality

Separate "generate code" from "perform external write."

Pattern 4. Approval-based Back-office Automation

Workflow:

  1. collect request
  2. validate input
  3. compute risk
  4. ask for approval
  5. execute with idempotency key
  6. write audit ledger
SurfaceUse
outputSchemarisk and approval requirements
toolspreview and execute separated
approvalexecute tool always gated
hooksledger
evalspark before write

Pattern 5. Data Analysis Agent

SurfaceDesign
connectionswarehouse MCP/OAuth
sandboxcharts, notebooks, file artifacts
skillsanalysis method
approvalexpensive or export queries
statemetric definitions
evalsquery safety and result shape

Keep credentials in connections. Use sandbox for computation and charting, not token storage.

Pattern 6. Incident Response Agent

SurfaceDesign
channelsSlack, Linear, GitHub, custom incident webhook
schedulesheartbeat and stale incident sweep
toolsread logs, create issue, propose rollback
approvalproduction-impacting action
subagentsinvestigator, comms drafter, reviewer
evalsseverity classification and no unauthorized action

Incident agents invite over-automation. Production-impacting actions still need ownership checks and approval.

Common Architecture

Capability Design Matrix

CapabilityEve surfaceControl
stable behaviorinstructionsprompt review and eval
long proceduresskillssource and version
external readconnection/toolleast-privilege token
external writetoolapproval and idempotency
file/code worksandboxnetwork and retention
delegationsubagentoutput schema and authority split
background workschedulesidempotency and alerts
audithooksredaction and durable store

Operating Template

For each agent pattern, document:

QuestionArtifact
Who owns the agent?owner record
What data does it access?data flow map
Which actions require approval?approval policy
What can the model see?context map
What can run in sandbox?sandbox policy
Which evals block release?eval gate
How do we roll back?runbook

Related docs

Ch15. Migration and Governance

Migrate existing agents into Eve and establish enterprise governance for agent portfolios.

Ch1. Eve Mental Model

Understand Eve as filesystem authoring, durable workflow execution, runtime harness, and channel protocol.

Approvals

Advanced Codex Usage · Design approval and sandbox policies for safe Codex autonomy.

Sandbox Tool Runtime

Vercel Enterprise AI Platform · Isolate code, file, browser, and shell execution for AI agents.

Runbooks and Operations

Agentic Documentation · Design runbooks that separate diagnosis, recommendation, action, approval, and rollback.

Ch13. Observability and Deployment

Operate Eve with OpenTelemetry, Workflow tags, deployment checklists, health checks, and production runbooks.

Ch15. Migration and Governance

Migrate existing agents into Eve and establish enterprise governance for agent portfolios.

On this page

Pattern 1. Customer Support AgentPattern 2. Internal Research AgentPattern 3. Code Work AgentPattern 4. Approval-based Back-office AutomationPattern 5. Data Analysis AgentPattern 6. Incident Response AgentCommon ArchitectureCapability Design MatrixOperating Template