一键导入
uvs-help
Show all UV Suite skills, agents, hooks, guardrails, and personas. Use when you want to know what's available or how to use a specific feature.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Show all UV Suite skills, agents, hooks, guardrails, and personas. Use when you want to know what's available or how to use a specific feature.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Design system architecture and decompose work into Acts with tasks, dependencies, and cycle budgets. Use after a spec is approved, before coding begins.
Review, test, slop-check, then commit and optionally open a PR. The ship pipeline: one command from "code complete" to "committed and reviewed."
Systematic root-cause debugging. Traces data flow, tests hypotheses, narrows scope. Stops after 3 failed attempts and escalates. Use when something is broken and you don't know why.
Toggle lite mode — instructs the assistant to be terse (no preamble, no summaries, no decorative formatting). Use when tokens are limited or you just want shorter answers. Persists across turns until disabled.
Build an interactive prototype as a static React site. For concept exploration, stakeholder demos, presentations, and documentation websites.
Browser-based QA: exercises the running app via Playwright MCP, captures console errors and visual evidence, optionally fixes source bugs with atomic commits and generates regression tests. Three tiers (quick / standard / exhaustive). Writes uv-out/qa-state.md so /uvs-commit and /ship can detect completion and read the health score.
| name | uvs-help |
| description | Show all UV Suite skills, agents, hooks, guardrails, and personas. Use when you want to know what's available or how to use a specific feature. |
| argument-hint | [skill-name or topic] |
| user-invocable | true |
| allowed-tools | ["Read(*)","Glob(*)"] |
$ARGUMENTS
If the user asked about a specific skill or topic, focus on that. Otherwise, show the full overview below.
!grep "Active persona" CLAUDE.md 2>/dev/null || echo "Unknown — check .claude/settings.json"
Every skill accepts free-form arguments to direct the agent. Examples shown below.
| Skill | What it does | Example |
|---|---|---|
/uvs-understand [target] | Map a codebase or stack (auto-detects scope) | /uvs-understand focus on the auth flow and session management |
| Skill | What it does | Example |
|---|---|---|
/uvs-spec [requirements] | Write a technical specification | /uvs-spec webhook retry with exponential backoff, max 3 retries |
/uvs-architect [spec] | Design architecture, decompose into Acts | /uvs-architect design for horizontal scaling, expect 10x traffic |
| Skill | What it does | Example |
|---|---|---|
/uvs-test [target] | Generate tests matching project conventions | /uvs-test src/auth/login.ts focus on error paths |
/uvs-test --unit [target] | Write unit tests | /uvs-test --unit src/auth/login.ts focus on error paths |
/uvs-test --integration [target] | Write integration tests | /uvs-test --integration the checkout flow end to end |
/uvs-test --eval [prompt] | Write AI/LLM evaluation cases | /uvs-test --eval test the search ranking prompt for adversarial inputs |
/uvs-prototype [concept] | Build a static React prototype | /uvs-prototype event booking app with calendar and payment flow |
| Skill | What it does | Example |
|---|---|---|
/uvs-review [focus] | Code review: correctness, security, perf, slop | /uvs-review pay attention to the new database migration |
/uvs-review --slop [target] | Detect 6 categories of AI-generated slop | /uvs-review --slop src/components/ check for over-engineering |
/uvs-review --security [target] | OWASP audit, dependency scan, secret detection | /uvs-review --security src/payments/ focus on webhook signature validation |
| Skill | What it does | Example |
|---|---|---|
/uvs-commit [message] | Test, lint, review, commit (optionally open PR) | /uvs-commit "Add webhook retry logic" pr |
/uvs-investigate [bug] | Root-cause debugging (3 attempts then escalate) | /uvs-investigate search returns stale results after reindex |
| Skill | What it does | Example |
|---|---|---|
/uvs-session init | Start a new session and set up artifacts | /uvs-session init |
/uvs-session checkpoint [label] | Save session state for next time | /uvs-session checkpoint auth-refactor |
/uvs-session restore | Load latest checkpoint at session start | /uvs-session restore |
/uvs-session end | Wrap up and persist final session state | /uvs-session end |
/uvs-session auto | Auto-checkpoint on a cadence during work | /uvs-session auto |
| Skill | What it does | Example |
|---|---|---|
/uvs-qa [target] | Manual/exploratory QA of a change or flow | /uvs-qa walk through the new checkout flow |
| Skill | What it does | Example |
|---|---|---|
/uvs-help [topic] | Show all UV Suite skills, agents, and hooks | /uvs-help review |
| Agent | Model | Used by |
|---|---|---|
| Cartographer | Opus | /uvs-understand |
| Spec Writer | Opus | /uvs-spec |
| Architect | Opus | /uvs-architect |
| Reviewer | Opus | /uvs-review, /uvs-investigate |
| Test Writer | Sonnet | /uvs-test |
| Eval Writer | Opus | /uvs-test --eval |
| Anti-Slop Guard | Opus | /uvs-review --slop |
| Prototype Builder | Sonnet | /uvs-prototype |
!ls .claude/hooks/ 2>/dev/null | grep '\.sh$' | sed 's/^/- /' || echo "No hooks installed"
!ls .claude/rules/ 2>/dev/null | sed -n 's/\.md$//p' | sed 's/^/- /' || echo "No guardrails installed"
| Persona | Launch | For |
|---|---|---|
| Spike | uvs spike | Research, docs, architecture analysis |
| Sport | uvs sport | New projects, fast prototyping |
| Professional | uvs pro | Production code, full review rigor |
| Auto | uvs auto | Autonomous execution, clear specs |
All agent output goes to uv-out/sessions/<session-id>/, so every artifact is attributable
to the session that produced it; uv-out/current points at the active session. Skills read
each other's prior output automatically (current session first, then prior sessions).
!ls -R uv-out/current 2>/dev/null | head -20 || echo "No artifacts yet — run a skill to generate some"
!ls -1 uv-out/sessions 2>/dev/null | head -15 || echo "No sessions yet"
--slop and --security are modes of /uvs-review, not separate skills. Ambient slop detection also runs automatically as a PostToolUse hook on every write.uvs spike for research, uvs pro for production code, uvs auto to let it run.