lazy-skill 0.4.0 → 0.5.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.
@@ -5,9 +5,11 @@ import { detectAgents } from "../adapters/index.js";
5
5
  import { THEMES, style } from "../ui/theme.js";
6
6
  import { boxWidth, visibleWidth } from "../ui/layout.js";
7
7
  import { renderQr } from "../ui/qr.js";
8
- import { blank, box, centre, fail, hint, line, muted, ok, status, welcome } from "../ui/layout.js";
8
+ import { blank, box, centre, fail, hint, line, muted, ok, status } from "../ui/layout.js";
9
+ import { banner, mascot } from "../ui/banner.js";
9
10
  import { messages } from "../ui/messages.js";
10
11
  import { Spinner } from "../ui/spinner.js";
12
+ const VERSION = "0.5.0";
11
13
  function friendlyPlatform() {
12
14
  const p = platform();
13
15
  return p === "darwin" || p === "win32" || p === "linux" ? p : "unknown";
@@ -24,7 +26,8 @@ export async function connectCommand(options) {
24
26
  const config = readConfig();
25
27
  const theme = THEMES[config.theme];
26
28
  blank();
27
- welcome(theme, "Welcome to Lazy Skill!");
29
+ for (const row of banner(theme, VERSION))
30
+ console.log(row);
28
31
  blank();
29
32
  hint("See it. Search it. Install it.");
30
33
  blank();
@@ -64,10 +67,18 @@ export async function connectCommand(options) {
64
67
  hint("Open Lazy Skill on your phone and scan this.");
65
68
  blank();
66
69
  // The QR is the one thing to act on, so it gets the box. Its own quiet zone
67
- // sits inside the border, untouched.
70
+ // sits inside the border, untouched — nothing is drawn over the modules.
68
71
  const plate = await renderQr(session.pairUrl);
69
72
  const width = plate.length ? visibleWidth(plate[0]) + 4 : boxWidth();
70
73
  box(theme, plate.map((row) => centre(row, width)), width);
74
+ // Bit sits under the code rather than over it: anything overlapping the
75
+ // module area would cost scan reliability for decoration.
76
+ blank();
77
+ const bit = mascot(theme, false);
78
+ for (let i = 0; i < bit.length; i++) {
79
+ const caption = i === 2 ? ` ${style.gray("waiting for your phone")}` : "";
80
+ console.log(` ${centre(bit[i], width - 18)}${caption}`);
81
+ }
71
82
  blank();
72
83
  muted(session.pairUrl);
73
84
  blank();
@@ -1,14 +1,14 @@
1
- import { createInterface } from "node:readline/promises";
2
1
  import { readConfig, updateConfig } from "../lib/config.js";
3
2
  import { THEMES, THEME_IDS, rgb, style } from "../ui/theme.js";
4
- import { blank, box, muted, ok, welcome } from "../ui/layout.js";
3
+ import { banner, mascot } from "../ui/banner.js";
4
+ import { pointer, select } from "../ui/select.js";
5
+ import { blank, muted, ok } from "../ui/layout.js";
5
6
  /**
6
7
  * Theme picker. The choice is stored locally and travels with the next
7
8
  * pairing, so the phone ends up on the same colour.
8
9
  */
9
- export async function themeCommand(requested) {
10
+ export async function themeCommand(requested, version) {
10
11
  const current = readConfig().theme;
11
- const theme = THEMES[current];
12
12
  if (requested) {
13
13
  const match = THEME_IDS.find((id) => id === requested);
14
14
  if (!match) {
@@ -25,41 +25,35 @@ export async function themeCommand(requested) {
25
25
  blank();
26
26
  return 0;
27
27
  }
28
+ const chosen = await select({
29
+ choices: THEME_IDS.map((id) => ({ value: id, label: THEMES[id].label })),
30
+ initial: THEME_IDS.indexOf(current),
31
+ render: (index) => {
32
+ const theme = THEMES[THEME_IDS[index]];
33
+ const bit = mascot(theme, true);
34
+ const out = [""];
35
+ out.push(...banner(theme, version));
36
+ out.push("");
37
+ THEME_IDS.forEach((themeId, i) => {
38
+ const t = THEMES[themeId];
39
+ const active = i === index;
40
+ const mark = themeId === current ? style.green("●") : style.gray("○");
41
+ // Pad before colouring: padEnd counts escape codes as characters, so
42
+ // padding a coloured string leaves the column ragged.
43
+ const padded = t.label.padEnd(14);
44
+ const label = active ? style.bold(padded) : style.gray(padded);
45
+ const beside = i >= 1 && i <= 5 ? " " + bit[i - 1] : "";
46
+ out.push(` ${pointer(active)} ${mark} ${rgb(t.accent, "████")} ${label}${beside}`);
47
+ });
48
+ out.push("");
49
+ out.push(` ${style.gray("↑ ↓ to move · enter to choose")}`);
50
+ out.push("");
51
+ return out;
52
+ },
53
+ });
54
+ updateConfig({ theme: chosen });
55
+ ok(`Theme set to ${rgb(THEMES[chosen].accent, THEMES[chosen].label)}.`);
56
+ muted("Connect again to carry it to your phone.");
28
57
  blank();
29
- welcome(theme, "Pick a colour");
30
- blank();
31
- box(theme, THEME_IDS.map((id, i) => {
32
- const t = THEMES[id];
33
- const marker = id === current ? style.green("●") : style.gray("○");
34
- return `${marker} ${style.gray(String(i + 1))} ${rgb(t.accent, "████")} ${t.label}`;
35
- }));
36
- blank();
37
- if (!process.stdin.isTTY) {
38
- muted("Not a terminal — pass an id, e.g. lazy-skill theme matrix-green");
39
- blank();
40
- return 0;
41
- }
42
- const rl = createInterface({ input: process.stdin, output: process.stdout });
43
- try {
44
- const answer = (await rl.question(` Number ${style.gray("(enter to keep)")} `)).trim();
45
- if (!answer)
46
- return 0;
47
- const index = Number(answer) - 1;
48
- if (!Number.isInteger(index) || index < 0 || index >= THEME_IDS.length) {
49
- blank();
50
- muted("Not one of those. Theme unchanged.");
51
- blank();
52
- return 1;
53
- }
54
- const chosen = THEME_IDS[index];
55
- updateConfig({ theme: chosen });
56
- blank();
57
- ok(`Theme set to ${rgb(THEMES[chosen].accent, THEMES[chosen].label)}.`);
58
- muted("Connect again to carry it to your phone.");
59
- blank();
60
- return 0;
61
- }
62
- finally {
63
- rl.close();
64
- }
58
+ return 0;
65
59
  }
package/dist/index.js CHANGED
@@ -10,7 +10,7 @@ import { installCommand } from "./commands/install.js";
10
10
  import { themeCommand } from "./commands/theme.js";
11
11
  import { listenCommand } from "./commands/listen.js";
12
12
  import { warnIfOutdated } from "./lib/version-check.js";
13
- const VERSION = "0.4.0";
13
+ const VERSION = "0.5.0";
14
14
  function help() {
15
15
  const theme = THEMES[readConfig().theme];
16
16
  const cmd = (name) => rgb(theme.accent, name.padEnd(26));
@@ -66,7 +66,7 @@ async function main() {
66
66
  // when it pairs a moment later. Only on a genuinely first run, and never
67
67
  // for `theme`, which asks on its own.
68
68
  if (isFirstRun() && command !== "theme") {
69
- updateConfig({ theme: await chooseTheme() });
69
+ updateConfig({ theme: await chooseTheme(VERSION) });
70
70
  }
71
71
  if (longRunning)
72
72
  await warnIfOutdated(VERSION, THEMES[readConfig().theme]);
@@ -91,7 +91,7 @@ async function main() {
91
91
  case "skills":
92
92
  return skillsCommand();
93
93
  case "theme":
94
- return themeCommand(positional[1]);
94
+ return themeCommand(positional[1], VERSION);
95
95
  case "install": {
96
96
  const agentFlag = argv.find((a) => a.startsWith("--agent="))?.split("=")[1];
97
97
  const yes = flags.has("-y") || flags.has("--yes");
@@ -0,0 +1,61 @@
1
+ import { rgb, style } from "./theme.js";
2
+ /**
3
+ * The wordmark, drawn as blocks.
4
+ *
5
+ * Only the seven letters in LAZY SKILL are defined — a full alphabet would be
6
+ * dead weight for a name that never changes. Five rows tall, which reads as a
7
+ * logo without eating half the terminal.
8
+ */
9
+ const GLYPHS = {
10
+ L: ["█ ", "█ ", "█ ", "█ ", "████"],
11
+ A: [" ██ ", "█ █", "████", "█ █", "█ █"],
12
+ Z: ["████", " █", " ██ ", "█ ", "████"],
13
+ Y: ["█ █", "█ █", " ██ ", " █ ", " █ "],
14
+ S: [" ███", "█ ", " ██ ", " █", "███ "],
15
+ K: ["█ █", "█ █ ", "██ ", "█ █ ", "█ █"],
16
+ I: ["███", " █ ", " █ ", " █ ", "███"],
17
+ " ": [" ", " ", " ", " ", " "],
18
+ };
19
+ const ROWS = 5;
20
+ function render(word) {
21
+ const lines = Array.from({ length: ROWS }, () => "");
22
+ for (const char of word.toUpperCase()) {
23
+ const glyph = GLYPHS[char];
24
+ if (!glyph)
25
+ continue;
26
+ for (let r = 0; r < ROWS; r++)
27
+ lines[r] += glyph[r] + " ";
28
+ }
29
+ return lines;
30
+ }
31
+ /**
32
+ * `LAZY` in the terminal's own ink and `SKILL` in the theme accent, matching
33
+ * the two-tone split the web app uses.
34
+ */
35
+ export function banner(theme, version) {
36
+ const left = render("LAZY");
37
+ const right = render("SKILL");
38
+ const lines = left.map((row, i) => ` ${style.bold(row)} ${rgb(theme.accent, style.bold(right[i]))}`);
39
+ // The version sits on the last row, trailing the mark like a signature.
40
+ lines[ROWS - 1] += ` ${style.gray("v" + version)}`;
41
+ return lines;
42
+ }
43
+ /**
44
+ * Bit, in blocks, for sitting beside things.
45
+ *
46
+ * A deliberately small silhouette — the hood, the closed eyes, the muzzle.
47
+ * Anything more detailed turns to mush at terminal resolution.
48
+ */
49
+ export function mascot(theme, awake = false) {
50
+ const hood = (t) => rgb(theme.accent, t);
51
+ // Every row is exactly ten cells wide. Ragged rows shear the silhouette,
52
+ // and the colour codes make it impossible to eyeball.
53
+ const eyes = awake ? `${style.bold("o")} ${style.bold("o")}` : "- -";
54
+ return [
55
+ hood(" ▄████▄ "),
56
+ hood(" ██") + style.gray("‾‾‾‾") + hood("██ "),
57
+ hood(" █ ") + eyes + hood(" █ "),
58
+ hood(" █ ") + style.gray("‿‿") + hood(" █ "),
59
+ hood(" ▀████▀ "),
60
+ ];
61
+ }
@@ -1,47 +1,44 @@
1
- import { createInterface } from "node:readline/promises";
2
1
  import { THEMES, THEME_IDS, rgb, style } from "./theme.js";
3
- import { blank, box, hint, line, muted, welcome } from "./layout.js";
2
+ import { banner, mascot } from "./banner.js";
3
+ import { pointer, select } from "./select.js";
4
4
  /**
5
- * First-run theme choice.
5
+ * First-run theme choice, with live preview.
6
6
  *
7
- * Asked once, before anything else, because the answer applies to both halves
8
- * of the product: the terminal colours itself, and the phone adopts the same
9
- * theme the moment it pairs. Choosing later in two places would be two
10
- * chances to end up mismatched.
7
+ * The whole screen wordmark, mascot, pointer repaints in whichever theme
8
+ * is under the cursor, so the choice is made by looking rather than by
9
+ * imagining. It is asked once because it applies to both halves of the
10
+ * product: the terminal colours itself, and the phone adopts the same theme
11
+ * the moment it pairs.
11
12
  */
12
- export async function chooseTheme() {
13
- const fallback = "cyber-purple";
14
- const theme = THEMES[fallback];
15
- blank();
16
- welcome(theme, "Welcome to Lazy Skill!");
17
- blank();
18
- hint("Pick a colour. Your phone will match it when you connect.");
19
- blank();
20
- box(theme, THEME_IDS.map((id, i) => {
21
- const t = THEMES[id];
22
- return `${style.gray(String(i + 1))} ${rgb(t.accent, "████")} ${t.label}`;
23
- }));
24
- blank();
25
- // A pipe or a CI job has nobody to ask.
26
- if (!process.stdin.isTTY) {
27
- muted("Not a terminal using Purple Night. Change it with: lazy-skill theme");
28
- blank();
29
- return fallback;
30
- }
31
- const rl = createInterface({ input: process.stdin, output: process.stdout });
32
- try {
33
- const answer = (await rl.question(` Number ${style.gray("(enter for 1)")} `)).trim();
34
- if (!answer)
35
- return fallback;
36
- const index = Number(answer) - 1;
37
- if (!Number.isInteger(index) || index < 0 || index >= THEME_IDS.length) {
38
- // Not worth a re-prompt: the choice is cosmetic and changeable.
39
- line(style.gray(" Not one of those — using Purple Night."));
40
- return fallback;
41
- }
42
- return THEME_IDS[index];
43
- }
44
- finally {
45
- rl.close();
46
- }
13
+ export async function chooseTheme(version) {
14
+ const rows = (index) => {
15
+ const id = THEME_IDS[index];
16
+ const theme = THEMES[id];
17
+ const bit = mascot(theme, true);
18
+ const out = [""];
19
+ out.push(...banner(theme, version));
20
+ out.push("");
21
+ out.push(` ${style.gray("Pick a colour. Your phone will match it when you connect.")}`);
22
+ out.push("");
23
+ THEME_IDS.forEach((themeId, i) => {
24
+ const t = THEMES[themeId];
25
+ const active = i === index;
26
+ const swatch = rgb(t.accent, "████");
27
+ // Pad before colouring: padEnd counts escape codes as characters, so
28
+ // padding a coloured string leaves the column ragged.
29
+ const padded = t.label.padEnd(14);
30
+ const label = active ? style.bold(padded) : style.gray(padded);
31
+ // The mascot sits beside the list, aligned to its middle rows.
32
+ const beside = i >= 1 && i <= 5 ? " " + bit[i - 1] : "";
33
+ out.push(` ${pointer(active)} ${swatch} ${label}${beside}`);
34
+ });
35
+ out.push("");
36
+ out.push(` ${style.gray("↑ ↓ to move · enter to choose")}`);
37
+ out.push("");
38
+ return out;
39
+ };
40
+ return select({
41
+ choices: THEME_IDS.map((id) => ({ value: id, label: THEMES[id].label })),
42
+ render: rows,
43
+ });
47
44
  }
@@ -0,0 +1,86 @@
1
+ import { emitKeypressEvents } from "node:readline";
2
+ import { style, hasColor } from "./theme.js";
3
+ /**
4
+ * Arrow-key selection with live redraw.
5
+ *
6
+ * Raw mode rather than a prompt library: the whole dependency would exist to
7
+ * read four escape sequences. Cursor state is restored in a `finally` and on
8
+ * SIGINT — leaving a terminal with a hidden cursor and no echo is a genuinely
9
+ * hostile thing to do to someone who pressed Ctrl-C.
10
+ */
11
+ export async function select({ choices, initial = 0, render, }) {
12
+ const stdin = process.stdin;
13
+ // No TTY means nobody to ask; a pipe or CI takes the default.
14
+ if (!stdin.isTTY || !hasColor) {
15
+ for (const row of render(initial))
16
+ console.log(row);
17
+ return choices[initial].value;
18
+ }
19
+ let index = Math.max(0, Math.min(initial, choices.length - 1));
20
+ let painted = 0;
21
+ const paint = () => {
22
+ // Move back over what was drawn last time and overwrite it, so the list
23
+ // updates in place instead of scrolling.
24
+ if (painted > 0)
25
+ process.stdout.write(`\x1b[${painted}A`);
26
+ const rows = render(index);
27
+ for (const row of rows)
28
+ process.stdout.write(`\r\x1b[K${row}\n`);
29
+ painted = rows.length;
30
+ };
31
+ emitKeypressEvents(stdin);
32
+ const wasRaw = stdin.isRaw;
33
+ stdin.setRawMode(true);
34
+ stdin.resume();
35
+ process.stdout.write("\x1b[?25l"); // hide cursor
36
+ const restore = () => {
37
+ process.stdout.write("\x1b[?25h");
38
+ stdin.setRawMode(Boolean(wasRaw));
39
+ stdin.pause();
40
+ };
41
+ return new Promise((resolve) => {
42
+ const onKey = (_chunk, key) => {
43
+ if (!key)
44
+ return;
45
+ if (key.name === "up" || key.name === "k") {
46
+ index = (index - 1 + choices.length) % choices.length;
47
+ paint();
48
+ return;
49
+ }
50
+ if (key.name === "down" || key.name === "j") {
51
+ index = (index + 1) % choices.length;
52
+ paint();
53
+ return;
54
+ }
55
+ if (key.name === "return" || key.name === "space") {
56
+ cleanup();
57
+ resolve(choices[index].value);
58
+ return;
59
+ }
60
+ // Ctrl-C and Escape both accept the highlighted value rather than
61
+ // throwing: this choice is cosmetic, and refusing to continue over it
62
+ // would be worse than picking the one under the cursor.
63
+ if ((key.ctrl && key.name === "c") || key.name === "escape") {
64
+ cleanup();
65
+ resolve(choices[index].value);
66
+ return;
67
+ }
68
+ // Number keys jump straight to a row.
69
+ const digit = Number(key.name);
70
+ if (Number.isInteger(digit) && digit >= 1 && digit <= choices.length) {
71
+ index = digit - 1;
72
+ paint();
73
+ }
74
+ };
75
+ const cleanup = () => {
76
+ stdin.off("keypress", onKey);
77
+ restore();
78
+ };
79
+ stdin.on("keypress", onKey);
80
+ paint();
81
+ });
82
+ }
83
+ /** The pointer column for a row. */
84
+ export function pointer(active) {
85
+ return active ? style.bold("❯") : " ";
86
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lazy-skill",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "Found an AI skill while scrolling? Install it to your computer from your phone.",
5
5
  "type": "module",
6
6
  "bin": {