claude-task-worker 0.54.0 → 0.56.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.
Files changed (2) hide show
  1. package/dist/index.js +32 -36
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3796,42 +3796,38 @@ async function ensureCodegraphGitIgnore(logPrefix) {
3796
3796
 
3797
3797
  // src/commands/init.ts
3798
3798
  var LABELS = [
3799
- // 警告・修正系(暖色)
3800
- { name: "cc-need-human-check", color: "b60205" },
3801
- // dark red
3802
- { name: "cc-fix-onetime", color: "e8590c" },
3803
- // orange
3804
- { name: "cc-resolve-conflict", color: "ffc53d" },
3805
- // amber
3806
- { name: "cc-update-issue", color: "cddc39" },
3807
- // lime
3808
- // 進行・完了系(緑〜青緑)
3809
- { name: "cc-in-progress", color: "0e8a16" },
3810
- // dark green
3811
- { name: "cc-release-ready", color: "4ade80" },
3812
- // bright green
3813
- { name: "cc-pr-created", color: "006b75" },
3814
- // dark teal
3815
- // Issueライフサイクル(シアン〜紫)
3816
- { name: "cc-issue-created", color: "67e8f9" },
3817
- // cyan
3818
- { name: "cc-triage-scope", color: "1f6feb" },
3819
- // blue
3820
- { name: "cc-answer-issue-questions", color: "3730a3" },
3821
- // indigo
3822
- { name: "cc-exec-issue", color: "7c3aed" },
3823
- // violet
3824
- { name: "cc-epic-issue", color: "c4b5fd" },
3825
- // light lavender
3826
- // UIデザイン系(フクシア〜ピンク〜コーラル)
3827
- { name: "cc-create-ui-design", color: "a21caf" },
3828
- // dark fuchsia
3829
- { name: "cc-ui-design", color: "db2777" },
3830
- // magenta
3831
- { name: "cc-ui-design-pr-created", color: "f9a8d4" },
3832
- // light pink
3833
- { name: "cc-ui-design-ready", color: "ff8a80" }
3834
- // coral
3799
+ { name: "cc-need-human-check", color: "eb0000" },
3800
+ // red (hue 0)
3801
+ { name: "cc-fix-onetime", color: "47ffba" },
3802
+ // aquamarine (hue 158)
3803
+ { name: "cc-resolve-conflict", color: "db00a4" },
3804
+ // magenta (hue 315)
3805
+ { name: "cc-update-issue", color: "20ff00" },
3806
+ // green (hue 113)
3807
+ { name: "cc-in-progress", color: "8000ff" },
3808
+ // violet (hue 270)
3809
+ { name: "cc-release-ready", color: "b3cc00" },
3810
+ // olive (hue 68)
3811
+ { name: "cc-pr-created", color: "0029a3" },
3812
+ // navy (hue 225)
3813
+ { name: "cc-issue-created", color: "bd4700" },
3814
+ // burnt orange (hue 23)
3815
+ { name: "cc-triage-scope", color: "00ffff" },
3816
+ // cyan (hue 180)
3817
+ { name: "cc-answer-issue-questions", color: "e60056" },
3818
+ // crimson (hue 338)
3819
+ { name: "cc-exec-issue", color: "52ff7d" },
3820
+ // spring green (hue 135)
3821
+ { name: "cc-epic-issue", color: "c900e6" },
3822
+ // purple (hue 293)
3823
+ { name: "cc-create-ui-design", color: "a1ff42" },
3824
+ // chartreuse (hue 90)
3825
+ { name: "cc-ui-design", color: "6752ff" },
3826
+ // indigo (hue 248)
3827
+ { name: "cc-ui-design-pr-created", color: "ffbf00" },
3828
+ // amber (hue 45)
3829
+ { name: "cc-ui-design-ready", color: "0079c2" }
3830
+ // azure (hue 203)
3835
3831
  ];
3836
3832
  var ISSUE_TEMPLATE = `name: "[claude-task-worker] Issue\u4F5C\u6210\u4F9D\u983C"
3837
3833
  description: claude-task-worker\u3067GitHub Issue\u3092\u4F5C\u6210\u3059\u308B
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-task-worker",
3
- "version": "0.54.0",
3
+ "version": "0.56.0",
4
4
  "description": "CLI tool that polls GitHub Issues/PRs and delegates work to Claude CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",