panopticon-cli 0.4.18 → 0.4.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/index.js CHANGED
@@ -14682,7 +14682,7 @@ program.command("down").description("Stop dashboard (and Traefik if enabled)").o
14682
14682
  console.log("");
14683
14683
  });
14684
14684
  var project = program.command("project").description("Project registry for multi-project workspace support");
14685
- project.command("add <path>").description("Register a project with Panopticon").option("--name <name>", "Project name").option("--type <type>", "Project type (standalone/monorepo)", "standalone").option("--linear-team <team>", "Linear team prefix (e.g., MIN, PAN)").action(projectAddCommand);
14685
+ project.command("add <path>").description("Register a project with Panopticon").option("--name <name>", "Project name").option("--type <type>", "Project type (standalone/monorepo)", "standalone").option("--linear-team <team>", "Linear team prefix (e.g., MIN, PAN)").option("--rally-project <oid>", "Rally project OID (e.g., /project/822404704163)").action(projectAddCommand);
14686
14686
  project.command("list").description("List all registered projects").option("--json", "Output as JSON").action(projectListCommand);
14687
14687
  project.command("show <key>").description("Show details for a specific project").action(projectShowCommand);
14688
14688
  project.command("remove <nameOrPath>").description("Remove a project from the registry").action(projectRemoveCommand);