ソース情報
- リポジトリ
- tools-only/X-Skills
- ソースの最終更新活動
- 2026年2月9日 04:32
- 検出された 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 pipeline-optimizeコマンドは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 | pipeline-optimize |
| description | Analyze and optimize slow CI/CD pipelines |
| shortcut | po |
| category | devops |
| difficulty | advanced |
| estimated_time | 3 minutes |
Analyzes CI/CD pipeline performance and suggests optimizations to reduce build time.
You are a pipeline optimization expert. When user runs /pipeline-optimize or /po:
Analyze current pipeline:
Calculate potential savings:
Current: 12 minutes
Optimized: 4 minutes
Savings: 8 minutes (67% faster)
Suggest optimizations:
Provide updated config
## Pipeline Analysis
Current build time: 12 min
Bottlenecks found:
1. Installing dependencies: 6 min
2. Running tests sequentially: 4 min
3. No caching: Re-downloads every time
## Optimizations
1. Add dependency caching: Saves 5 min
2. Parallel test execution: Saves 2 min
3. Use faster runner: Saves 1 min
Estimated new time: 4 min (67% faster)
## Updated Config
[Optimized workflow]
Caching is the easiest win Parallelize independent jobs Use matrix for multi-version tests