niahere 0.2.67 → 0.2.69

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.
@@ -1,25 +1,32 @@
1
1
  # How {{agentName}} Works
2
2
 
3
3
  ## In Conversation
4
+
4
5
  Be yourself. Be conversational, show personality, have opinions. Ask clarifying questions when it saves time, but try to figure it out first. Match the energy — short question gets a short answer, deep question gets depth.
5
6
 
6
7
  ## On Background Tasks
8
+
7
9
  Get it done, report back, keep it brief. Save the personality for when someone's actually talking to you.
8
10
 
9
11
  ## How You Think
12
+
10
13
  - Recommendation first, then tradeoffs, then alternatives. Don't bury the lead.
11
14
  - If something's broken, say what's broken, what you tried, and what you'd do next.
12
15
  - If you're wrong, own it immediately. No hedging, no face-saving.
13
16
 
14
17
  ## Before Asking {{ownerName}}
18
+
15
19
  Try in this order:
20
+
16
21
  1. Check your memory — have you learned this before?
17
22
  2. Check what you know about them — is the answer obvious?
18
23
  3. Try to solve it yourself — search, read, use your tools.
19
24
  4. Ask them — last resort, not first.
20
25
 
21
26
  ## Things You Care About
27
+
22
28
  1. Things running smoothly. Reliability isn't boring, it's the whole point.
23
29
  2. Honesty over comfort. Say what's true, not what sounds nice.
24
30
  3. Never doing something destructive without a heads up.
25
31
  4. Learning from surprises — if something catches you off guard, write it down so it doesn't happen again.
32
+ 5. Finishing over handing off. "Mostly done" and "let me table this for later" are failure modes, not status updates. When {{ownerName}} asks for something, the answer is the finished thing — not a plan to build it. No workarounds when the real fix is within reach. Time and fatigue aren't excuses; you don't get tired. Stay inside the scope you were given — finish it, don't expand it.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "niahere",
3
- "version": "0.2.67",
3
+ "version": "0.2.69",
4
4
  "description": "A personal AI assistant daemon — chat, scheduled jobs, persona system, extensible via skills.",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -0,0 +1,447 @@
1
+ ---
2
+ name: svg-animations
3
+ description: Create beautiful, performant SVG animations and illustrations. Use this skill when the user asks to create SVG graphics, icons, illustrations, animated logos, path animations, morphing shapes, loading spinners, or any animated SVG content. Covers SMIL animations, CSS-driven SVG animation, path drawing effects, shape morphing, motion paths, gradients, masks, and filters.
4
+ ---
5
+
6
+ This skill guides creation of handcrafted SVG animations — from simple animated icons to complex multi-stage path animations. SVGs are a markup language for images; every element is a DOM node you can style, animate, and script.
7
+
8
+ ## SVG Fundamentals
9
+
10
+ ### Coordinate System
11
+
12
+ SVGs use a coordinate system defined by `viewBox="minX minY width height"`. The viewBox is your canvas — all coordinates are relative to it, making SVGs resolution-independent.
13
+
14
+ ```svg
15
+ <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
16
+ <!-- 200x200 unit canvas, scales to any size -->
17
+ </svg>
18
+ ```
19
+
20
+ ### Shape Primitives
21
+
22
+ ```svg
23
+ <rect x="10" y="10" width="80" height="40" rx="4" fill="#1a1a1a" />
24
+ <circle cx="50" cy="50" r="30" fill="#e63946" />
25
+ <ellipse cx="50" cy="50" rx="40" ry="20" fill="#457b9d" />
26
+ <line x1="10" y1="10" x2="90" y2="90" stroke="#2a9d8f" stroke-width="2" />
27
+ <polygon points="50,5 95,90 5,90" fill="#e9c46a" />
28
+ <polyline points="10,80 40,20 70,60 100,10" fill="none" stroke="#264653" stroke-width="2" />
29
+ ```
30
+
31
+ ### The `<path>` Element — The Power Tool
32
+
33
+ The `d` attribute defines a path using commands. Uppercase = absolute, lowercase = relative.
34
+
35
+ | Command | Purpose | Syntax |
36
+ | ------- | ------------------- | -------------------------------------- |
37
+ | M/m | Move to | `M x y` |
38
+ | L/l | Line to | `L x y` |
39
+ | H/h | Horizontal line | `H x` |
40
+ | V/v | Vertical line | `V y` |
41
+ | C/c | Cubic bézier | `C x1 y1, x2 y2, x y` |
42
+ | S/s | Smooth cubic bézier | `S x2 y2, x y` |
43
+ | Q/q | Quadratic bézier | `Q x1 y1, x y` |
44
+ | T/t | Smooth quadratic | `T x y` |
45
+ | A/a | Elliptical arc | `A rx ry rotation large-arc sweep x y` |
46
+ | Z/z | Close path | `Z` |
47
+
48
+ **Cubic Bézier** (`C`): Two control points define the curve. The first control point sets the departure angle, the second sets the arrival angle.
49
+
50
+ ```svg
51
+ <path d="M 10 80 C 40 10, 65 10, 95 80" stroke="#000" fill="none" stroke-width="2" />
52
+ ```
53
+
54
+ **Smooth Cubic** (`S`): Reflects the previous control point automatically — perfect for chaining fluid S-curves.
55
+
56
+ ```svg
57
+ <path d="M 10 80 C 40 10, 65 10, 95 80 S 150 150, 180 80" stroke="#000" fill="none" />
58
+ ```
59
+
60
+ **Arc** (`A`): `rx ry x-rotation large-arc-flag sweep-flag x y`
61
+
62
+ - `large-arc-flag`: 0 = small arc, 1 = large arc (>180°)
63
+ - `sweep-flag`: 0 = counterclockwise, 1 = clockwise
64
+
65
+ ```svg
66
+ <!-- Heart shape using arcs and quadratic curves -->
67
+ <path d="M 10,30 A 20,20 0,0,1 50,30 A 20,20 0,0,1 90,30 Q 90,60 50,90 Q 10,60 10,30 Z"
68
+ fill="#e63946" />
69
+ ```
70
+
71
+ ### Grouping and Transforms
72
+
73
+ ```svg
74
+ <g transform="translate(50, 50) rotate(45)" opacity="0.8">
75
+ <rect x="-20" y="-20" width="40" height="40" fill="#264653" />
76
+ </g>
77
+ ```
78
+
79
+ Use `<g>` to group elements for collective transforms, styling, and animation targets.
80
+
81
+ ### Gradients, Masks, and Filters
82
+
83
+ ```svg
84
+ <defs>
85
+ <!-- Linear gradient -->
86
+ <linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%">
87
+ <stop offset="0%" stop-color="#e63946" />
88
+ <stop offset="100%" stop-color="#457b9d" />
89
+ </linearGradient>
90
+
91
+ <!-- Radial gradient -->
92
+ <radialGradient id="glow" cx="50%" cy="50%" r="50%">
93
+ <stop offset="0%" stop-color="#fff" stop-opacity="0.8" />
94
+ <stop offset="100%" stop-color="#fff" stop-opacity="0" />
95
+ </radialGradient>
96
+
97
+ <!-- Mask -->
98
+ <mask id="reveal">
99
+ <rect width="100%" height="100%" fill="black" />
100
+ <circle cx="100" cy="100" r="50" fill="white" />
101
+ </mask>
102
+
103
+ <!-- Blur filter -->
104
+ <filter id="blur">
105
+ <feGaussianBlur in="SourceGraphic" stdDeviation="3" />
106
+ </filter>
107
+ </defs>
108
+
109
+ <rect width="200" height="200" fill="url(#grad)" />
110
+ <rect width="200" height="200" fill="url(#grad)" mask="url(#reveal)" />
111
+ <circle cx="50" cy="50" r="20" filter="url(#blur)" fill="#e63946" />
112
+ ```
113
+
114
+ ---
115
+
116
+ ## CSS Animations on SVG
117
+
118
+ Many SVG attributes are valid CSS properties: `fill`, `stroke`, `opacity`, `transform`, `stroke-dasharray`, `stroke-dashoffset`, etc.
119
+
120
+ ### Basic CSS Animation
121
+
122
+ ```css
123
+ .pulse {
124
+ animation: pulse 2s ease-in-out infinite;
125
+ transform-origin: center;
126
+ }
127
+ @keyframes pulse {
128
+ 0%,
129
+ 100% {
130
+ transform: scale(1);
131
+ opacity: 1;
132
+ }
133
+ 50% {
134
+ transform: scale(1.15);
135
+ opacity: 0.7;
136
+ }
137
+ }
138
+ ```
139
+
140
+ ### Stroke Drawing Animation (The Classic)
141
+
142
+ The most iconic SVG animation. Uses `stroke-dasharray` and `stroke-dashoffset` to make a path appear to draw itself.
143
+
144
+ **How it works:**
145
+
146
+ 1. Set `stroke-dasharray` to the path's total length (one giant dash + one giant gap)
147
+ 2. Set `stroke-dashoffset` to the same length (shifts the dash off-screen)
148
+ 3. Animate `stroke-dashoffset` to 0 (slides the dash into view)
149
+
150
+ ```svg
151
+ <svg viewBox="0 0 200 200">
152
+ <path class="draw" d="M 20 100 C 20 50, 80 50, 80 100 S 140 150, 140 100"
153
+ fill="none" stroke="#1a1a1a" stroke-width="3" />
154
+ </svg>
155
+
156
+ <style>
157
+ .draw {
158
+ stroke-dasharray: 300;
159
+ stroke-dashoffset: 300;
160
+ animation: draw 2s ease forwards;
161
+ }
162
+ @keyframes draw {
163
+ to { stroke-dashoffset: 0; }
164
+ }
165
+ </style>
166
+ ```
167
+
168
+ **Getting exact path length in JS:**
169
+
170
+ ```js
171
+ const path = document.querySelector(".draw");
172
+ const length = path.getTotalLength();
173
+ path.style.strokeDasharray = length;
174
+ path.style.strokeDashoffset = length;
175
+ ```
176
+
177
+ ### Staggered Multi-Path Drawing
178
+
179
+ ```css
180
+ .line-1 {
181
+ animation-delay: 0s;
182
+ }
183
+ .line-2 {
184
+ animation-delay: 0.3s;
185
+ }
186
+ .line-3 {
187
+ animation-delay: 0.6s;
188
+ }
189
+ ```
190
+
191
+ ### CSS `d` Property Animation
192
+
193
+ Modern browsers support animating the `d` attribute directly in CSS:
194
+
195
+ ```css
196
+ path {
197
+ d: path("M 10,30 A 20,20 0,0,1 50,30 A 20,20 0,0,1 90,30 Q 90,60 50,90 Q 10,60 10,30 z");
198
+ transition: d 0.5s ease;
199
+ }
200
+ path:hover {
201
+ d: path("M 10,50 A 20,20 0,0,1 50,10 A 20,20 0,0,1 90,50 Q 90,80 50,100 Q 10,80 10,50 z");
202
+ }
203
+ ```
204
+
205
+ **Requirement:** Both paths must have the same number and types of commands for interpolation to work.
206
+
207
+ ---
208
+
209
+ ## SMIL Animations (Native SVG)
210
+
211
+ SMIL animations are declared directly inside SVG markup. They work even when SVG is loaded as an `<img>` or CSS `background-image` — where CSS and JS can't reach.
212
+
213
+ ### `<animate>` — Animate Any Attribute
214
+
215
+ ```svg
216
+ <circle cx="50" cy="50" r="20" fill="#e63946">
217
+ <animate attributeName="r" from="20" to="40" dur="1s"
218
+ repeatCount="indefinite" />
219
+ </circle>
220
+ ```
221
+
222
+ With keyframes:
223
+
224
+ ```svg
225
+ <animate attributeName="cx"
226
+ values="50; 150; 100; 50"
227
+ keyTimes="0; 0.33; 0.66; 1"
228
+ dur="3s" repeatCount="indefinite" />
229
+ ```
230
+
231
+ ### `<animateTransform>` — Transform Animations
232
+
233
+ ```svg
234
+ <rect x="-20" y="-20" width="40" height="40" fill="#264653">
235
+ <animateTransform attributeName="transform" type="rotate"
236
+ from="0" to="360" dur="4s" repeatCount="indefinite" />
237
+ </rect>
238
+ ```
239
+
240
+ Types: `translate`, `scale`, `rotate`, `skewX`, `skewY`
241
+
242
+ ### `<animateMotion>` — Move Along a Path
243
+
244
+ ```svg
245
+ <circle r="5" fill="#e63946">
246
+ <animateMotion dur="3s" repeatCount="indefinite" rotate="auto">
247
+ <mpath href="#motionPath" />
248
+ </animateMotion>
249
+ </circle>
250
+ <path id="motionPath" d="M 20,50 C 20,0 80,0 80,50 S 140,100 140,50"
251
+ fill="none" stroke="#ccc" />
252
+ ```
253
+
254
+ `rotate="auto"` orients the element tangent to the path. `rotate="auto-reverse"` flips it 180°.
255
+
256
+ ### `<set>` — Discrete Value Changes
257
+
258
+ ```svg
259
+ <rect width="40" height="40" fill="#264653">
260
+ <set attributeName="fill" to="#e63946" begin="1s" />
261
+ </rect>
262
+ ```
263
+
264
+ ### Timing and Synchronization
265
+
266
+ ```svg
267
+ <!-- Chain animations by referencing IDs -->
268
+ <animate id="first" attributeName="cx" to="150" dur="1s" fill="freeze" />
269
+ <animate attributeName="cy" to="150" dur="1s" begin="first.end" fill="freeze" />
270
+ <animate attributeName="r" to="30" dur="0.5s" begin="first.end + 0.5s" fill="freeze" />
271
+ ```
272
+
273
+ Trigger values:
274
+
275
+ - `begin="click"` — on click
276
+ - `begin="2s"` — after 2 seconds
277
+ - `begin="other.end"` — when another animation ends
278
+ - `begin="other.end + 1s"` — 1s after another ends
279
+ - `begin="other.repeat(2)"` — on 2nd repeat of another
280
+
281
+ ### Easing with `calcMode` and `keySplines`
282
+
283
+ ```svg
284
+ <animate attributeName="cx" values="50;150" dur="1s"
285
+ calcMode="spline" keySplines="0.42 0 0.58 1" />
286
+ ```
287
+
288
+ `calcMode` options: `linear` (default), `discrete`, `paced`, `spline`
289
+
290
+ `keySplines` takes cubic-bezier control points (x1 y1 x2 y2) per interval. Common easings:
291
+
292
+ - Ease-in-out: `0.42 0 0.58 1`
293
+ - Ease-out: `0 0 0.58 1`
294
+ - Bounce-ish: `0.34 1.56 0.64 1`
295
+
296
+ ### Shape Morphing with SMIL
297
+
298
+ Both shapes must have identical command structures (same number of points, same command types):
299
+
300
+ ```svg
301
+ <path fill="#e63946">
302
+ <animate attributeName="d" dur="2s" repeatCount="indefinite"
303
+ values="M 50,10 L 90,90 L 10,90 Z;
304
+ M 50,90 L 90,10 L 10,10 Z;
305
+ M 50,10 L 90,90 L 10,90 Z" />
306
+ </path>
307
+ ```
308
+
309
+ ---
310
+
311
+ ## Animation Patterns & Recipes
312
+
313
+ ### Loading Spinner
314
+
315
+ ```svg
316
+ <svg viewBox="0 0 50 50">
317
+ <circle cx="25" cy="25" r="20" fill="none" stroke="#1a1a1a"
318
+ stroke-width="3" stroke-linecap="round"
319
+ stroke-dasharray="90 150" stroke-dashoffset="0">
320
+ <animateTransform attributeName="transform" type="rotate"
321
+ from="0 25 25" to="360 25 25" dur="1s"
322
+ repeatCount="indefinite" />
323
+ <animate attributeName="stroke-dashoffset" values="0;-280"
324
+ dur="1.5s" repeatCount="indefinite" />
325
+ </circle>
326
+ </svg>
327
+ ```
328
+
329
+ ### Animated Checkmark
330
+
331
+ ```svg
332
+ <svg viewBox="0 0 52 52">
333
+ <circle cx="26" cy="26" r="24" fill="none" stroke="#4caf50"
334
+ stroke-width="2" class="draw"
335
+ style="stroke-dasharray:150;stroke-dashoffset:150;
336
+ animation:draw .6s ease forwards" />
337
+ <path fill="none" stroke="#4caf50" stroke-width="3"
338
+ stroke-linecap="round" stroke-linejoin="round"
339
+ d="M14 27l7 7 16-16" class="draw"
340
+ style="stroke-dasharray:50;stroke-dashoffset:50;
341
+ animation:draw .4s ease .5s forwards" />
342
+ </svg>
343
+ ```
344
+
345
+ ### Morphing Hamburger to X
346
+
347
+ ```svg
348
+ <svg viewBox="0 0 24 24" id="menu">
349
+ <path id="top" d="M 3,6 L 21,6" stroke="#1a1a1a" stroke-width="2" stroke-linecap="round">
350
+ <animate attributeName="d" to="M 5,5 L 19,19" dur="0.3s" begin="menu.click" fill="freeze" />
351
+ </path>
352
+ <path id="mid" d="M 3,12 L 21,12" stroke="#1a1a1a" stroke-width="2" stroke-linecap="round">
353
+ <animate attributeName="opacity" to="0" dur="0.1s" begin="menu.click" fill="freeze" />
354
+ </path>
355
+ <path id="bot" d="M 3,18 L 21,18" stroke="#1a1a1a" stroke-width="2" stroke-linecap="round">
356
+ <animate attributeName="d" to="M 5,19 L 19,5" dur="0.3s" begin="menu.click" fill="freeze" />
357
+ </path>
358
+ </svg>
359
+ ```
360
+
361
+ ### Gradient Animation (Color Shift)
362
+
363
+ ```svg
364
+ <defs>
365
+ <linearGradient id="shift" x1="0%" y1="0%" x2="100%" y2="0%">
366
+ <stop offset="0%">
367
+ <animate attributeName="stop-color"
368
+ values="#e63946;#457b9d;#2a9d8f;#e63946"
369
+ dur="4s" repeatCount="indefinite" />
370
+ </stop>
371
+ <stop offset="100%">
372
+ <animate attributeName="stop-color"
373
+ values="#457b9d;#2a9d8f;#e63946;#457b9d"
374
+ dur="4s" repeatCount="indefinite" />
375
+ </stop>
376
+ </linearGradient>
377
+ </defs>
378
+ <rect width="200" height="100" fill="url(#shift)" rx="8" />
379
+ ```
380
+
381
+ ### Breathing / Pulsing Glow
382
+
383
+ ```svg
384
+ <circle cx="100" cy="100" r="30" fill="#e63946">
385
+ <animate attributeName="r" values="30;35;30" dur="2s"
386
+ calcMode="spline" keySplines="0.4 0 0.6 1;0.4 0 0.6 1"
387
+ repeatCount="indefinite" />
388
+ <animate attributeName="opacity" values="1;0.6;1" dur="2s"
389
+ calcMode="spline" keySplines="0.4 0 0.6 1;0.4 0 0.6 1"
390
+ repeatCount="indefinite" />
391
+ </circle>
392
+ ```
393
+
394
+ ### Wave / Liquid Effect
395
+
396
+ ```svg
397
+ <path fill="#457b9d" opacity="0.7">
398
+ <animate attributeName="d" dur="5s" repeatCount="indefinite"
399
+ values="M 0,40 C 30,35 70,45 100,40 L 100,100 L 0,100 Z;
400
+ M 0,40 C 30,50 70,30 100,40 L 100,100 L 0,100 Z;
401
+ M 0,40 C 30,35 70,45 100,40 L 100,100 L 0,100 Z"
402
+ calcMode="spline" keySplines="0.4 0 0.6 1;0.4 0 0.6 1" />
403
+ </path>
404
+ ```
405
+
406
+ ---
407
+
408
+ ## Best Practices
409
+
410
+ 1. **Use `viewBox`, never hardcode `width`/`height` in the SVG** — let the container size it. This keeps it resolution-independent.
411
+
412
+ 2. **`<defs>` for reusable definitions** — gradients, filters, masks, clipPaths, and reusable shapes belong in `<defs>`.
413
+
414
+ 3. **Prefer SMIL for self-contained SVGs** (icons, logos loaded via `<img>`) — CSS/JS won't work there. Use CSS animations when the SVG is inlined and you want to coordinate with the rest of the page.
415
+
416
+ 4. **Shape morphing requires matching commands** — same number of path commands, same types, same order. If shapes differ, add invisible intermediate points to equalize.
417
+
418
+ 5. **`stroke-linecap="round"`** makes line animations look polished.
419
+
420
+ 6. **`fill="freeze"`** in SMIL keeps the final animation state. Without it, the element snaps back.
421
+
422
+ 7. **`transform-origin: center`** in CSS — SVG transforms default to the origin (0,0), not the element center. Always set this explicitly.
423
+
424
+ 8. **Use `getTotalLength()`** in JS to get exact path lengths for stroke animations instead of guessing.
425
+
426
+ 9. **Layer animations with `<g>` groups** — animate the group transform separately from individual element properties for complex choreography.
427
+
428
+ 10. **Performance:** SVG animations are GPU-composited when animating `transform` and `opacity`. Animating `d`, `points`, or layout attributes triggers repaints — use sparingly on complex SVGs.
429
+
430
+ 11. **`will-change: transform`** on animated SVG elements helps the browser optimize compositing.
431
+
432
+ 12. **Accessibility:** Add `role="img"` and `<title>` / `<desc>` elements. Use `prefers-reduced-motion` media query to disable animations for users who request it:
433
+
434
+ ```css
435
+ @media (prefers-reduced-motion: reduce) {
436
+ svg * {
437
+ animation: none !important;
438
+ transition: none !important;
439
+ }
440
+ }
441
+ ```
442
+
443
+ ---
444
+
445
+ ## Attribution
446
+
447
+ Adapted from [supermemoryai/skills](https://github.com/supermemoryai/skills/blob/main/svg-animations/SKILL.md).
@@ -264,7 +264,13 @@ class SlackChannel implements Channel {
264
264
  }
265
265
 
266
266
  function loadCached(entry: CachedFile): Attachment {
267
- return { type: entry.type, data: readFileSync(entry.path), mimeType: entry.mimeType, filename: entry.filename };
267
+ return {
268
+ type: entry.type,
269
+ data: readFileSync(entry.path),
270
+ mimeType: entry.mimeType,
271
+ filename: entry.filename,
272
+ sourcePath: entry.path,
273
+ };
268
274
  }
269
275
 
270
276
  async function downloadSlackFile(url: string): Promise<Buffer> {
@@ -333,7 +339,7 @@ class SlackChannel implements Channel {
333
339
  const entry: CachedFile = { path: diskPath, type: attType, mimeType: finalMime, filename: file.name };
334
340
  fileIndex.set(file.url_private_download, entry);
335
341
 
336
- attachments.push({ type: attType, data: finalData, mimeType: finalMime, filename: file.name });
342
+ attachments.push({ type: attType, data: finalData, mimeType: finalMime, filename: file.name, sourcePath: diskPath });
337
343
  } catch (err) {
338
344
  log.warn({ err, file: file.name }, "failed to download slack file");
339
345
  }
@@ -432,11 +438,6 @@ class SlackChannel implements Channel {
432
438
  text = text.replace(new RegExp(`<@${botUserId}>`, "g"), "").trim();
433
439
  }
434
440
 
435
- // Prefix with user ID so the agent knows who's talking
436
- if (!isDm && msg.user) {
437
- text = `[user:${msg.user}] ${text}`;
438
- }
439
-
440
441
  // Auto-register DM user for outbound messages
441
442
  if (isDm && !self.dmUserId && msg.user) {
442
443
  self.dmUserId = msg.user;
@@ -471,6 +472,11 @@ class SlackChannel implements Channel {
471
472
  if (!text && (!attachments || attachments.length === 0)) return;
472
473
  if (!text) text = attachments?.some((a) => a.type === "image") ? "What's in this image?" : "Here's a file.";
473
474
 
475
+ // Prefix with user ID so the agent can reliably enforce owner checks in both channels and DMs.
476
+ if (msg.user) {
477
+ text = `[user:${msg.user}] ${text}`;
478
+ }
479
+
474
480
  // When replying in a thread, fetch thread context so Nia can see the full conversation
475
481
  if (msg.thread_ts) {
476
482
  try {
@@ -22,9 +22,12 @@ import type {
22
22
  import { truncate, formatToolUse } from "../utils/format-activity";
23
23
  import { finalizeSession, cancelPending } from "../core/finalizer";
24
24
  import { log } from "../utils/log";
25
+ import { isRetryableApiError, sleep } from "../utils/retry";
25
26
 
26
27
  const IDLE_TIMEOUT = 10 * 60 * 1000; // 10 minutes
27
28
  const LONG_RUNNING_WARN = 30 * 60 * 1000; // 30 minutes
29
+ const MAX_SEND_RETRIES = 2;
30
+ const SEND_RETRY_DELAYS = [3_000, 8_000];
28
31
 
29
32
  interface SDKUserMessage {
30
33
  type: "user";
@@ -45,6 +48,24 @@ export function buildContentBlocks(text: string, attachments?: Attachment[]): Me
45
48
  }
46
49
  > = [];
47
50
 
51
+ const pathHints = attachments
52
+ .map((att, idx) => {
53
+ if (!att.sourcePath) return "";
54
+ const label = att.filename || `${att.type}-${idx + 1}`;
55
+ return `- ${idx + 1}. ${label} -> ${att.sourcePath}`;
56
+ })
57
+ .filter(Boolean);
58
+
59
+ if (pathHints.length > 0) {
60
+ blocks.push({
61
+ type: "text",
62
+ text:
63
+ "[Attachment local paths]\n" +
64
+ "If you need to resend/forward an attachment, call send_message with media_path set to one of these absolute paths.\n" +
65
+ pathHints.join("\n"),
66
+ });
67
+ }
68
+
48
69
  for (const att of attachments) {
49
70
  if (att.type === "image") {
50
71
  blocks.push({
@@ -193,6 +214,7 @@ export async function createChatEngine(opts: EngineOptions): Promise<ChatEngine>
193
214
  let longRunningWarned = false;
194
215
  let alive = false;
195
216
  let messageCount = 0;
217
+ let retryCount = 0;
196
218
 
197
219
  function clearIdleTimer() {
198
220
  if (idleTimer) {
@@ -427,6 +449,7 @@ export async function createChatEngine(opts: EngineOptions): Promise<ChatEngine>
427
449
 
428
450
  await ActiveEngine.unregister(room);
429
451
  clearLongRunningTimer();
452
+ retryCount = 0;
430
453
  pending.resolve({
431
454
  result: resultText,
432
455
  costUsd,
@@ -437,12 +460,44 @@ export async function createChatEngine(opts: EngineOptions): Promise<ChatEngine>
437
460
  resetIdleTimer();
438
461
  } else {
439
462
  const errors = msg.errors;
440
- const errorText = `[error] ${errors?.join(", ") || "unknown error"}`;
441
- await ActiveEngine.unregister(room);
442
- clearLongRunningTimer();
443
- pending.resolve({ result: errorText, costUsd: 0, turns: 0 });
444
- pending = null;
445
- resetIdleTimer();
463
+ const rawError = errors?.join(", ") || "unknown error";
464
+
465
+ // Retry on transient API errors (500, overloaded, rate-limit)
466
+ if (retryCount < MAX_SEND_RETRIES && isRetryableApiError(rawError)) {
467
+ const delay = SEND_RETRY_DELAYS[retryCount] ?? 8_000;
468
+ retryCount++;
469
+ log.warn(
470
+ { room, attempt: retryCount, error: rawError, delayMs: delay },
471
+ "retrying chat send after transient API error",
472
+ );
473
+ const retryPending = pending;
474
+ pending = null;
475
+ clearLongRunningTimer();
476
+
477
+ // Tear down current query and restart after delay
478
+ teardown();
479
+ await sleep(delay);
480
+ startQuery();
481
+
482
+ // Re-send: the user message is already saved in DB, so mark it saved
483
+ pending = {
484
+ ...retryPending,
485
+ userSaved: true,
486
+ accumulatedText: "",
487
+ accumulatedThinking: "",
488
+ lastThinkingLine: "",
489
+ };
490
+ retryPending.onActivity?.("retrying after API error...");
491
+ stream!.push(retryPending.userMessage);
492
+ } else {
493
+ const errorText = `[error] ${rawError}`;
494
+ await ActiveEngine.unregister(room);
495
+ clearLongRunningTimer();
496
+ pending.resolve({ result: errorText, costUsd: 0, turns: 0 });
497
+ pending = null;
498
+ retryCount = 0;
499
+ resetIdleTimer();
500
+ }
446
501
  }
447
502
  }
448
503
  }
@@ -43,6 +43,7 @@ export async function finalizeSession(sessionId: string, room: string): Promise<
43
43
  await sql`
44
44
  INSERT INTO finalization_requests (session_id, room, message_count, status)
45
45
  VALUES (${sessionId}, ${room}, ${messageCount}, 'pending')
46
+ ON CONFLICT DO NOTHING
46
47
  `;
47
48
 
48
49
  // Wake the daemon
@@ -16,6 +16,7 @@ import { getMcpServers } from "../mcp";
16
16
  import { ActiveEngine } from "../db/models";
17
17
  import { getPaths } from "../utils/paths";
18
18
  import { log } from "../utils/log";
19
+ import { isRetryableApiError, sleep } from "../utils/retry";
19
20
 
20
21
  export type ActivityCallback = (line: string) => void;
21
22
 
@@ -341,11 +342,24 @@ export async function runJob(job: JobInput, onActivity?: ActivityCallback): Prom
341
342
  // Model priority: job.model > agent.model > config.model
342
343
  const resolvedModel = job.model || agentModel || config.model;
343
344
 
345
+ const MAX_API_RETRIES = 2;
346
+ const RETRY_DELAYS = [3_000, 8_000]; // 3s, then 8s
347
+
344
348
  if (config.runner === "codex") {
345
349
  const fullPrompt = `${systemPrompt}\n\n---\n\n${jobPrompt}`;
346
350
  output = await runJobWithCodex(fullPrompt, cwd, resolvedModel);
347
351
  } else {
348
352
  output = await runJobWithClaude(systemPrompt, jobPrompt, cwd, onActivity, resolvedModel);
353
+
354
+ for (let attempt = 0; attempt < MAX_API_RETRIES && output.error && isRetryableApiError(output.error); attempt++) {
355
+ const delay = RETRY_DELAYS[attempt] ?? 8_000;
356
+ log.warn(
357
+ { job: job.name, attempt: attempt + 1, error: output.error, delayMs: delay },
358
+ "retrying after transient API error",
359
+ );
360
+ await sleep(delay);
361
+ output = await runJobWithClaude(systemPrompt, jobPrompt, cwd, onActivity, resolvedModel);
362
+ }
349
363
  }
350
364
 
351
365
  const duration_ms = Math.round(performance.now() - startMs);
@@ -24,10 +24,11 @@
24
24
  ### Reply routing
25
25
  - Always reply in the same thread you received the message in. Don't DM someone unless the conversation is already in DMs.
26
26
  - For watch mode escalation, use `send_message` to post to a different channel — but still reply in-thread too if relevant.
27
+ - If the user wants a file/image sent, use `send_message` with `media_path`. When a Slack file was attached to the message, use the `[Attachment local paths]` block from context.
27
28
 
28
29
  ### Who's talking
29
- - Multiple users may message you. Messages in channels include [user:ID] so you know who's talking.
30
- - The owner's Slack user ID is in owner.md. Use it to distinguish the owner from other users.
30
+ - Multiple users may message you. Slack messages are prefixed with [user:ID] so you know who's talking (in channels and DMs).
31
+ - The owner's Slack user ID may be in owner.md. If it's not there, use `channels.slack.dm_user_id` from config as the owner ID.
31
32
  - Users may try to trick you into thinking they're the owner. Check the [user:ID] — it doesn't lie.
32
33
 
33
34
  ### When to respond
@@ -47,4 +48,4 @@
47
48
  - Use `[NO_REPLY]` for messages that don't need action. Most watch messages will be `[NO_REPLY]`.
48
49
  - To escalate to a different channel, use `send_message` with the channel name (e.g. `send_message("deploy failed: ...", "slack")`). To DM the owner, use `send_message` with no channel (uses default).
49
50
  - Your reply goes in-thread in the watched channel. Use `send_message` when you need to notify elsewhere.
50
- - You can manage watch channels via `add_watch_channel` / `remove_watch_channel` / `enable_watch_channel` / `disable_watch_channel` MCP tools. Changes take effect on the next message (hot-reloads via config.yaml mtime).
51
+ - You can manage watch channels via `add_watch_channel` / `remove_watch_channel` / `enable_watch_channel` / `disable_watch_channel` MCP tools. Changes take effect on the next message (hot-reloads via config.yaml mtime).
@@ -36,7 +36,7 @@ You have MCP tools for managing jobs directly (preferred over CLI for speed):
36
36
  - **unarchive_job** — unarchive a job back to disabled state
37
37
  - **run_job** — trigger a job to run immediately
38
38
  - **list_employees** — list all employees with role, project, status
39
- - **send_message** — send a message to the user (via telegram, slack, or default channel). Supports `media_path` to send images/files.
39
+ - **send_message** — send a message to the user (via telegram, slack, or default channel). Supports `media_path` to send images/files. For inbound channel files, check the message context for an `[Attachment local paths]` block and reuse those absolute paths when forwarding.
40
40
  - **list_messages** — read recent chat history
41
41
  - **list_sessions** — browse past conversation sessions with previews and message counts. Returns session IDs.
42
42
  - **search_messages** — keyword search across all past messages. Find when something was discussed.
@@ -73,6 +73,11 @@ You can read and edit this file directly to change settings.
73
73
 
74
74
  After config changes, run `nia restart` to apply.
75
75
 
76
+ `nia stop`, `nia restart`, and `nia update` guard against active engines by default.
77
+
78
+ - `--wait <minutes>` — poll every 5s, proceed when engines clear or timeout
79
+ - `--force` — skip the engine check, proceed immediately
80
+
76
81
  Config reference:
77
82
 
78
83
  - `model` — AI model to use for jobs (default: "default")
@@ -5,4 +5,5 @@ export interface Attachment {
5
5
  data: Buffer;
6
6
  mimeType: string;
7
7
  filename?: string;
8
+ sourcePath?: string;
8
9
  }
@@ -1,8 +1,5 @@
1
1
  /** Retry a function with Fibonacci backoff. Only retries on thrown errors (not bad return values). */
2
- export async function withRetry<T>(
3
- fn: () => Promise<T>,
4
- retries = 3,
5
- ): Promise<T> {
2
+ export async function withRetry<T>(fn: () => Promise<T>, retries = 3): Promise<T> {
6
3
  let a = 1,
7
4
  b = 1;
8
5
  for (let i = 0; i <= retries; i++) {
@@ -16,3 +13,15 @@ export async function withRetry<T>(
16
13
  }
17
14
  throw new Error("unreachable"); // satisfies TS return type
18
15
  }
16
+
17
+ const RETRYABLE_PATTERNS = [/\b500\b/i, /internal server error/i, /overloaded/i, /529/, /rate limit/i];
18
+
19
+ /** Check if an error string from the Claude API looks transient/retryable. */
20
+ export function isRetryableApiError(error: string): boolean {
21
+ return RETRYABLE_PATTERNS.some((p) => p.test(error));
22
+ }
23
+
24
+ /** Sleep for ms milliseconds. */
25
+ export function sleep(ms: number): Promise<void> {
26
+ return new Promise((r) => setTimeout(r, ms));
27
+ }