@inteeka/task-cli 0.2.18 → 0.2.19

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/dist/cli.js CHANGED
@@ -3855,10 +3855,13 @@ ${c.bold(`${project.organisation_slug}/${project.project_slug}`)} ${c.dim(`(${pr
3855
3855
  for (const ticket of prepared.tickets) {
3856
3856
  if (args.isInterrupted()) break;
3857
3857
  inFlight.add(ticket.ticket_id);
3858
- const spinner = silent ? null : ora2(`#${ticket.sequence_number} ${ticket.title.slice(0, 60)}`).start();
3858
+ const specialistSuffix = ticket.specialist ? ` \xB7 Specialist: ${ticket.specialist.name} (${ticket.specialist.skill_count} skill${ticket.specialist.skill_count === 1 ? "" : "s"})` : "";
3859
+ const spinner = silent ? null : ora2(
3860
+ `#${ticket.sequence_number} ${ticket.title.slice(0, 60)}${specialistSuffix}`
3861
+ ).start();
3859
3862
  progress.setTicketId(ticket.ticket_id);
3860
3863
  await progress.setPhase("analysing", {
3861
- detail: `Generating fix prompt for #${ticket.sequence_number}`
3864
+ detail: ticket.specialist ? `Generating fix prompt for #${ticket.sequence_number} as ${ticket.specialist.name}` : `Generating fix prompt for #${ticket.sequence_number}`
3862
3865
  });
3863
3866
  try {
3864
3867
  const generated = await safeGenerate(ticket, claudePath);
@@ -5614,7 +5617,7 @@ function checkBinary(name, command) {
5614
5617
  }
5615
5618
 
5616
5619
  // src/commands/version.ts
5617
- var CLI_VERSION = true ? "0.2.18" : "0.0.0-dev";
5620
+ var CLI_VERSION = true ? "0.2.19" : "0.0.0-dev";
5618
5621
  function registerVersion(program2) {
5619
5622
  program2.command("version").description("Print the CLI version").action(() => {
5620
5623
  process.stdout.write(CLI_VERSION + "\n");