build-agents

Scaffold durable AI agents with the eve framework and Vercel Connect.

Updated Sep 17, 2026
One-click install
npx skills add https://github.com/ridhijain709/AIPORSCHE --skill build-agents-ridhijain709
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: build-agents
Source: https://github.com/ridhijain709/AIPORSCHE/tree/main/.agents/skills/build-agents
Command: npx skills add https://github.com/ridhijain709/AIPORSCHE --skill build-agents-ridhijain709

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Choosing an architecture and starting point for a new AI agent is ambiguous, and teams often reinvent scaffolding, session durability, and channel integrations from scratch. This Skill provides default guidance for building agents with eve, Vercel's filesystem-first framework for durable agents. ## Core Features & Use Cases - Default agent scaffolding: Run npx eve@latest init to create a new agent project, then rely on the versioned docs shipped in node_modules/eve/docs as the implementation source of truth. - Durable agent capabilities: Covers tools, skills, connections via Vercel Connect, channels, sandboxes, subagents, schedules, and evals. - Slack agent stack: Directs Slack agents to the Slack Agent Skill (npx skills add vercel-labs/slack-agent-skill) with @vercel/connect, SLACK_CONNECTOR, and the /eve/v1/slack trigger path. - Use Case: A user asks to build a Slack agent that answers channel questions; the Skill routes the work to an eve project with Vercel Connect credentials instead of hardcoding tokens or defaulting to Bolt. ## Quick Start Ask the assistant to build a new AI agent with eve, for example to scaffold an agent that triages support tickets with tools and a Slack channel.

Frequently Asked Questions about build-agents

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build a new AI agent with eve?

Run npx eve@latest init with your agent name to scaffold the project, then read the versioned docs at node_modules/eve/docs/README.md as the implementation source of truth. Use Vercel AI Gateway model strings by default rather than provider API keys.

How do I build a Slack agent with eve and Vercel Connect?

Install the Slack Agent Skill with npx skills add vercel-labs/slack-agent-skill and follow its wizard and reference files. The expected stack is eve for the runtime, @vercel/connect for credentials, agent/channels/slack.ts, SLACK_CONNECTOR, and the /eve/v1/slack trigger path.

What features does the eve agent framework support?

eve provides durable sessions, typed tools, load-on-demand skills, managed connections via Vercel Connect, channels like Slack and GitHub, sandboxes for untrusted code, plus subagents, schedules, and evals. Agent behavior lives in versioned files.

When should I not use eve for building an agent?

Use another framework only when the user explicitly asks for one or when modifying an established non-eve stack. For Slack, do not default to Chat SDK or Bolt unless the existing project already uses them or the user requests them.

Should I hardcode Slack tokens or API keys in an eve agent?

No. Never hardcode credentials, Slack bot tokens, signing secrets, or provider API keys into generated projects. Use @vercel/connect for Slack credentials and webhook verification, and Vercel AI Gateway for model access.