integration

integration is a skill for Claude Code from Elnora-AI/elnora-ai-agent-hackathon-starter-kit. It costs 36 tokens per session (1,076 once invoked), scanned A, original, Apache-2.0.

A workflow for finding and adding Vercel Marketplace integrations, which are third-party services such as databases, authentication, logging, and monitoring. It also covers checking the project and account before installation.

In plain words
What is it for?
Use it to discover available integrations, install a service or a specific product, provide setup metadata such as a region, and verify the Vercel environment.
Why use it?
Adding external services can require discovery, correct project linking, and environment-variable setup. This workflow puts those checks and installation commands in one process.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the vercel plugin — 5 skills, 5 commands shipped together

Good fit Use it to discover available integrations, install a service or a specific product, provide setup metadata such as a region, and verify the Vercel environment.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/elnora-ai/elnora-ai-agent-hackathon-starter-kit/integration
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Elnora-AI/elnora-ai-agent-hackathon-starter-kit --skill integration
Clone the repo
git clone --depth 1 https://github.com/Elnora-AI/elnora-ai-agent-hackathon-starter-kit

Made for: Claude Code.

Or install vercel, the plugin that ships this one along with the rest of its 5 skills, 5 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for integration

README.md
[![agentmods](https://agentmods.dev/badge/skills/elnora-ai/elnora-ai-agent-hackathon-starter-kit/integration/github.svg)](https://agentmods.dev/skills/elnora-ai/elnora-ai-agent-hackathon-starter-kit/integration)
Your own site
<a href="https://agentmods.dev/skills/elnora-ai/elnora-ai-agent-hackathon-starter-kit/integration"><img src="https://agentmods.dev/badge/skills/elnora-ai/elnora-ai-agent-hackathon-starter-kit/integration/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for integration

Your own site · 80×15
<a href="https://agentmods.dev/skills/elnora-ai/elnora-ai-agent-hackathon-starter-kit/integration"><img src="https://agentmods.dev/badge/skills/elnora-ai/elnora-ai-agent-hackathon-starter-kit/integration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,076 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 103
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00036 $0.01076
Opus 5 $0.00018 $0.00538
Sonnet 5 $0.00007 $0.00215
Haiku 4.5 $0.00004 $0.00108

Measured 9d ago against content hash feb327cbf5f2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

integration scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/vercel/skills/integration/SKILL.md · 145 lines

How it starts

The opening of the file, as written. The whole thing — 145 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Vercel Integrations

Discover, install, and get setup guides for Vercel Marketplace integrations. Integrations provision third-party services (databases, auth, logging, etc.) and automatically inject environment variables into your project.

Prerequisites

  1. Check Vercel CLI is installed (needs latest for integration commands):

    vercel --version
    

    If missing or outdated: npm i -g vercel@latest

  2. Check project is linked:

    ls .vercel/project.json 2>/dev/null || ls .vercel/repo.json 2>/dev/null || echo "NOT LINKED"
    

    If not linked, run the setup skill first.

  3. Check correct team:

    vercel whoami
    

Discover Available Integrations

vercel integration discover --format=json

Use --format=json for agent-parseable output. Categories include: AI, Analytics, Authentication, CMS, Databases, Logging, Monitoring, Storage, and more.

Install an Integration

# Basic install — provisions resource and injects env vars
vercel integration add <slug> --format=json

# Specific product (multi-product integrations like Upstash)
vercel integration add <slug>/<product> --format=json

# With metadata (e.g., region selection)
vercel integration add <slug> -m primaryRegion=iad1 --format=json

# Custom resource name
vercel integration add <slug> --name my-db --format=json

# Specific environment(s)
vercel integration add <slug> -e production -e preview --format=json

# Specific billing plan
vercel integration add <slug> --plan <plan-id> --format=json

Browser fallback: The CLI may open a browser for first-time terms acceptance. It polls and resumes automatically — do not kill the process. Inform the user if this happens.

Get Setup Guide

# General setup guide (returns agent-friendly markdown)
vercel integration guide <slug>

# Framework-specific guide
vercel integration guide <slug> --framework nextjs

The guide contains code snippets and configuration steps. Use this after installing to configure the project.

Read the full file on GitHub · 145 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 145 lines · 36 tokens per session scan A feb327cbf5f2

Subscribe to this mod's changes

integration is a skill published in the GitHub repository Elnora-AI/elnora-ai-agent-hackathon-starter-kit (22 stars, last pushed 2d ago), licensed Apache-2.0. It adds 36 tokens to every session and 1,076 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

merge-seed

Merge upstream React Starter Kit updates (the seed remote) into main, preserving this project's identity, scope, and behavior. Use when asked to sync, pull, or merge the seed / starter kit / upstream template.

kriasoft/react-starter-kit · 49 tokens

vite-tunnel

A guide for exposing a local Vite development server through a Cloudflare Named Tunnel, giving it a stable public web address.

YuDefine/nuxt-supabase-starter · 27 tokens

shadcn

Manages shadcn components and projects — adding, searching, fixing, debugging, styling, and composing UI, including chat interfaces. Provides project context, component docs, and usage examples. Applies when working with shadcn/ui, component registries, presets, --preset codes, or any project with a components.json…

kriasoft/react-starter-kit · 94 tokens

deploy-to-vercel

Deploy applications and websites to Vercel. Use when the user requests deployment actions like "deploy my app", "deploy and give me the link", "push this live", or "create a preview deployment".

ever-works/directory-web-template · 47 tokens

gke-compute-classes

Configures, optimizes, and troubleshoots GKE ComputeClasses. Use when configuring Spot VMs with on-demand fallback, targeting specific accelerators (GPUs/TPUs) or machine families, restricting ComputeClass access, or debugging pending pods related to node pool auto-creation. Do not use for cluster-level Node Auto…

google/skills · 83 tokens

gke-reliability

Improves GKE workload reliability, using PDBs, health probes, and topology spread constraints. Use when configuring GKE workload reliability, setting up PDBs, or configuring GKE health probes (liveness, readiness, startup). Don't use for disaster recovery setup or full cluster backups (use gke-backup-dr instead).

google/skills · 73 tokens