vellum-assistant: Skill for Cursor

.cursor/skills/vellum-boundary-guard/SKILL.md

vellum-boundary-guard is a skill for Cursor from vellum-ai/vellum-assistant. It costs 43 tokens per session (397 once invoked), scanned A, original, MIT.

A set of architecture rules for keeping Vellum's assistant, gateway, client, and skill packages separated.

In plain words
What is it for?
Reviewing imports, moving code, adding endpoints, changing assistant-to-gateway communication, and checking where shared logic or security rules belong.
Why use it?
It prevents code from crossing package boundaries in unsafe ways and keeps communication through the intended interfaces.

Skill for Cursor

Written for Cursor: installed under .cursor/.

This is vellum-ai/vellum-assistant's own configuration. It tells Cursor 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,234 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/.cursor/skills/vellum-boundary-guard/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/vellum-ai/vellum-assistant

Made for: Cursor.

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 vellum-boundary-guard

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/vellum-ai/vellum-assistant/vellum-boundary-guard"><img src="https://agentmods.dev/badge/skills/vellum-ai/vellum-assistant/vellum-boundary-guard.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 397 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.00043 $0.00397
Opus 5 $0.00022 $0.00198
Sonnet 5 $0.00009 $0.00079
Haiku 4.5 $0.00004 $0.00040

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

Security

Grade A, and why

vellum-boundary-guard 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 13d 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.

.cursor/skills/vellum-boundary-guard/SKILL.md · 48 lines

What it actually says

Vellum Boundary Guard

Package Import Boundaries

Enforce these boundaries:

  • assistant/ must not import from gateway/ via relative paths.
  • gateway/ must not import from assistant/ via relative paths.
  • assistant/ and skills/ must not import from each other directly.
  • Runtime code must not import from meta/.
  • Shared cross-package logic belongs in packages/.

For tests that need behavior from another package, mock the boundary instead of importing real handlers.

HTTP And IPC Boundaries

  • Public inbound HTTP endpoints belong in gateway/.
  • New CLI-to-assistant interactions should use Unix socket IPC through the existing IPC route pattern.
  • Events from assistant runtime code should use the assistant event hub rather than new HTTP endpoints when possible.

Security Ownership Boundaries

  • Gateway owns trust rules and gateway security files.
  • CES owns credential files.
  • The assistant must not read gateway-owned directories directly.
  • Clients must not read from the user's ~/.vellum directory.
  • Secrets must not be stored in workspace files.

Skill Boundaries

First-party skills run as separate processes and should communicate through supported contracts. Do not bypass skill isolation with direct relative imports.

Review Workflow

  1. Search changed imports and new route registrations.
  2. Identify any package-crossing dependency.
  3. Decide whether the correct home is a package-local module, a shared packages/ module, IPC, HTTP through gateway, or a skill contract.
  4. If a violation exists, recommend the smallest boundary-preserving move.

Verification

Prefer existing guard tests when available, then add focused tests for any new boundary rule or route pattern.

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. 13d ago First seen · 48 lines · 43 tokens per session scan A a6478f99453e

Subscribe to this mod's changes

vellum-boundary-guard is a skill published in the GitHub repository vellum-ai/vellum-assistant (1,234 stars, last pushed today), licensed MIT. It adds 43 tokens to every session and 397 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

bootstrap-repo-analysis

First-time analysis of a repository with no prior reviewer outcomes. Crawl historical merged-PR review feedback with the gh CLI (plus any preloaded samples), extract the team's review norms, and synthesize the initial per-repo review-style prompt. Use this for a cold-start repo; use continual-learning instead once the…

langchain-ai/open-swe · 73 tokens

continual-learning

Nightly refinement of an existing per-repo review-style prompt using this reviewer's own finding outcomes. Read confirmed (resolved-by-commit / thumbs-up) and dismissed (thumbs-down) findings, promote the bug patterns the team actually fixes, demote the false-positive patterns, reconcile against the current prompt…

langchain-ai/open-swe · 89 tokens

oracle

Oracle second-model review: bundle prompts/files, debug, refactor, design.

steipete/oracle · 18 tokens

verify-implementation

A workflow that runs a project’s verification skills to produce a report on coding patterns, architecture rules, and project conventions. It is intended for work after implementation, before a pull request, or during code review.

sangrokjung/claude-forge · 37 tokens

review-loop

Run the adversarial verification loop — implement, then hand the change to a fresh checker that did not write it, fix what it finds, and re-dispatch until APPROVE. Use before claiming any behavioural change is done, and on requests like "review loop", "adversarial review", "independent review", "get this verified"…

sangrokjung/claude-forge · 100 tokens

frontend-code-review

Trigger when the user requests a review of frontend files (e.g., .tsx, .ts, .js). Support both pending-change reviews and focused file reviews while applying the checklist rules.

sangrokjung/claude-forge · 42 tokens