ワンクリックで
interview-qa-generator
当用户提出“生成面试题”、“生成面试问答”、“根据我的简历生成面试题”、“帮我准备面试”、“模拟面试”,或希望基于其简历和项目描述生成面试问题与答案时,应使用此 skill。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
当用户提出“生成面试题”、“生成面试问答”、“根据我的简历生成面试题”、“帮我准备面试”、“模拟面试”,或希望基于其简历和项目描述生成面试问题与答案时,应使用此 skill。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when the user wants to commit and push in one go (用户提到 "提交并推送"、"提交后推上去"、"commit 并 push"、"commit and push"、"/git-commit-and-push"). Covers what that single request does and does NOT authorize, and when to stop between the two halves.
Use when pushing commits to the remote (用户提到 "push"、"推一下"、"推到远程"、"git push"、"强推"、"force push"). Always resolves the push target to the CURRENT branch instead of master/main, sets upstream on first push, brakes on protected branches, and uses --force-with-lease for force pushes.
Use when the user asks to summarize recent commits into a PR description or write a pull request title and body from git history (用户提到 "生成 PR"、"总结最近 commit"、"输出 PR"、"pr-generate"). Also when the PR may touch env vars or database/SQL that need highlighting. Supports two diff ranges - recent N commits, or the diff against a remote base branch (如 "跟 master 的 diff"、"对比 origin/develop"、"base=master").
Use when starting work on a new branch in a multi-worktree repo and need to create the git worktree (用户提到 "新开 worktree"、"建 worktree"、"开个 worktree 做 X"、"切个分支并行开发"、"new worktree"). Enforces fetch-first, branch off latest origin/master, and sibling-of-repo-root dir named after the branch.
Use when the user wants to save, update, persist, or "remember" a global / user / AI / AGENT instruction or memory so it applies across all coding clients (Claude, Codex, Cursor). Triggers include "更新用户记忆", "保存全局指令", "记住…到全局 AGENT 指令", "save to global agent memory", "remember this globally". Assumes agent-root-cli has been set up once (init + link).
Use when the user wants to publish, post, or update a blog article to their hexi-site blog (Hexi1997/hexi-site) — triggers include "发布博客", "更新博客", "post to my blog", "hexi-blog-update". Handles slug, frontmatter, file placement, and pushing to main via local git/gh.
| name | interview-qa-generator |
| description | 当用户提出“生成面试题”、“生成面试问答”、“根据我的简历生成面试题”、“帮我准备面试”、“模拟面试”,或希望基于其简历和项目描述生成面试问题与答案时,应使用此 skill。 |
| version | 1.0.0 |
此 skill 会基于用户简历中的项目描述以及对代码库的理解,自动生成面试问题与答案,并将结果保存为一个包含岗位名称的文件(见下方“保存文件”)。
当用户需要:
使用 AskUserQuestion 工具向用户收集以下信息:
项目描述 问题:"Please provide the project description from your resume"
题目数量 问题:"How many interview questions would you like to generate?" 可选项:5、10、15、20
岗位名称 问题:"What is your job title?" 可选项:Frontend Engineer、Senior Frontend Engineer、Full-Stack Engineer、Other
探索项目结构:
package.json 了解技术栈提取关键技术点:
从以下维度生成面试题:
每个答案都应:
文件名(必须包含岗位名称):
interview-qa-{job-title}.md{job-title}:必须与 Step 1 中收集到的岗位名称一致;避免使用非法文件名字符,如 / \ : * ? " < > |;空格可以保留,也可以替换为 -示例:interview-qa-frontend-engineer.md
将生成结果按以下格式写入上述路径:
# {Project Name} Interview Questions & Answers
> Based on resume description: {user-provided project description}
---
## 1. {Question Title}
**Answer:**
{Detailed answer including code examples}
---
... (more questions)
filename:line numberinterview-qa-{job-title}.md;不要使用固定名称如 interview-qa.md,岗位名称是必需的