{"id":50917580,"url":"https://github.com/vercel/eve","last_synced_at":"2026-06-19T20:00:59.136Z","repository":{"id":365240726,"uuid":"1271113810","full_name":"vercel/eve","owner":"vercel","description":"The Framework for Building Agents","archived":false,"fork":false,"pushed_at":"2026-06-18T19:22:14.000Z","size":2935,"stargazers_count":1290,"open_issues_count":32,"forks_count":73,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-06-18T19:27:42.427Z","etag":null,"topics":["agent","framework","harness","javascript","markdown","sandbox","typescript","vercel","workflows"],"latest_commit_sha":null,"homepage":"https://vercel.com/eve","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vercel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":"NOTICE","maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":"DCO.txt","cla":null}},"created_at":"2026-06-16T10:51:20.000Z","updated_at":"2026-06-18T19:27:19.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/vercel/eve","commit_stats":null,"previous_names":["vercel/eve"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/vercel/eve","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vercel%2Feve","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vercel%2Feve/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vercel%2Feve/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vercel%2Feve/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vercel","download_url":"https://codeload.github.com/vercel/eve/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vercel%2Feve/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34546199,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-19T02:00:06.005Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agent","framework","harness","javascript","markdown","sandbox","typescript","vercel","workflows"],"created_at":"2026-06-16T17:01:09.593Z","updated_at":"2026-06-19T20:00:59.055Z","avatar_url":"https://github.com/vercel.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://github.com/vercel/eve\"\u003e\n    \u003cpicture\u003e\n      \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\".github/assets/eve.svg\"\u003e\n      \u003cimg alt=\"eve logo\" src=\".github/assets/eve.svg\" height=\"128\"\u003e\n    \u003c/picture\u003e\n  \u003c/a\u003e\n  \u003ch1\u003eeve\u003c/h1\u003e\n\n\u003ca href=\"https://vercel.com\"\u003e\u003cimg alt=\"Vercel logo\" src=\"https://img.shields.io/badge/MADE%20BY%20Vercel-000000.svg?style=for-the-badge\u0026logo=Vercel\u0026labelColor=000\"\u003e\u003c/a\u003e\n\u003ca href=\"https://www.npmjs.com/package/eve\"\u003e\u003cimg alt=\"NPM version\" src=\"https://img.shields.io/npm/v/eve.svg?style=for-the-badge\u0026labelColor=000000\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/vercel/eve/blob/main/LICENSE\"\u003e\u003cimg alt=\"License\" src=\"https://img.shields.io/npm/l/eve.svg?style=for-the-badge\u0026labelColor=000000\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/vercel/eve/discussions\"\u003e\u003cimg alt=\"Join the community on GitHub\" src=\"https://img.shields.io/badge/Join%20the%20community-blueviolet.svg?style=for-the-badge\u0026logo=Github\u0026labelColor=000000\u0026logoWidth=20\"\u003e\u003c/a\u003e\n\n\u003c/div\u003e\n\neve is a filesystem-first framework for durable AI agents. Core agent capabilities live in\nconventional locations, so projects are easier to inspect, extend, and operate.\n\n## The filesystem is the authoring interface\n\nA typical eve agent has this structure:\n\n```text\nmy-agent/\n└── agent/\n    ├── agent.ts            # Optional: model and runtime config\n    ├── instructions.md     # Required: the always-on system prompt\n    ├── tools/              # Optional: typed functions the model can call\n    │   └── get_weather.ts\n    ├── skills/             # Optional: procedures loaded on demand\n    │   └── plan_a_trip.md\n    ├── channels/           # Optional: message channels (HTTP, Slack, Discord)\n    │   └── slack.ts\n    └── schedules/          # Optional: recurring cron jobs\n        └── weekly_recap.ts\n```\n\nRead the [documentation](https://beta.eve.dev/docs) for the full project layout and guides.\n\n## Quick start\n\n```bash\nnpx eve@latest init my-agent\n```\n\nThis creates a new `my-agent` directory, installs its dependencies, initializes Git, and starts\nthe interactive terminal UI.\n\nTo add eve to an existing project, pass a path:\n\n```bash\ncd myapp\nnpx eve@latest init .\n```\n\n\u003e [!NOTE]\n\u003e The `eve` package includes its full documentation, so coding agents can read it locally from\n\u003e `node_modules/eve/docs`.\n\n### A minimal example\n\nThe generated project includes an `agent` directory. Replace `agent/instructions.md` with:\n\n```md\nYou are a concise weather demo assistant. Tell users that the weather data is mocked.\n```\n\nAdd a mock weather tool at `agent/tools/get_weather.ts`:\n\n```ts\nimport { defineTool } from \"eve/tools\";\nimport { z } from \"zod\";\n\nexport default defineTool({\n  description: \"Return mock weather data for a city.\",\n  inputSchema: z.object({ city: z.string().min(1) }),\n  async execute({ city }) {\n    return { city, condition: \"Sunny\", temperatureF: 72 };\n  },\n});\n```\n\nChoose the model in `agent/agent.ts`:\n\n```ts\nimport { defineAgent } from \"eve\";\n\nexport default defineAgent({\n  model: \"anthropic/claude-sonnet-4.6\",\n});\n```\n\nFor a new scaffold, start the agent again:\n\n```bash\nnpm run dev\n```\n\nThat's a working agent. Add human-in-the-loop prompts, subagents, and schedules as needed.\nFollow the [first-agent tutorial](https://beta.eve.dev/docs/tutorial/first-agent) for a complete\nwalkthrough.\n\n## Community\n\nThe eve community lives on [GitHub Discussions](https://github.com/vercel/eve/discussions),\nwhere you can ask questions, share ideas, and show what you've built.\n\n## Contributing\n\nContributions are welcome. See [CONTRIBUTING.md](CONTRIBUTING.md) to get the repo\nrunning locally and land a change, and use\n[issues](https://github.com/vercel/eve/issues) and\n[discussions](https://github.com/vercel/eve/discussions) to collaborate. By\nparticipating, you agree to our [Code of Conduct](CODE_OF_CONDUCT.md).\n\n## Security\n\nPlease do not open public issues for security vulnerabilities. Instead, follow\n[SECURITY.md](SECURITY.md) and report responsibly to\n[responsible.disclosure@vercel.com](mailto:responsible.disclosure@vercel.com).\n\n## Beta terms\n\neve is currently in beta and subject to the [Vercel beta terms](https://vercel.com/docs/release-phases/public-beta-agreement);\nthe framework, APIs, documentation, and behavior may change before general availability.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvercel%2Feve","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvercel%2Feve","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvercel%2Feve/lists"}