Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apps/docs/app/[lang]/templates/[slug]/file-viewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ interface CategoryStyle {
const categoryStyles: Record<string, CategoryStyle> = {
"agent.ts": { icon: SettingsIcon },
"instructions.md": { icon: FileTextIcon },
"instructions.ts": { icon: FileTextIcon },
channels: { icon: MessageSquareIcon },
connections: { icon: PlugIcon },
skills: { icon: FileTextIcon },
Expand All @@ -44,6 +45,7 @@ const defaultStyle: CategoryStyle = { icon: FileTextIcon };
const categoryOrder = [
"agent.ts",
"instructions.md",
"instructions.ts",
"channels",
"connections",
"skills",
Expand Down
14 changes: 13 additions & 1 deletion apps/docs/app/[lang]/templates/integration-icons.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,26 @@
import { BracesIcon } from "lucide-react";
import type { ComponentType, SVGProps } from "react";
import { linearLogo, notionLogo, sentryLogo, slackLogo, webLogo } from "@/lib/integrations/logos";
import {
githubLogo,
linearLogo,
notionLogo,
nuxtLogo,
sendblueLogo,
sentryLogo,
slackLogo,
webLogo,
} from "@/lib/integrations/logos";
import type { TemplateIntegration } from "@/lib/templates/data";

type IconComponent = ComponentType<SVGProps<SVGSVGElement>>;

export const integrationIcons: Record<TemplateIntegration, IconComponent> = {
GitHub: githubLogo,
"HTTP API": BracesIcon,
Linear: linearLogo,
Notion: notionLogo,
Nuxt: nuxtLogo,
Sendblue: sendblueLogo,
Sentry: sentryLogo,
Slack: slackLogo,
"Web chat": webLogo,
Expand Down
3 changes: 3 additions & 0 deletions apps/docs/lib/integrations/logos.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import {
SiMixpanel,
SiNetlify,
SiNotion,
SiNuxt,
SiOreilly,
SiPlanetscale,
SiPosthog,
Expand Down Expand Up @@ -220,6 +221,8 @@ export const mixpanelLogo = (props: LogoProps) => <SiMixpanel color="default" {.

export const netlifyLogo = (props: LogoProps) => <SiNetlify color="default" {...props} />;

export const nuxtLogo = (props: LogoProps) => <SiNuxt {...props} />;

export const oreillyLogo = (props: LogoProps) => <SiOreilly color="default" {...props} />;

export const planetscaleLogo = (props: LogoProps) => <SiPlanetscale {...props} />;
Expand Down
18 changes: 18 additions & 0 deletions apps/docs/lib/templates/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@ export type TemplateCategory = "Chat" | "Collaboration" | "Example";
import { templateSourceFiles } from "./sources";

export type TemplateIntegration =
| "GitHub"
| "HTTP API"
| "Linear"
| "Notion"
| "Nuxt"
| "Sendblue"
| "Sentry"
| "Slack"
| "Web chat";
Expand Down Expand Up @@ -76,6 +79,21 @@ export const templateEntries: TemplateEntry[] = [
source: "Vercel Templates",
files: templateSourceFiles["eve-slack-agent"],
},
{
slug: "personal-agent",
title: "Personal",
setupPrompt:
"Set up the eve personal agent template in my current workspace using https://github.com/vercel-labs/personal-agent-template/tree/main as the source. Copy the project files, install its dependencies, and follow the repository README and docs/ENVIRONMENT.md to configure it, including the Nuxt web app, the Slack and Sendblue channels, and the GitHub and Linear connections. Preserve the existing project if the workspace is not empty, and tell me about any required environment variables or manual setup steps.",
description:
"A personal assistant you reach from web chat, Slack, or iMessage, with long-term memory it only saves once you approve, plus GitHub and Linear on tap.",
sourceHref: "https://github.com/vercel-labs/personal-agent-template/tree/main",
sourceRevision: "ec986e56130167ccf0017000380735e65882849c",
category: "Chat",
model: "anthropic/claude-sonnet-4.6",
integrations: ["Web chat", "Nuxt", "Slack", "Sendblue", "GitHub", "Linear"],
source: "Vercel Templates",
files: templateSourceFiles["personal-agent"],
},
{
slug: "weather-agent-fixture",
title: "Weather",
Expand Down
Loading