Status="retrospective"の全issueに対して/issync:complete-sub-issueを自動実行
Executes completion workflow for all issues in the retrospective lane in parallel.
/plugin marketplace add MH4GF/issync/plugin install issync@issync-pluginsGitHub ProjectsのStatus="retrospective"にある全issueに対して/issync:complete-sub-issueを自動実行します。
使用方法: /issync:process-retrospective-lane(引数なし)
issync projects list-issues --status=retrospectiveでissue番号を取得(JSON配列)/issync:complete-sub-issueを並列実行重要: 必ず単一メッセージで複数のTask tool呼び出しを行うこと。これにより並列実行が可能になり、処理時間を大幅に短縮できます。
# 実装例(擬似コード)
issues = issync projects list-issues --status=retrospective
# 単一メッセージで全issueのTask toolを呼び出し(並列実行)
for issue in issues:
Task(
subagent_type="general-purpose",
description=f"Process issue #{issue} completion",
prompt=f"Execute `/issync:complete-sub-issue {issue}` and report a brief summary."
)