sidekick-agent-hub 0.12.0 → 0.12.1
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/sidekick-cli.mjs +3 -3
- package/package.json +1 -1
package/dist/sidekick-cli.mjs
CHANGED
|
@@ -49517,7 +49517,7 @@ function StatusBar({
|
|
|
49517
49517
|
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Text, { bold: true, color: "magenta", children: "\u26A1 SIDEKICK" }),
|
|
49518
49518
|
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(Text, { color: "gray", children: [
|
|
49519
49519
|
" v",
|
|
49520
|
-
"0.12.
|
|
49520
|
+
"0.12.1"
|
|
49521
49521
|
] }),
|
|
49522
49522
|
providerName && /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(import_jsx_runtime7.Fragment, { children: [
|
|
49523
49523
|
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Text, { color: "gray", children: " | " }),
|
|
@@ -49647,7 +49647,7 @@ function SplashOverlay() {
|
|
|
49647
49647
|
" ",
|
|
49648
49648
|
/* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(Text, { color: "gray", children: [
|
|
49649
49649
|
"Terminal Dashboard v",
|
|
49650
|
-
"0.12.
|
|
49650
|
+
"0.12.1"
|
|
49651
49651
|
] })
|
|
49652
49652
|
] }),
|
|
49653
49653
|
/* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(Text, { children: [
|
|
@@ -51105,7 +51105,7 @@ var init_cli = __esm({
|
|
|
51105
51105
|
import_sidekick_shared4 = __toESM(require_dist(), 1);
|
|
51106
51106
|
import_sidekick_shared5 = __toESM(require_dist(), 1);
|
|
51107
51107
|
program2 = new Command();
|
|
51108
|
-
program2.name("sidekick").description("Query Sidekick project intelligence from the command line").version("0.12.
|
|
51108
|
+
program2.name("sidekick").description("Query Sidekick project intelligence from the command line").version("0.12.1").option("--json", "Output as JSON").option("--project <path>", "Override project path (default: cwd)").option("--provider <id>", "Provider: claude-code, opencode, codex, auto (default: auto)");
|
|
51109
51109
|
dashCmd = new Command("dashboard").description("Full-screen TUI dashboard with live session metrics").option("--session <id>", "Follow a specific session (default: most recent)").option("--replay", "Replay existing events before streaming new ones").action(async (_opts, cmd) => {
|
|
51110
51110
|
const { dashboardAction: dashboardAction2 } = await init_dashboard().then(() => dashboard_exports);
|
|
51111
51111
|
return dashboardAction2(_opts, cmd);
|