一键导入
commit
Commit workflow for Job Hunter development, including preflight tests, schema validation, linting, safe staging, and intentional commit messages.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Commit workflow for Job Hunter development, including preflight tests, schema validation, linting, safe staging, and intentional commit messages.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Primary job search command center. Routes to individual skills for all job search work.
Workspace setup command center. Routes to onboarding, career context, and resume building; health checks, regions, and resume styling are dashboard/CLI now.
LinkedIn content and networking command center. Routes to ideas, drafting, engagement, and connection-building modes.
Ultra-compressed communication mode. Cuts token usage ~75% by speaking like caveman while keeping full technical accuracy. Supports intensity levels: lite, full (default), ultra, wenyan-lite, wenyan-full, wenyan-ultra.
基于 SOC 职业分类
| name | commit |
| description | Commit workflow for Job Hunter development, including preflight tests, schema validation, linting, safe staging, and intentional commit messages. |
| when_to_use | Developer context only - use when preparing, reviewing, or creating a git commit for Job Hunter repo changes. |
| user-invocable | true |
| allowed-tools | Bash Read Grep |
| author | Abdul Basit (@abdulrbasit) |
| category | dev |
Use this skill when preparing a developer commit in this repo.
Create a clean, intentional commit after verifying that code, tests, configs, and staged files are safe.
Inspect the worktree.
git status --short.Run preflight checks.
uv run pytest tests/ -q --tb=shortuv run ruff format --check job_hunter testsuv run ruff check job_hunter testsuv run ty check job_hunter testsuv run ruff format job_hunter tests then rerun format check. Do not hand-format.pyproject.toml changed, run uv sync --extra dev first.Stage only specific files.
git add . or git add -A.Check staged files.
git diff --cached --stat.git diff --cached --name-only.Prepare the commit.
Co-authored-by or any AI attribution trailer. This repo does not use co-author tags regardless of tool defaults.release: v{VERSION} (e.g. release: v0.14). The release workflow checks for this exact format.Commit after confirmation.
git commit -m "<message>".git status --short.Keep output compact: