vellum-assistant: Skill for Claude Code

.claude/skills/vellum-skills/e2e/SKILL.md

e2e is a skill for Claude Code from vellum-ai/vellum-assistant. It costs 14 tokens per session (638 once invoked), scanned A, original, MIT.

A command for starting Vellum's end-to-end tests through the continuous-integration workflow. End-to-end tests check a feature across the complete system rather than only one part.

In plain words
What is it for?
Running all end-to-end tests or targeting a case such as phone setup, optionally using a specific branch, Xcode runner, or detached mode.
Why use it?
It handles branch selection, experimental-test settings, test filters, and optional runner or background options for you.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

This is vellum-ai/vellum-assistant's own configuration. It tells Claude Code how to work on vellum-assistant itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything vellum-assistant configures →

About the project

Vellum Assistant is a personal AI assistant that remembers information about users, learns their preferences, and takes actions across connected apps. It is intended for people who want an assistant that can manage conversations, unfinished work, and proactive notifications over time. The catalogue skills, hooks, instruction, and setting configure or extend how the assistant works.

vellum-ai/vellum-assistant · 1,214 stars · on GitHub · vellum.ai

Reuse

Borrowing it

Nothing to install: this file belongs to vellum-ai/vellum-assistant. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/vellum-ai/vellum-assistant/main/.claude/skills/vellum-skills/e2e/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/vellum-ai/vellum-assistant

Made for: Claude Code.

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 e2e

README.md
[![agentmods](https://agentmods.dev/badge/skills/vellum-ai/vellum-assistant/e2e/github.svg)](https://agentmods.dev/skills/vellum-ai/vellum-assistant/e2e)
Your own site
<a href="https://agentmods.dev/skills/vellum-ai/vellum-assistant/e2e"><img src="https://agentmods.dev/badge/skills/vellum-ai/vellum-assistant/e2e/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 e2e

Your own site · 80×15
<a href="https://agentmods.dev/skills/vellum-ai/vellum-assistant/e2e"><img src="https://agentmods.dev/badge/skills/vellum-ai/vellum-assistant/e2e.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 638 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 pass 7 Sept 2026
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.00014 $0.00638
Opus 5 $0.00007 $0.00319
Sonnet 5 $0.00003 $0.00128
Haiku 4.5 $0.00001 $0.00064

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

Security

Grade A, and why

e2e 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.

.claude/skills/vellum-skills/e2e/SKILL.md · 57 lines

How it starts

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

Run end-to-end tests via the CI workflow.

The user may pass $ARGUMENTS to filter to a specific test case by name (e.g., hello-world, phone-setup). If not provided, infer options from context (see below).

Steps

1. Determine options

Experimental tests: Always include --experimental by default. The user can pass --no-experimental to exclude them.

Branch detection: Check what branch you're on via git branch --show-current. If you're on a branch other than main, automatically pass -b <branch-name> so the CI run tests against that branch. The user can override with -b <other-branch> explicitly.

Test case filter: Determine which test case to target:

  1. If the user passes a bare word argument (e.g., phone-setup), use that as the filter.
  2. Otherwise, look at the conversational context - if you've been working on or discussing a specific e2e test case (e.g., editing playwright/cases/phone-setup.md), automatically target that test case.
  3. If neither applies, run all tests.

Additional flags from $ARGUMENTS:

  • --xcode uses the agent-xcode (AXUIElement) runner
  • -d or --detach triggers the run and exits without polling
  • --no-experimental overrides the default and excludes experimental tests

2. Trigger the CI run

cd playwright && bun run scripts/agent-ci.ts <options>

Map the resolved options:

  • Test case filter: -t <case-name>
  • Experimental (default on): --experimental
  • Branch: -b <branch-name>
  • Xcode runner: --xcode
  • Detach mode: -d

Examples:

  • /e2e (on main, no context) → bun run scripts/agent-ci.ts --experimental
  • /e2e (on branch feat/phone, after editing phone-setup.md) → bun run scripts/agent-ci.ts --experimental -b feat/phone -t phone-setup
  • /e2e hello-world (on main) → bun run scripts/agent-ci.ts --experimental -t hello-world
  • /e2e --detach (on branch fix/bug) → bun run scripts/agent-ci.ts --experimental -b fix/bug -d
  • /e2e --no-experimentalbun run scripts/agent-ci.ts

Read the full file on GitHub · 57 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 · 57 lines · 14 tokens per session scan A 019129eff285

Subscribe to this mod's changes

e2e is a skill published in the GitHub repository vellum-ai/vellum-assistant (1,214 stars, last pushed today), licensed MIT. It adds 14 tokens to every session and 638 once invoked, about $0.0001 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

ci-all

Full CI pipeline: run local tests, type check, push branch, and return the pipeline URL. The only command you need before opening a PR.

FlorianBruniaux/claude-code-ultimate-guide · 33 tokens

chaos-experiment

Design and document chaos engineering experiments. Guide steady state baseline, hypothesis formation, failure injection plans, and results analysis. Use when you say "design a chaos experiment", "plan a game day", "failure injection", "test resilience", or "chaos engineering". Do NOT use for security threat analysis…

rjmurillo/ai-agents · 84 tokens

api-integration-test

Create, maintain, and run gated Go integration tests for internal APIs and service-to-service clients (HTTP/gRPC). Use for endpoint verification, contract checks with real runtime config, opt-in execution, timeout/retry safety, and integration failure triage in Go services.

johnqtcg/awesome-skills · 58 tokens

e2e-test

Design, maintain, and execute reliable end-to-end tests for critical user journeys with Agent Browser as first choice for exploration and Playwright as the preferred code path for suites and CI. Use for E2E strategy, journey coverage, flaky test triage, artifact collection, CI gating, regression prevention, and…

johnqtcg/awesome-skills · 70 tokens

self-testing

E2E self-testing workflow for vibing.nvim using a separate Neovim instance controlled over RPC. Use when writing or debugging E2E tests, running npm run test:e2e, or executing the 3-try auto-fix rule after implementing a feature. Covers the…

shabaraba/vibing.nvim · 105 tokens

test-design

Automatically design comprehensive E2E test cases for newly implemented vibing.nvim features. Use immediately after completing feature implementation (Phase 5.4) and before running E2E tests. Generates test scenarios covering Happy paths, Error cases, Edge cases, and Integration points with priority ranking…

shabaraba/vibing.nvim · 82 tokens