setup

An initial setup wizard for a job-search and interview-preparation system.

In plain words
What is it for?
Use it to enter contact details, target roles, locations, company preferences, and salary expectations before using the system.
Why use it?
It creates the needed folders and configuration so personal details, resume data, company information, interview records, questions, and progress can be stored consistently.

Command for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/huifer/claude-code-interview/setup
Clone the repo
git clone --depth 1 https://github.com/huifer/claude-code-interview

Made for: Claude Code.

Per session 28 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,945 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00028 $0.02945
Opus 5 $0.00014 $0.01473
Sonnet 5 $0.00006 $0.00589
Haiku 4.5 $0.00003 $0.00295

Measured 2d ago against content hash 332a8acc79e5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

setup scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/commands/setup.md · 418 lines

How it starts

The opening of the file, as written. The whole thing — 418 lines — stays where its author put it; the contents beside it link to each section on GitHub.

系统初始化向导

欢迎使用 Claude Code Interview System

本向导将引导您完成初始配置,让您快速开始使用系统管理求职和面试准备。

配置步骤

步骤 1: 创建基础数据目录结构

确保以下目录存在:

  • data/resume/ - 简历数据
  • data/companies/ - 公司和职位数据
  • data/interviews/ - 面试记录
  • data/questions/ - 问题库
  • data/analytics/ - 进度追踪
  • data/schemas/ - JSON Schema 验证文件
  • exports/ - 导出文件
  • templates/ - 简历模板

步骤 2: 配置个人信息

询问以下信息并保存到配置文件:

必填信息:
  1. 姓名 - 用于生成个性化文档
  2. 邮箱 - 主要联系方式
  3. 电话 - 备用联系方式
可选信息:
  1. 所在地 - 城市, 国家/地区
  2. LinkedIn - LinkedIn个人资料链接
  3. GitHub - GitHub个人资料链接
  4. 个人网站 - 个人作品集或博客

步骤 3: 配置求职偏好

目标职位
  1. 目标职位类型 (可多选):

    • 软件工程师 (Software Engineer)
    • 前端工程师 (Frontend Engineer)
    • 后端工程师 (Backend Engineer)
    • 全栈工程师 (Full Stack Engineer)
    • 系统架构师 (System Architect)
    • 机器学习工程师 (ML Engineer)
    • 数据工程师 (Data Engineer)
    • DevOps工程师 (DevOps Engineer)
    • 产品经理 (Product Manager)
    • 其他 (请说明)
  2. 目标级别 (可多选):

    • Junior (L1-L2)
    • Mid-level (L3-L4)
    • Senior (L5)
    • Staff (L6)
    • Principal (L7+)
  3. 目标地点 (可多选):

    • 具体城市列表
    • 是否接受远程工作
    • 是否愿意 relocate
  4. 目标公司类型 (可多选):

    • Big Tech (Google, Meta, Amazon, Microsoft, Apple)
    • 独角兽创业公司
    • 成长型创业公司
    • 中大型公司
    • 不限
薪资期望
  1. 期望薪资范围
    • 基础年薪范围 (例如: $150k - $200k)
    • 期望的一级股票/期权
    • 期望的签约奖金
    • 期望的总薪酬
时间安排
  1. 求职时间安排
    • 开始求职日期
    • 期望入职日期
    • 每周可投入小时数
    • 是否在职求职 (On-site job search)

步骤 4: 导入或创建简历

选项 A: 导入现有简历

如果已有简历,运行:

/resume/import <resume-file-path>
选项 B: 创建新简历
  1. 引导用户输入个人信息
  2. 逐项填写:
    • 专业总结
    • 技能列表
    • 工作经历
    • 项目经验
    • 教育背景
    • 认证证书
  3. 保存到 data/resume/base.json

步骤 5: 初始化分析数据

创建 data/analytics/progress.json:

{
  "user_id": "generated-uuid",
  "period": {
    "start": null,
    "end": null
  },
  "overview": {
    "days_spent": 0,
    "total_hours": 0,
    "average_hours_per_day": 0
  },
  "practice_statistics": {
    "technical_questions_completed": 0,
    "system_design_questions_completed": 0,
    "behavioral_questions_practiced": 0,
    "mock_interviews_completed": 0
  },
  "skill_proficiency": {},
  "company_progress": {},
  "weak_areas": [],
  "weekly_goals": []
}

Read the full file on GitHub · 418 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 418 lines · 28 tokens per session scan A 332a8acc79e5

Subscribe to this mod's changes

setup is a command published in the GitHub repository huifer/claude-code-interview (23 stars, last pushed 7mo ago), licensed MIT. It adds 28 tokens to every session and 2,945 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.