claude-task-worker 0.46.0 → 0.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/index.js +16 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -465,6 +465,7 @@ advisor は main モデル以上の能力を持つモデルである必要があ
|
|
|
465
465
|
`cc-issue-created` と `cc-triage-scope` の両方のラベルが付いたIssueを定期取得し、Claude Codeでトリアージを実行する。(1分間隔)
|
|
466
466
|
|
|
467
467
|
- `cc-pr-created` / `cc-update-issue` / `cc-answer-issue-questions` / `cc-exec-issue` のいずれかが付いているIssueは除外
|
|
468
|
+
- `cc-create-ui-design` / `cc-ui-design-pr-created`(UIデザイン先行フローの進行中マーカー)が付いているIssueも除外。トリガーラベルはトリアージ完了後に付き直されるため、除外しないとデザインPRのマージまで再トリアージが走り続け、パターンE-1の前提ゲートが満たされない再実行が `cc-exec-issue` を付けてデザイン合意前に実装を始めてしまう
|
|
468
469
|
- 確認事項の有無に応じて `cc-answer-issue-questions` または `cc-exec-issue` ラベルを付与(または不要ならクローズ)
|
|
469
470
|
|
|
470
471
|
### triage-pr
|
package/dist/index.js
CHANGED
|
@@ -3369,7 +3369,22 @@ var triageCreatedIssueWorker = (opts = {}) => createIssuePollingWorker({
|
|
|
3369
3369
|
name: "triage-created-issue",
|
|
3370
3370
|
command: "/claude-task-worker:triage-created-issue",
|
|
3371
3371
|
triggerLabels: ["cc-issue-created", "cc-triage-scope"],
|
|
3372
|
-
|
|
3372
|
+
// cc-create-ui-design / cc-ui-design-pr-created はUIデザイン先行フローの進行中マーカー。
|
|
3373
|
+
// 除外しないと、トリガーラベル(cc-issue-created / cc-triage-scope)はトリアージ完了後も
|
|
3374
|
+
// 付き直されるため、デザインPRの作成〜レビュー〜マージが終わるまでの間ずっと再トリアージが
|
|
3375
|
+
// 走り続ける。しかもスキルのパターンE-1は「cc-create-ui-design / cc-ui-design-pr-created が
|
|
3376
|
+
// 付いていない」ことを前提ゲートにしているため、再実行では E-1 がスキップされてパターンE
|
|
3377
|
+
// (cc-exec-issue 付与)へ落ち、デザイン合意前に実装フェーズが始まってしまう。
|
|
3378
|
+
// cc-ui-design-ready はデザイン確定後のマーカーで、同時に付く cc-exec-issue 側で除外されるため
|
|
3379
|
+
// ここには含めない(実装完了後の再トリアージ可能性を残す)。
|
|
3380
|
+
excludeLabels: [
|
|
3381
|
+
"cc-pr-created",
|
|
3382
|
+
"cc-update-issue",
|
|
3383
|
+
"cc-answer-issue-questions",
|
|
3384
|
+
"cc-exec-issue",
|
|
3385
|
+
"cc-create-ui-design",
|
|
3386
|
+
"cc-ui-design-pr-created"
|
|
3387
|
+
],
|
|
3373
3388
|
epicFilters: opts.epicFilters,
|
|
3374
3389
|
labelFilters: opts.labelFilters,
|
|
3375
3390
|
onCompleted: async (issueNumber) => {
|