claude-task-worker 0.66.0 → 0.68.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 +5 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3581,9 +3581,11 @@ var createUiDesignWorker = async (opts = {}) => {
3581
3581
  console.log(`[create-ui-design] #${issueNumber}: cc-need-human-check present, skip cc-ui-design-pr-created`);
3582
3582
  return false;
3583
3583
  }
3584
- if (await hasLabel("issue", issueNumber, "cc-ui-design-ready")) {
3585
- console.log(`[create-ui-design] #${issueNumber}: design not needed (cc-ui-design-ready), completing`);
3586
- return;
3584
+ for (const label of ["cc-ui-design-ready", "cc-exec-issue"]) {
3585
+ if (await hasLabel("issue", issueNumber, label)) {
3586
+ console.log(`[create-ui-design] #${issueNumber}: design not needed (${label}), completing`);
3587
+ return;
3588
+ }
3587
3589
  }
3588
3590
  const branch = designBranchName(issueNumber);
3589
3591
  const prNumber = await findPrNumberByHeadRef(branch, "open");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-task-worker",
3
- "version": "0.66.0",
3
+ "version": "0.68.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",