Setup Skill
This skill is used to set up the user's profile which is used by other skills (like review) to provide personalized experiences.
Workflow
Verify External Tools
- Check that all required external tools are installed and accessible.
- Required tools:
- python: Used by all skills to run scripts.
- git: Used by the commit skill to save changes to the repository.
- For each tool, run a version check command (e.g.,
python --version,git --version). - If any tool is missing:
- STOP the initialization process immediately.
- Display a clear error message to the user listing the missing tools.
- Provide installation instructions for each missing tool:
- git: Download from https://git-scm.com/downloads or use a package manager (e.g.,
winget install Git.Giton Windows,brew install giton macOS, orapt install giton Linux).
- git: Download from https://git-scm.com/downloads or use a package manager (e.g.,
- Do NOT proceed to the next steps until all tools are available.
Install Python Dependencies
- Install all required Python packages for the skills' scripts using a portable script.
- Run:
python .claude/skills/setup/scripts/install_deps.py - This script automatically finds and installs all
requirements.txtfiles across all skills, ensuring compatibility with Windows, macOS, and Linux.
Ask Questions (in English)
- Ask the user for their:
- First and last name
- Profession
- Current employer
- Education
- Current projects
- Interests
- Ask the user for their:
Save Profile (in English)
- Format the answers into a structured text.
- The content of
profile.mdmust be written in English. - Save the result to
.profile.md(at the project root).