Skip to main content

setup

Use this skill to initialize the user profile by asking a series of questions.

インストールへ移動

ソース情報

リポジトリ
tomevault-io/skills-registry
ソースの最終更新活動
2026年4月28日 22:53
検出された SKILL.md の言語
英語
スター
0
フォーク
0

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

ファイルエクスプローラー
2 ファイル

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
setup
description
Use this skill to initialize the user profile by asking a series of questions.
metadata
{"author":"alexandreroman"}
# 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 1. **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.Git` on Windows, `brew install git` on macOS, or `apt install git` on Linux). - Do NOT proceed to the next steps until all tools are available. 2. **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.txt` files across all skills, ensuring compatibility with Windows, macOS, and Linux. 3. **Ask Questions (in English)** - Ask the user for their: - First and last name - Profession - Current employer - Education - Current projects - Interests 4. **Save Profile (in English)** - Format the answers into a structured text. - **The content of `profile.md` must be written in English.** - Save the result to `.profile.md` (at the project root). --- > Converted and distributed by [TomeVault](https://tomevault.io/claim/alexandreroman) — claim your Tome and manage your conversions. <!-- tomevault:4.0:skill_md:2026-04-13 -->
GitHubで見る