parallel-workflows

Solid

Optimizes parallel execution of multiple tasks. Use when user mentions 並列で実行, 同時にやって, まとめてやって, run in parallel, do these together. Do NOT load for: 単一タスク, 順次実行が必要な作業, 依存関係のあるタスク.

AI & Automation 335 stars 29 forks Updated today

Install

View on GitHub

Quality Score: 85/100

Stars 20%
84
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
0
Description 5%
100

Skill Content

# Parallel Workflows Skill 複数タスクの並列実行を最適化するスキル。 Task ツールを活用して、独立したタスクを同時に処理します。 --- ## トリガーフレーズ このスキルは以下のフレーズで自動起動します: - 「並列で実行して」「同時にやって」 - 「まとめてやって」「一気にやって」 - 「効率的にやって」「速くやって」 - "run in parallel", "do these together" --- ## 関連コマンド - `/work` - Plans.md のタスクを実行(並列実行対応) --- ## 概要 Claude Code は複数のタスクを並列実行できます。 このスキルは、どのタスクが並列化可能かを判断し、最適な実行計画を立てます。 --- ## 並列化パターン ### パターン1: 複数ファイルの同時分析 **使用場面**: コードレビュー、構造把握 ``` Task tool を並列起動: - agent1: src/components/ を分析 - agent2: src/lib/ を分析 - agent3: src/app/ を分析 ``` **VibeCoder向け言い方**: ``` 「このプロジェクトの構造を教えて」 → 自動的に並列分析を実行 ``` ### パターン2: テストとビルドの同時実行 **使用場面**: CI/CD、品質チェック ``` 並列実行: - npm run lint - npm run type-check - npm run test 直列実行(依存あり): - npm run build(上記が全て成功後) ``` **VibeCoder向け言い方**: ``` 「チェックして」 → lint, type-check, test を並列実行 ``` ### パターン3: 複数機能の同時実装 **使用場面**: 独立した機能の開発 ``` Plans.md: - [ ] ヘッダーコンポーネント作成 - [ ] フッターコンポーネント作成 - [ ] サイドバーコンポーネント作成 → 3つのTask agentを並列起動 ``` **VibeCoder向け言い方**: ``` 「レイアウトを全部作って」 → 独立したコンポーネントを並列実装 ``` --- ## 判定ロジック ### 並列化可能な条件 1. **ファイル依存なし**: 同じファイルを編集しない 2. **データ依存なし**: 出力が他の入力にならない 3. **順序依存なし**: 実行順序が結果に影響しない ### 並列化不可の例 ``` ❌ 並列化不可: 1. API クライアント作成 2. API クライアントを使うコンポーネント作成 → 2は1の出力に依存 ✅ 並列化可能: 1. ログインページ作成 2. 会員登録ページ作成 → 互いに独立 ``` --- ## 実装ガイド ### Task ツールを使った並列実行 ```typescript // 並列実行パターン const tasks = [ { name: "タスクA", prompt: "..." }, { name: "タスクB", prompt: "..." }, { name: "タスクC", prompt: "..." } ]; // 全てのタスクを run_in_background: true で起動 // TaskO...

Details

Author
aiskillstore
Repository
aiskillstore/marketplace
Created
5 months ago
Last Updated
today
Language
Python
License
None

Similar Skills

Semantically similar based on skill content — not just same category

Code & Development Listed

vibecoder-guide-legacy

Guides VibeCoder (non-technical users) through natural language development (legacy). Use when user mentions どうすればいい, 次は何, 使い方, 困った, help, what should I do. Do NOT load for: 技術者向け作業, 直接的な実装指示, レビュー.

335 Updated today
aiskillstore
AI & Automation Listed

parallel-vibe

当用户明确要求"并行执行同一条 Vibe Coding 指令 / 多线程并行尝试多种方案 / 在多个独立工作区里同时推进"时使用。在用户当前工作目录创建 `.parallel_vibe/`,复制出多个独立工作区并按计划运行每个 thread 的 runner(默认串行、可选并行),最后在 `@main/summary.md` 汇总结果。⚠️ 不适用:用户只是想并行跑 shell 命令/单元测试/下载任务(应直接用并发工具或 CI)、没有明确"多工作区并行尝试/多方案对比"意图、要求强安全隔离或处理高度敏感数据(应使用容器/沙箱方案)。

36 Updated yesterday
huangwb8
API & Backend Listed

parallel-execution

Patterns for parallel subagent execution using Task tool with run_in_background. Use when coordinating multiple independent tasks, spawning dynamic subagents, or implementing features that can be parallelized.

4 Updated today
Putra213
AI & Automation Solid

parallel-execution

Patterns for parallel subagent execution using Task tool with run_in_background. Use when coordinating multiple independent tasks, spawning dynamic subagents, or implementing features that can be parallelized.

1,320 Updated 3 months ago
CloudAI-X