@juicesharp/rpiv-pi 1.14.3 → 1.14.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.
|
@@ -242,6 +242,7 @@ describe("session_start hook — notifications", () => {
|
|
|
242
242
|
await captured.events.get("session_start")?.[0]({ reason: "startup" } as never, ctx as never);
|
|
243
243
|
const warnCall = (ctx.ui.notify as ReturnType<typeof vi.fn>).mock.calls.find((c) => c[1] === "warning");
|
|
244
244
|
expect(warnCall).toBeDefined();
|
|
245
|
+
expect((warnCall?.[0] as string).startsWith("\n")).toBe(true);
|
|
245
246
|
expect(warnCall?.[0]).toContain("rpiv-pi: 2 sibling extensions missing");
|
|
246
247
|
expect(warnCall?.[0]).toContain("@juicesharp/rpiv-advisor");
|
|
247
248
|
expect(warnCall?.[0]).toContain("@juicesharp/rpiv-args");
|
|
@@ -272,5 +272,8 @@ function notifyCleanup(ui: UI, result: CleanupResult): void {
|
|
|
272
272
|
function warnMissingSiblings(ui: UI): void {
|
|
273
273
|
const missing = findMissingSiblings();
|
|
274
274
|
if (missing.length === 0) return;
|
|
275
|
-
|
|
275
|
+
// Leading newline so Pi's "Warning: " severity prefix sits on its own
|
|
276
|
+
// line; every box row then gets Pi's 1-space continuation indent
|
|
277
|
+
// uniformly and the border stays aligned.
|
|
278
|
+
ui.notify(`\n${msgMissingSiblings(missing.map((m) => m.pkg.replace(/^npm:/, "")))}`, "warning");
|
|
276
279
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juicesharp/rpiv-pi",
|
|
3
|
-
"version": "1.14.
|
|
3
|
+
"version": "1.14.4",
|
|
4
4
|
"description": "A skill-based development workflow for Pi Agent. Five skills (research, design, plan, implement, validate) and the shared subagents that compose its ship-loop.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|