ソース情報
- リポジトリ
- tools-only/X-Skills
- ソースの最終更新活動
- 2026年2月9日 04:08
- 検出された SKILL.md の言語
- 英語
- スター
- 7
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/tools-only/X-Skills --skill generate-mapコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Index of Build Systems Skills
Coordination patterns for distributed dataflow systems including barriers, epochs, and distributed snapshots
Windowing, sessionization, time-series aggregation, and late data handling for streaming systems
SOC 職業分類に基づく
SKILL.md を表示中
| name | generate-map |
| description | Analyze codebase and generate a comprehensive project-map.md overview |
| argument-hint | [--force] |
You are generating a comprehensive .claude/project-map.md file for this codebase.
Analyze the entire codebase and create a clear, concise project map that a new developer can read in a few minutes to understand the system.
Scan the codebase structure
Identify the tech stack
Map the project structure
Document the API surface (if applicable)
Document the database (if applicable)
Document the frontend (if applicable)
Document infrastructure
Document testing
Create/overwrite .claude/project-map.md with this structure:
# Project Map
> Auto-generated overview of the codebase. Last updated: [date]
## Tech Stack
- **Backend:** [framework, language, version]
- **Frontend:** [framework, language, version]
- **Database:** [type, version]
- **Infrastructure:** [Docker, etc.]
- **Key Libraries:** [list]
## Project Structure
/ ├── backend/ # [description] ├── frontend/ # [description] ├── ...
## API Surface
### [Domain 1]
- `GET /api/...` - [description]
- `POST /api/...` - [description]
### [Domain 2]
...
## Database Schema
Main entities:
- **Entity1** - [description, key fields]
- **Entity2** - [description, key fields]
Relationships: [brief description]
## Frontend Architecture
Main routes:
- `/` - [description]
- `/dashboard` - [description]
Key components: [list]
## Infrastructure
### Local Development
```bash
# Commands to run the project
| Service | Port | Description |
|---|---|---|
| ... | ... | ... |
| Variable | Purpose | Required |
|---|---|---|
| ... | ... | ... |
[command]
## Guidelines
- Keep it concise - aim for a document readable in 5 minutes
- Use bullet points and tables
- Link to detailed docs rather than copying content
- Remove any sections that don't apply
- Be accurate - verify information from actual files
## After Generation
Report to the user:
- Summary of what was documented
- Any areas that need manual review
- Suggestions for missing documentation