claude-task-worker 0.85.0 → 0.86.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 +11 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -4243,6 +4243,15 @@ init_run_command();
4243
4243
  var PLUGIN_NAME = "claude-task-worker";
4244
4244
  var MARKETPLACE_NAME = "claude-task-worker";
4245
4245
  var MARKETPLACE_SOURCE = "getty104/claude-task-worker";
4246
+ var GLOBAL_NPM_PACKAGES = [PLUGIN_NAME, CODEGRAPH_PACKAGE, DESIGN_MD_PACKAGE, PEN_PACKAGE];
4247
+ async function printGlobalPackageVersions(logPrefix) {
4248
+ console.log(`[${logPrefix}] Installed versions:`);
4249
+ try {
4250
+ await runCommand("npm", ["ls", "-g", "--depth=0", ...GLOBAL_NPM_PACKAGES]);
4251
+ } catch (err) {
4252
+ console.error(`[${logPrefix}] Some packages are missing from the global install: ${err.message}`);
4253
+ }
4254
+ }
4246
4255
  async function addMarketplace() {
4247
4256
  console.log(`[install] Adding marketplace: ${MARKETPLACE_SOURCE}...`);
4248
4257
  try {
@@ -4284,6 +4293,7 @@ async function install() {
4284
4293
  const codegraphOk = await installCodegraphCli("install");
4285
4294
  const designMdOk = await installDesignMdCli("install");
4286
4295
  const penOk = await installPenCli("install");
4296
+ await printGlobalPackageVersions("install");
4287
4297
  if (!pluginOk || !cliOk || !codegraphOk || !designMdOk || !penOk) {
4288
4298
  process.exitCode = 1;
4289
4299
  }
@@ -4502,6 +4512,7 @@ async function update() {
4502
4512
  const codegraphOk = await upgradeCodegraphCli("update");
4503
4513
  const designMdOk = await installDesignMdCli("update");
4504
4514
  const penOk = await installPenCli("update");
4515
+ await printGlobalPackageVersions("update");
4505
4516
  if (!marketplaceOk || !pluginOk || !cliOk || !codegraphOk || !designMdOk || !penOk) {
4506
4517
  process.exitCode = 1;
4507
4518
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-task-worker",
3
- "version": "0.85.0",
3
+ "version": "0.86.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",