用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/thomasreichmann/nexus --skill verify命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Upload a local video or image to GitHub and get a URL that renders as an inline player / image in issue, PR, and comment markdown. Use when posting recorded UI evidence or screenshots.
Run the work skill's self-review phase standalone — 3 parallel review agents (conventions, code quality, reuse) over the current branch diff
Work on a GitHub issue (implement, test, commit, PR)
正在显示 SKILL.md
基于 SOC 职业分类
| name | verify |
| description | Build, run, and drive trpc-devtools in the Nexus app to verify UI changes at runtime |
The web app consumes this package's built dist, not src/. Source edits
are invisible to the running app until you rebuild — this is the #1 gotcha
(a stale dist silently verifies old code):
pnpm -F trpc-devtools build # after every src change you want to observe
Launch (from repo root; use the worktree's $PORT, not :3000):
env PORT=$PORT pnpm dev # background; restart after rebuilding dist
Surfaces to drive:
http://localhost:$PORT/dev/studio (SSR — hydration
mismatches only reproduce here, not on the standalone route)http://localhost:$PORT/api/trpc-devtools (client-only
bundle inlined by the route handler; FOUC script, html theme class)Drive with a Playwright script placed in apps/web/ and run from there
(import { chromium } from '@playwright/test', main().catch(...)). Useful
context options: colorScheme: 'dark', permissions: ['clipboard-read', 'clipboard-write'] for copy buttons, context.addCookies for cookie
export. debug.random is a public procedure (no auth) that always succeeds
— good for exercising execute/response flows.
Gotchas:
console/pageerror events — React hydration warnings on
/dev/studio are real findings and don't fail the smoke suite when they
depend on state (e.g. only appear once request history exists).waitFor({ state: 'hidden' }), not
isVisible().