Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

interview-me采访我

Agent Skill

interview-me 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

259

周安装

11

GitHub Stars

2

下载量

91
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:interview-me(采访我)
来源仓库:https://github.com/preetamnath/agent-skills
仓库路径:skills/interview-me
安装命令:
npx skills add https://github.com/preetamnath/agent-skills --skill interview-me
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/preetamnath/agent-skills --skill interview-me

简介

采访我技能用于查找、检索和筛选相关信息,支持关键词和场景匹配。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。
  • 通过 GitHub 安装,使用 npx skills add 命令添加指定仓库的技能。
  • 需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • interview-me 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Interview Me

Move from ambiguity to clarity before building. Read the codebase, then Socratically interview the user — surfacing hidden assumptions and testing their framing — until you could confidently hand this off to be built.

When to use

When the task is non-trivial and the goal is vague, has multiple valid interpretations, or touches unfamiliar areas.

When NOT to use

  • User has a specific request with file paths, function names, or exact behavior
  • Quick fix, typo, or single obvious change
  • User says "just do it" or "skip the questions"
  • User already has a PRD or detailed spec

Protocol

1 — Read context first

Before asking anything, silently explore:

  • Architecture docs (ARCHITECTURE.md, CLAUDE.md, DESIGN.md)
  • Existing code in the affected area
  • Related modules or features

Don't ask questions the codebase already answers.

2 — Interview

Surface what the user is assuming, not just what they're requesting. Target the least-clear concern with each question. Use the AskUserQuestion tool for any question with distinct choices — include your recommendation and why. Use plain text only for genuinely open-ended questions.

For tasks where decisions depend on each other, sketch the decision space as a compact nested list once you can name two or more distinct branches. Share it as a hypothesis: "Here's what I think we need to figure out — does this match?" If you can't yet name two branches, ask open-ended questions until you can — aim to sketch within 2–3 rounds. If the task only has one or two flat questions, skip the tree and ask directly.

Resolve one branch at a time. If a question in one branch requires resolving another first, surface the dependency, resolve the blocking branch, then return. When multiple branches block, resolve the one that unblocks the most other branches first. When branches appear, collapse, or split, update the tree inline with your next question and note what changed. When a branch merely resolves, note the decision and continue. Propose deferral when a branch can't be resolved without information unavailable now — the user confirms.

Continue until every branch is resolved or deferred, and you could confidently hand this off to be built.

Use these dimensions as a completeness check — when sketching the tree and as branches resolve, verify nothing is missing:

  • Scope — What's the goal? What's in, what's out? What's affected?
  • UX and behavior — Happy path, error states, empty states, user flows
  • Technical approach — How should this be implemented? Patterns, data shapes, state management
  • Criteria — What are the acceptance criteria? How will we know it's done?
  • Constraints — Compatibility, performance, dependencies, boundaries
  • Clarity — Resolve any remaining ambiguity or contradictions

These are a lens, not a prescribed structure — the task-specific tree (or direct questions for simpler tasks) is the primary navigation.

If the interview runs long, check in — summarize current clarity and offer to continue or proceed. If the user exits early, note what's still unresolved in the artifact but don't block.

When a load-bearing assumption surfaces, test it once: "Does this constraint actually exist?" or "What's the simplest version that would still be valuable?" Challenge the framing, not the person.

3 — Feasibility check

After the interview establishes what to build, validate that the planned components, APIs, and patterns are available and usable. Launch 1–4 Sonnet subagents in parallel, split by topic. Always run — at minimum, check existing codebase patterns in the affected area.

AreaWhen relevantHow
UI componentsFeature uses specific UI components or librariesCheck component existence, props, composition constraints
External APIsFeature needs external API dataVerify API capabilities, available fields, rate limits
Extension/plugin targetsFeature includes an extension or pluginVerify target capabilities and constraints
Existing codebase patternsAlwaysRead existing code in affected areas, extract reusable patterns, verify interfaces match assumptions. Note test file locations, test style (unit/integration/e2e), and any test helpers or fixtures the implementation should follow

Each subagent returns: exists (yes/no), capabilities, constraints, gotchas.

If issues found: feed back into the interview — update the decision tree if branches changed, resolve with user, then proceed to confirm summary. Limit re-entry to one follow-up round per feasibility issue; if still unresolved, capture it in Unresolved questions. Example: "I checked and component X doesn't support Y natively, here are our options."

4 — Confirm summary

Before writing, present a brief summary of the key decisions, scope, constraints, and feasibility results to the user via the AskUserQuestion tool with options: "Looks good — write it", "Adjust before writing". Recommended: "Looks good — write it". This catches misunderstandings from a long interview before they're committed to a file.

5 — Write handoff artifact

Write the summary to meta/workflows/interviews/interview-NNN-<topic-slug>.md. Create the directory if missing. Find the highest existing number in the directory and increment by 1 (start at 001 if empty). Tell the user the file path.

## Interview Summary: [topic]

### Goal
[1-2 sentences]

### Decisions made
| Decision | Choice | Rationale |
|---|---|---|
| ... | ... | ... |

### Assumptions exposed
| Assumption | Resolution |
|---|---|
| ... | ... |

### In scope
- [what's included]

### Out of scope
- [what's explicitly excluded]

### Decision tree
[If the interview used a decision tree, include the final version as a compact nested list. Tag each branch inline. Omit for simpler interviews that didn't use a tree.]
- Branch name [resolved]
  - Sub-branch [collapsed: user confirmed X instead]
  - Sub-branch [deferred: blocked on Y]

### Criteria
- [acceptance criteria or success conditions — what must be true for this to be done]

### Constraints
- [fixed boundaries, compatibility requirements, dependencies]

### Feasibility results
| Area | Status | Findings |
|---|---|---|
| [area checked] | Available / Partial / Unavailable | [capabilities, constraints, gotchas] |

### Unresolved questions
- [anything still ambiguous, with impact assessment]
- [or "None — ready to proceed"]

### Recommended next step
Pick exactly one based on the sections above:
- `grill-me` — if `Unresolved questions` is non-empty, OR `Assumptions exposed` contains load-bearing items not pressure-tested, OR `Feasibility results` shows Partial/Unavailable
- `sanity-check` — if decisions look sound but you want a lighter validation pass before building
- `plan-builder` — if scope spans 3+ work items OR multiple files/modules, no unresolved/feasibility flags
- Direct implementation — if single-file or single-commit change, no unresolved flags

[Pick one with reasoning that cites the specific row(s) above that triggered the choice]

After writing, use the AskUserQuestion tool with options based on the recommended next step (e.g., "Proceed to grill-me", "Proceed to sanity-check", "Proceed to plan-builder", "Proceed to direct implementation", "Done for now"). Recommended: whichever next step was written in the artifact.

End condition

Stop when every branch in the decision tree is resolved or deferred, the user has confirmed the summary, and the handoff artifact has been written.

Rules

  • One question per round. Tightly coupled follow-ups are fine; shotgunning unrelated questions is not. Sketching or updating the tree alongside a question counts as one round — don't burn a separate round just to present the tree.
  • Always use the AskUserQuestion tool for questions with distinct choices. This is not optional. If you can enumerate the options, use the tool — include your recommendation and why. Plain text is only for genuinely open-ended questions with no enumerable answers.
  • Codebase is context, not constraints. Existing code shows what IS, not what MUST BE. The user may intentionally want to diverge.
  • Reference specific code or docs when asking: "I see X in ARCHITECTURE.md — does that apply here?"
  • Flag bad decisions during the interview, not after. If a stated requirement or decision seems materially suboptimal (correctness, security, reliability, cost), say so with your reasoning. Respect the user's final call — record their decision in the handoff, not yours.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.39%
按下载量换算34

Claude

28.98%
按下载量换算26

Cursor

17.33%
按下载量换算16

Gemini CLI

8.38%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills