ソース情報
- リポジトリ
- tools-only/X-Skills
- ソースの最終更新活動
- 2026年2月9日 04:08
- 検出された SKILL.md の言語
- 英語
- スター
- 7
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/tools-only/X-Skills --skill analyzeコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
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
| name | analyze |
| description | Trigger full repository health analysis |
Analyze the code health of a repository using multi-dimensional metrics.
When the user requests a repository health analysis, follow this systematic approach:
list_repo_files to discover all source filesfile_metrics on key files to assess complexitygit_churn to identify frequently changing filesmap_tests to find files missing testsUse list_repo_files with appropriate globs for the language:
- TypeScript/JavaScript: ["**/*.{ts,tsx,js,jsx}"]
- Python: ["**/*.py"]
- Go: ["**/*.go"]
- Multi-language: Combine patterns
Exclude: ["node_modules/**", ".git/**", "dist/**", "build/**"]
Focus on:
For each file, report:
Identify hot spots:
Find gaps:
Combine metrics to find:
Present findings in this structure:
Prioritized list of actions:
User: "Analyze the health of /home/user/my-project"
Response:
I'll analyze the code health of your project using multiple dimensions...
[Use list_repo_files on /home/user/my-project]
Found 245 source files (TypeScript/JavaScript)
[Use file_metrics on top files]
Critical complexity issues:
- src/services/auth.ts: Complexity 45, Health 30
- src/api/handler.ts: Complexity 28, Health 65 ️
[Use git_churn on /home/user/my-project since "6 months ago"]
High churn files:
- src/api/handler.ts: 32 commits, 4 authors
- src/services/auth.ts: 18 commits, 2 authors
[Use map_tests on /home/user/my-project]
Test coverage: 62% (97 of 156 files tested)
Missing tests: 59 files
Critical files without tests:
- src/services/auth.ts (high complexity + high churn)
- src/api/legacy.ts (high complexity)
## Recommendations:
1. URGENT: Add tests for src/services/auth.ts (high complexity, high churn, no tests)
2. ️ Refactor src/api/handler.ts (complexity 28, reduce to <10)
3. Improve test coverage to 80%+ (currently 62%)