nairon-bench 0.0.35 → 0.0.37
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/index.js +13 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -23373,7 +23373,7 @@ var setupCommand = defineCommand2({
|
|
|
23373
23373
|
// package.json
|
|
23374
23374
|
var package_default = {
|
|
23375
23375
|
name: "nairon-bench",
|
|
23376
|
-
version: "0.0.
|
|
23376
|
+
version: "0.0.37",
|
|
23377
23377
|
description: "AI workflow benchmarking CLI",
|
|
23378
23378
|
type: "module",
|
|
23379
23379
|
bin: {
|
|
@@ -23457,12 +23457,20 @@ var RESET2 = "\x1B[0m";
|
|
|
23457
23457
|
function showBanner() {
|
|
23458
23458
|
const log = (msg) => process.stdout.write(msg + `
|
|
23459
23459
|
`);
|
|
23460
|
+
const GREEN = "\x1B[32m";
|
|
23461
|
+
const CYAN2 = "\x1B[36m";
|
|
23460
23462
|
log(renderMascot(VERSION, process.cwd()));
|
|
23461
|
-
log(`${YELLOW}Quick
|
|
23463
|
+
log(`${YELLOW}\u2501\u2501\u2501 Quick Start \u2501\u2501\u2501${RESET2}`);
|
|
23462
23464
|
log("");
|
|
23463
|
-
log(` ${BOLD2}nb init${RESET2}
|
|
23464
|
-
log(` ${BOLD2}nb scan${RESET2}
|
|
23465
|
-
log(` ${BOLD2}nb
|
|
23465
|
+
log(` ${GREEN}1.${RESET2} ${BOLD2}nb init${RESET2} Set up your profile (first time only)`);
|
|
23466
|
+
log(` ${GREEN}2.${RESET2} ${BOLD2}nb scan${RESET2} Analyze your AI coding sessions`);
|
|
23467
|
+
log(` ${GREEN}3.${RESET2} ${BOLD2}nb report --publish${RESET2} Generate & share your report`);
|
|
23468
|
+
log("");
|
|
23469
|
+
log(`${DIM2}\u250C\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510${RESET2}`);
|
|
23470
|
+
log(`${DIM2}\u2502${RESET2} ${CYAN2}How often?${RESET2} ${DIM2}\u2502${RESET2}`);
|
|
23471
|
+
log(`${DIM2}\u2502${RESET2} \u2022 Run ${BOLD2}nb scan${RESET2} after coding sessions ${DIM2}\u2502${RESET2}`);
|
|
23472
|
+
log(`${DIM2}\u2502${RESET2} \u2022 Run ${BOLD2}nb report${RESET2} weekly to track progress ${DIM2}\u2502${RESET2}`);
|
|
23473
|
+
log(`${DIM2}\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518${RESET2}`);
|
|
23466
23474
|
log("");
|
|
23467
23475
|
log(`${DIM2}Run ${BOLD2}nb --help${RESET2}${DIM2} for all commands${RESET2}`);
|
|
23468
23476
|
log("");
|