vellum-user-facing-copy
This skill reviews user-facing text across Vellum Assistant projects, including documentation, CLI output, UI strings, and release notes. Use it when editing any content that end users or maintainers may read, ensuring consistent terminology (favoring "assistant" over internal terms like "daemon"), removing personal data from examples, keeping error messages clear and actionable, and verifying that documented features are generally available rather than feature-flagged or in rollout phases.
git clone --depth 1 https://github.com/vellum-ai/vellum-assistant /tmp/vellum-user-facing-copy && cp -r /tmp/vellum-user-facing-copy/.cursor/skills/vellum-user-facing-copy ~/.claude/skills/vellum-user-facing-copySKILL.md
# Vellum User-Facing Copy ## Terminology Use "assistant" in user-facing text. "Daemon" is an internal implementation detail and should only appear in internal code, internal comments, file paths, or architecture explanations intended for maintainers. When unsure, ask: would a user ever read this? If yes, say "assistant". ## Generic Examples Never include real personal data in examples, fixtures, tests, docs, or commit messages. Use: - Names: `Alice`, `Bob`, `Example User` - Emails: `user@example.com`, `alice@example.org` - Phone numbers: `555-0100` through `555-0199` - IDs: `user-123`, `org-abc`, `conv-xyz` Avoid real names, personal emails, real phone numbers, account IDs, tokens, or private workspace paths. ## Release Notes There is currently no release-note surfacing mechanism — the workspace-bulletin feature was removed. Do not add new release-note workspace migrations; the historical set is frozen. ## Error Messages Good user-facing errors: - explain what failed - avoid exposing internals or secrets - say what the user can do next when there is a clear action - use consistent product terminology Avoid stack traces, implementation-only vocabulary, and ambiguous "something went wrong" messages when a concrete cause is available. ## Review Workflow 1. Identify text users may read. 2. Check terminology, privacy, and clarity. 3. Check whether the copy implies unavailable or flagged behavior. 4. Preserve technical precision while removing internal jargon. 5. Recommend tests or snapshots when copy is part of a stable interface.
>
>
>
>
Check Vellum Assistant architecture and package boundaries. Use when editing imports, moving code, adding endpoints, touching assistant/gateway/client/skill boundaries, or reviewing architecture-sensitive changes.
Review Vellum Assistant code changes for correctness, repo-specific quality rules, security risks, and missing validation. Use when reviewing diffs, preparing a PR, finishing implementation work, or when the user asks for a code review, quality pass, or pre-merge check in this repository.
Guide Vellum Assistant feature flag changes and rollout hygiene. Use when adding, editing, reviewing, or documenting assistant feature flags, rollout-gated behavior, or platform flag follow-up work.
Validate Vellum Assistant database and workspace migrations. Use when adding, editing, reviewing, or testing migrations, release-note migrations, persisted schemas, workspace file formats, or data backfills.