用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/thomasreichmann/nexus --skill work命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Build, run, and drive trpc-devtools in the Nexus app to verify UI changes at runtime
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
正在显示 SKILL.md
基于 SOC 职业分类
| name | work |
| description | Work on a GitHub issue (implement, test, commit, PR) |
| argument-hint | <issue-number> |
| disable-model-invocation | true |
Implement a GitHub issue: research, implement, review, commit, PR.
Git state:
!git status --short; git branch --show-current
Issue number: $ARGUMENTS
Understand & spawn. In one block: gh issue view <n> --json title,body,labels (labels inform the branch type) and the gated explore-issue spawn — a minimal prompt that identifies its role and instructs it to reply "ready" and stop, using no tools. (Spawn-form and resume-form system prompts differ, so an agent's first continue always breaks the prompt cache; gating pays that break at ~0 context and makes every later follow-up a cache hit. Cache TTL is 1h, so pauses for judgment or user questions under an hour don't lose the prefix.) Briefly summarize description, acceptance criteria, and out-of-scope.
Task the explorer, then branch while it works. When "ready" arrives, SendMessage the real task immediately: the issue body plus the report format from step 3. While it researches: git fetch origin main, then git checkout -b <type>/<n>-<slug> origin/main (types: feat/fix/refactor/docs/chore) — if the branch already exists, ask: resume it, rebase onto origin/main, or use a different name — and read docs/ai/conventions.md.
Judge the research. The explorer's report must be an evidence pack, not a list of pointers:
Judge the report before implementing. Check: every criterion has evidence attached; the change map covers every criterion; declared skips aren't load-bearing for any criterion; open questions are answerable from the issue text. If a check fails, continue the explorer via SendMessage with a targeted follow-up — never respawn (respawning loses its context and re-bills the reading). Resolve open questions you can't answer from the issue with the user NOW — never hit a user question mid-implementation if it can be settled here.
Implement. Read only the files in the change map — for large files, read the region the pack's line ranges point at rather than the whole file — and trust the pack's quoted evidence for everything else; flag anything you read that contradicts the pack. Stay within acceptance criteria; note out-of-scope discoveries as follow-up issues rather than expanding scope (if scope must grow, ask first). Repeat until green: pnpm check. UI changes also require pnpm -F web test:e2e:smoke; new pages need a smoke test in apps/web/e2e/smoke/ following home.spec.ts. DB schema changes: see CLAUDE.md for db:generate/db:migrate/db:custom. If checks, tests, or migrations fail, show the output and ask: fix now / continue (note in PR) / abort with changes uncommitted.
Verify criteria. Walk each acceptance criterion and confirm it's satisfied, citing step 4's run results; execute something new only for criteria not covered by pnpm check or the smoke suite (e.g. a manual flow or a migration). If one isn't met, ask whether to address now or note for follow-up.
Self-review (never skip). Invoke the /self-review skill with the issue number so code-quality-review gets the acceptance criteria. Skipped findings get noted in the PR.
Commit & push. Invoke the /commit skill (runs on a cheap model in a forked context). Message format: <type>: <description> (#<n>). Stage only related files.
PR. gh pr create with body:
## Summary
<what was done and why>
Closes #<n>
## Changes
- <change>
## Test Plan
- [ ] <how to verify>