shadok-ai 0.7.2 → 0.7.4

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/README.md CHANGED
@@ -559,3 +559,18 @@ update breaks the detection).
559
559
  engine room (`waitFor()` + `press()` in library mode).
560
560
  - The TUI runs in the alternate screen: `fullBuffer()` ≈ visible screen;
561
561
  very long responses scroll out of view (increase `rows` if needed).
562
+
563
+ ## Why it is called that
564
+
565
+ Les Shadoks were French cartoon birds, drawn by Jacques Rouxel in 1968, and the
566
+ whole joke was that they pumped. Relentlessly, exhaustingly, and for no result
567
+ anyone could ever identify. One of their mottos: *the more it fails, the more
568
+ likely it is to work.*
569
+
570
+ An agent woken every hour to report that nothing happened is pumping. You pay a
571
+ model call to be told there was nothing to do, and it will tell you that
572
+ twenty-three more times today. Hence the guard in `crons.ts`: the check runs
573
+ without the model, and a quiet hour costs nothing at all.
574
+
575
+ The name went unexplained here for the project's first month, which is a
576
+ strange thing to leave out of a README when the joke *is* the design.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shadok-ai",
3
- "version": "0.7.2",
3
+ "version": "0.7.4",
4
4
  "main": "dist/session.js",
5
5
  "scripts": {
6
6
  "test": "node --import tsx --test test/*.ts .claude/skills/shadok-ai-agents/test/*.test.mjs context/*/test/*.test.mjs",
@@ -58,10 +58,14 @@ export const TOUR_STEPS = [
58
58
  {
59
59
  id: "tools",
60
60
  title: "The toolbar",
61
+ // Named in the order the spotlight frames them, NOT drawn as glyphs: this
62
+ // body is set with textContent, so an inline SVG icon would show as raw
63
+ // markup — and spelling the buttons out as emoji (🔑/👤/🔔) drifts the
64
+ // moment those buttons stop being emoji, which is exactly what happened.
61
65
  body:
62
- "🔑 secrets injected into agents that need them · 👤 profiles (role, guardrails, model) · " +
63
- "Telegram settings · 🔔 notifications · ⋯ for the diff of what an agent changed " +
64
- "and to replay this tour.",
66
+ "Left to right: secrets injected into agents that need them, profiles " +
67
+ "(role, guardrails, model), Telegram settings, and the notification sound. " +
68
+ "The ⋯ holds the diff of what an agent changed — and replays this tour.",
65
69
  // NOT `.hdr-tools`, which is `display: contents` on desktop and therefore
66
70
  // generates no box at all — its rect is all zeros, so the step would have
67
71
  // been dropped as "not visible" on the very layout where the toolbar is