@openparachute/hub 0.6.4-rc.6 → 0.6.4-rc.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openparachute/hub",
3
- "version": "0.6.4-rc.6",
3
+ "version": "0.6.4-rc.8",
4
4
  "description": "parachute — the local hub for the Parachute ecosystem (discovery, ports, lifecycle, soon OAuth).",
5
5
  "license": "AGPL-3.0",
6
6
  "publishConfig": {
@@ -660,6 +660,47 @@ describe("renderAccountHome", () => {
660
660
  expect(html).toContain('data-testid="vault-card"');
661
661
  });
662
662
 
663
+ test("onboarding condensed state keeps a 'Connect another AI' expander with the full instructions (hub#583)", () => {
664
+ const html = renderAccountHome({
665
+ username: "alice",
666
+ assignedVaults: ["alice"],
667
+ passwordChanged: true,
668
+ hubOrigin: HUB_ORIGIN,
669
+ isFirstAdmin: false,
670
+ csrfToken: CSRF,
671
+ twoFactorEnabled: false,
672
+ connectedVault: true,
673
+ });
674
+ // The expander itself...
675
+ expect(html).toContain('data-testid="onboarding-connect-another"');
676
+ expect(html).toContain('data-testid="onboarding-connect-another-summary"');
677
+ expect(html).toContain("Connect another AI");
678
+ // ...re-reveals the endpoint + BOTH connect methods that the condensed
679
+ // line used to delete entirely (the hub#583 defect).
680
+ expect(html).toContain('data-testid="onboarding-mcp-endpoint"');
681
+ expect(html).toContain('data-testid="onboarding-mcp-add-command"');
682
+ expect(html).toContain("Claude.ai (web)");
683
+ expect(html).toContain("Claude Code (terminal)");
684
+ });
685
+
686
+ test("onboarding NON-condensed (not connected) state has no 'Connect another AI' expander (hub#583)", () => {
687
+ const html = renderAccountHome({
688
+ username: "alice",
689
+ assignedVaults: ["alice"],
690
+ passwordChanged: true,
691
+ hubOrigin: HUB_ORIGIN,
692
+ isFirstAdmin: false,
693
+ csrfToken: CSRF,
694
+ twoFactorEnabled: false,
695
+ connectedVault: false,
696
+ });
697
+ // Full checklist already shows the inline instructions in step 2, so the
698
+ // expander is condensed-state-only.
699
+ expect(html).not.toContain('data-testid="onboarding-connect-another"');
700
+ expect(html).toContain('data-testid="onboarding-step-2"');
701
+ expect(html).toContain('data-testid="onboarding-mcp-endpoint"');
702
+ });
703
+
663
704
  test("onboarding checklist — leads the page: BEFORE the vault card and the starter prompts", () => {
664
705
  const html = renderAccountHome({
665
706
  username: "alice",
@@ -28,7 +28,9 @@ import {
28
28
  handleAccountHomeGet,
29
29
  markPasswordChanged,
30
30
  } from "../api-account.ts";
31
+ import { registerClient } from "../clients.ts";
31
32
  import { CSRF_COOKIE_NAME, CSRF_FIELD_NAME } from "../csrf.ts";
33
+ import { recordGrant } from "../grants.ts";
32
34
  import { hubDbPath, openHubDb } from "../hub-db.ts";
33
35
  import { recordTokenMint } from "../jwt-sign.ts";
34
36
  import {
@@ -832,6 +834,65 @@ describe("handleAccountHomeGet", () => {
832
834
  expect(html).toContain(`https://notes.parachute.computer/add?url=${encoded}`);
833
835
  });
834
836
 
837
+ test("onboarding NOT condensed when only a first-party browser grant exists (hub#583, GET /account/)", async () => {
838
+ // The exact field report: create account → open Notes (a first-party OAuth
839
+ // client that writes a vault-scoped grant) → later visit /account/ to wire
840
+ // up Claude. The checklist must NOT already be condensed.
841
+ await createUser(harness.db, "admin", "admin-passphrase", { passwordChanged: true });
842
+ const friend = await createUser(harness.db, "alice", "alice-passphrase", {
843
+ allowMulti: true,
844
+ passwordChanged: true,
845
+ assignedVaults: ["alice"],
846
+ });
847
+ // Notes signs in via DCR (generated client_id, client_name "Notes") and
848
+ // records a vault-scoped grant.
849
+ const notes = registerClient(harness.db, {
850
+ redirectUris: ["https://hub.test/notes/cb"],
851
+ clientName: "Notes",
852
+ });
853
+ recordGrant(harness.db, friend.id, notes.client.clientId, ["vault:alice:read"]);
854
+
855
+ const session = createSession(harness.db, { userId: friend.id });
856
+ const cookie = buildSessionCookie(session.id, Math.floor(SESSION_TTL_MS / 1000));
857
+ const req = new Request(`${HUB_ORIGIN}/account/`, { headers: { cookie } });
858
+ const res = await handleAccountHomeGet(req, { db: harness.db, hubOrigin: HUB_ORIGIN });
859
+ expect(res.status).toBe(200);
860
+ const html = await res.text();
861
+ // Full checklist (not condensed): the connect step is present, the
862
+ // "you're connected" done-line is NOT.
863
+ expect(html).toContain('data-connected="false"');
864
+ expect(html).toContain('data-testid="onboarding-step-2"');
865
+ expect(html).not.toContain('data-testid="onboarding-done-line"');
866
+ });
867
+
868
+ test("onboarding condensed when an external AI client grant exists (hub#583, GET /account/)", async () => {
869
+ await createUser(harness.db, "admin", "admin-passphrase", { passwordChanged: true });
870
+ const friend = await createUser(harness.db, "alice", "alice-passphrase", {
871
+ allowMulti: true,
872
+ passwordChanged: true,
873
+ assignedVaults: ["alice"],
874
+ });
875
+ // Claude Code: a genuine external MCP client.
876
+ const claude = registerClient(harness.db, {
877
+ redirectUris: ["https://claude.ai/cb"],
878
+ clientName: "Claude",
879
+ });
880
+ recordGrant(harness.db, friend.id, claude.client.clientId, ["vault:alice:read"]);
881
+
882
+ const session = createSession(harness.db, { userId: friend.id });
883
+ const cookie = buildSessionCookie(session.id, Math.floor(SESSION_TTL_MS / 1000));
884
+ const req = new Request(`${HUB_ORIGIN}/account/`, { headers: { cookie } });
885
+ const res = await handleAccountHomeGet(req, { db: harness.db, hubOrigin: HUB_ORIGIN });
886
+ expect(res.status).toBe(200);
887
+ const html = await res.text();
888
+ // Condensed done-state.
889
+ expect(html).toContain('data-connected="true"');
890
+ expect(html).toContain('data-testid="onboarding-done-line"');
891
+ expect(html).toContain("You're connected");
892
+ // And it still keeps the "Connect another AI" expander.
893
+ expect(html).toContain('data-testid="onboarding-connect-another"');
894
+ });
895
+
835
896
  test("200 + admin branch when the first-admin signs in (no vault assignments)", async () => {
836
897
  // The first-created user with no vault pin is the admin posture.
837
898
  const admin = await createUser(harness.db, "admin", "admin-passphrase", {
@@ -1671,13 +1671,19 @@ describe("well-known regen after module ops", () => {
1671
1671
  const vaultRow = manifest.services.find((s) => s.name === "parachute-vault");
1672
1672
  expect(vaultRow?.installDir).toBe(install.installDir);
1673
1673
 
1674
- // The on-disk well-known doc reflects the new module.
1674
+ // The on-disk well-known doc reflects the new module in `services`...
1675
1675
  const doc = JSON.parse(readFileSync(wkPath, "utf8")) as {
1676
1676
  services: Array<{ name: string; version: string }>;
1677
1677
  vaults: Array<{ name: string }>;
1678
1678
  };
1679
1679
  expect(doc.services.some((s) => s.name === "parachute-vault")).toBe(true);
1680
- expect(doc.vaults.some((v) => v.name === "default")).toBe(true);
1680
+ // ...but does NOT fabricate a phantom `default` vault row (hub#577). The
1681
+ // install seeds the entry at SEED_VERSION ("module installed, no instance
1682
+ // booted"); vault's own boot registers the real instance later. Until then
1683
+ // the vaults[] list is honestly empty so the management page reads "No
1684
+ // vaults yet" rather than showing a `default` that doesn't exist.
1685
+ expect(doc.vaults.some((v) => v.name === "default")).toBe(false);
1686
+ expect(doc.vaults).toEqual([]);
1681
1687
  });
1682
1688
 
1683
1689
  test("runInstall sets PORT in child env from services.json entry (hub#356)", async () => {
@@ -8,9 +8,11 @@ import {
8
8
  findGrantByClientName,
9
9
  isCoveredByGrant,
10
10
  isCoveredByGrantForClientName,
11
+ isFirstPartyBrowserClient,
11
12
  listGrantsForUser,
12
13
  recordGrant,
13
14
  revokeGrant,
15
+ userHasExternalAiGrant,
14
16
  userHasVaultGrant,
15
17
  } from "../grants.ts";
16
18
  import { hubDbPath, openHubDb } from "../hub-db.ts";
@@ -395,3 +397,100 @@ describe("findGrantByClientName / isCoveredByGrantForClientName (hub#409)", () =
395
397
  }
396
398
  });
397
399
  });
400
+
401
+ describe("userHasExternalAiGrant / isFirstPartyBrowserClient (hub#583)", () => {
402
+ test("isFirstPartyBrowserClient matches fixed first-party client_ids", () => {
403
+ expect(isFirstPartyBrowserClient("parachute-hub-spa", null)).toBe(true);
404
+ expect(isFirstPartyBrowserClient("parachute-account", null)).toBe(true);
405
+ expect(isFirstPartyBrowserClient("some-random-dcr-id", null)).toBe(false);
406
+ });
407
+
408
+ test("isFirstPartyBrowserClient matches Notes by client_name (case-insensitive)", () => {
409
+ expect(isFirstPartyBrowserClient("dcr-generated-id", "Notes")).toBe(true);
410
+ expect(isFirstPartyBrowserClient("dcr-generated-id", "notes")).toBe(true);
411
+ expect(isFirstPartyBrowserClient("dcr-generated-id", "Claude")).toBe(false);
412
+ expect(isFirstPartyBrowserClient("dcr-generated-id", null)).toBe(false);
413
+ });
414
+
415
+ test("a first-party browser grant does NOT count as a connected AI", async () => {
416
+ const h = await harness();
417
+ try {
418
+ // Notes signs in via DCR (generated client_id, client_name "Notes") and
419
+ // writes a vault-scoped grant — the exact false-positive in hub#583.
420
+ const notes = registerClient(h.db, {
421
+ redirectUris: ["https://app.example/cb"],
422
+ clientName: "Notes",
423
+ });
424
+ recordGrant(h.db, h.userId, notes.client.clientId, ["vault:default:read"]);
425
+ // The coarse signal lights up...
426
+ expect(userHasVaultGrant(h.db, h.userId, "default")).toBe(true);
427
+ // ...but the AI-connection signal does NOT.
428
+ expect(userHasExternalAiGrant(h.db, h.userId, "default")).toBe(false);
429
+ } finally {
430
+ h.cleanup();
431
+ }
432
+ });
433
+
434
+ test("the fixed first-party SPA client_id does NOT count as a connected AI", async () => {
435
+ const h = await harness();
436
+ try {
437
+ registerClient(h.db, {
438
+ redirectUris: ["https://app.example/cb"],
439
+ clientId: "parachute-hub-spa",
440
+ });
441
+ recordGrant(h.db, h.userId, "parachute-hub-spa", ["vault:default:read"]);
442
+ expect(userHasExternalAiGrant(h.db, h.userId, "default")).toBe(false);
443
+ } finally {
444
+ h.cleanup();
445
+ }
446
+ });
447
+
448
+ test("an external AI/MCP client grant DOES count as connected", async () => {
449
+ const h = await harness();
450
+ try {
451
+ // Claude Code: DCR-registered, ordinary client_name, vault scope.
452
+ const claude = registerClient(h.db, {
453
+ redirectUris: ["https://claude.ai/cb"],
454
+ clientName: "Claude",
455
+ });
456
+ recordGrant(h.db, h.userId, claude.client.clientId, ["vault:default:read"]);
457
+ expect(userHasExternalAiGrant(h.db, h.userId, "default")).toBe(true);
458
+ } finally {
459
+ h.cleanup();
460
+ }
461
+ });
462
+
463
+ test("external grant is scoped to the named vault", async () => {
464
+ const h = await harness();
465
+ try {
466
+ const claude = registerClient(h.db, {
467
+ redirectUris: ["https://claude.ai/cb"],
468
+ clientName: "Claude",
469
+ });
470
+ recordGrant(h.db, h.userId, claude.client.clientId, ["vault:other:read"]);
471
+ expect(userHasExternalAiGrant(h.db, h.userId, "default")).toBe(false);
472
+ expect(userHasExternalAiGrant(h.db, h.userId, "other")).toBe(true);
473
+ } finally {
474
+ h.cleanup();
475
+ }
476
+ });
477
+
478
+ test("Notes + Claude both granted: still counts (the external one wins)", async () => {
479
+ const h = await harness();
480
+ try {
481
+ const notes = registerClient(h.db, {
482
+ redirectUris: ["https://app.example/cb"],
483
+ clientName: "Notes",
484
+ });
485
+ const claude = registerClient(h.db, {
486
+ redirectUris: ["https://claude.ai/cb"],
487
+ clientName: "Claude",
488
+ });
489
+ recordGrant(h.db, h.userId, notes.client.clientId, ["vault:default:read"]);
490
+ recordGrant(h.db, h.userId, claude.client.clientId, ["vault:default:read"]);
491
+ expect(userHasExternalAiGrant(h.db, h.userId, "default")).toBe(true);
492
+ } finally {
493
+ h.cleanup();
494
+ }
495
+ });
496
+ });
@@ -485,6 +485,142 @@ describe("init", () => {
485
485
  });
486
486
  });
487
487
 
488
+ describe("init bootstrap-token first-claim (hub#576)", () => {
489
+ function publicState(): ExposeState {
490
+ return {
491
+ version: 1,
492
+ layer: "public",
493
+ mode: "path",
494
+ canonicalFqdn: "demo.parachute.computer",
495
+ port: 443,
496
+ funnel: false,
497
+ entries: [],
498
+ hubOrigin: "https://demo.parachute.computer",
499
+ };
500
+ }
501
+
502
+ test("publicly-exposed + wizard mode: prints the bootstrap token in the terminal", async () => {
503
+ const h = makeHarness();
504
+ try {
505
+ writeHubPort(1939, h.configDir);
506
+ const probed: string[] = [];
507
+ const logs: string[] = [];
508
+ const code = await init({
509
+ configDir: h.configDir,
510
+ manifestPath: h.manifestPath,
511
+ log: (l) => logs.push(l),
512
+ alive: () => true,
513
+ ensureHub: async () => ({ pid: 4321, port: 1939, started: false }),
514
+ readExposeStateFn: () => publicState(),
515
+ isTty: false,
516
+ platform: "linux",
517
+ installVaultModuleImpl: noopVaultInstall,
518
+ fetchBootstrapTokenImpl: async (loopbackUrl) => {
519
+ probed.push(loopbackUrl);
520
+ return "parachute-bootstrap-XYZ";
521
+ },
522
+ });
523
+ expect(code).toBe(0);
524
+ // Probed the LOOPBACK hub, not the public FQDN.
525
+ expect(probed).toEqual(["http://127.0.0.1:1939"]);
526
+ const joined = logs.join("\n");
527
+ expect(joined).toContain("parachute-bootstrap-XYZ");
528
+ expect(joined).toContain("bootstrap token");
529
+ // Still prints the public admin URL.
530
+ expect(joined).toContain("https://demo.parachute.computer/admin/");
531
+ } finally {
532
+ h.cleanup();
533
+ }
534
+ });
535
+
536
+ test("loopback-only install: does NOT probe or print a token", async () => {
537
+ const h = makeHarness();
538
+ try {
539
+ writeHubPort(1939, h.configDir);
540
+ let probedCount = 0;
541
+ const logs: string[] = [];
542
+ const code = await init({
543
+ configDir: h.configDir,
544
+ manifestPath: h.manifestPath,
545
+ log: (l) => logs.push(l),
546
+ alive: () => true,
547
+ ensureHub: async () => ({ pid: 4321, port: 1939, started: false }),
548
+ readExposeStateFn: () => undefined, // no public exposure
549
+ isTty: false,
550
+ platform: "linux",
551
+ installVaultModuleImpl: noopVaultInstall,
552
+ fetchBootstrapTokenImpl: async () => {
553
+ probedCount++;
554
+ return "parachute-bootstrap-XYZ";
555
+ },
556
+ });
557
+ expect(code).toBe(0);
558
+ expect(probedCount).toBe(0);
559
+ expect(logs.join("\n")).not.toContain("parachute-bootstrap-");
560
+ } finally {
561
+ h.cleanup();
562
+ }
563
+ });
564
+
565
+ test("admin already exists (no token): prints the URL without a token block", async () => {
566
+ const h = makeHarness();
567
+ try {
568
+ writeHubPort(1939, h.configDir);
569
+ const logs: string[] = [];
570
+ const code = await init({
571
+ configDir: h.configDir,
572
+ manifestPath: h.manifestPath,
573
+ log: (l) => logs.push(l),
574
+ alive: () => true,
575
+ ensureHub: async () => ({ pid: 4321, port: 1939, started: false }),
576
+ readExposeStateFn: () => publicState(),
577
+ isTty: false,
578
+ platform: "linux",
579
+ installVaultModuleImpl: noopVaultInstall,
580
+ // Hub returns undefined → already-claimed / no token to surface.
581
+ fetchBootstrapTokenImpl: async () => undefined,
582
+ });
583
+ expect(code).toBe(0);
584
+ const joined = logs.join("\n");
585
+ expect(joined).toContain("https://demo.parachute.computer/admin/");
586
+ expect(joined).not.toContain("bootstrap token");
587
+ } finally {
588
+ h.cleanup();
589
+ }
590
+ });
591
+
592
+ test("CLI wizard is driven against the LOOPBACK hub, not the public FQDN", async () => {
593
+ const h = makeHarness();
594
+ try {
595
+ writeHubPort(1939, h.configDir);
596
+ const wizardUrls: string[] = [];
597
+ const code = await init({
598
+ configDir: h.configDir,
599
+ manifestPath: h.manifestPath,
600
+ log: () => {},
601
+ alive: () => true,
602
+ ensureHub: async () => ({ pid: 4321, port: 1939, started: false }),
603
+ readExposeStateFn: () => publicState(),
604
+ isTty: false,
605
+ platform: "linux",
606
+ installVaultModuleImpl: noopVaultInstall,
607
+ wizardChoice: "cli",
608
+ fetchBootstrapTokenImpl: async () => "parachute-bootstrap-XYZ",
609
+ runCliWizardImpl: async ({ hubUrl }) => {
610
+ wizardUrls.push(hubUrl);
611
+ return 0;
612
+ },
613
+ });
614
+ expect(code).toBe(0);
615
+ // The CLI wizard runs on-box → must use loopback (where the hub hands it
616
+ // the token transparently), never the public FQDN.
617
+ expect(wizardUrls).toEqual(["http://127.0.0.1:1939"]);
618
+ } finally {
619
+ h.cleanup();
620
+ }
621
+ });
622
+ });
623
+
488
624
  describe("looksLikeServer heuristic", () => {
489
625
  test("macOS is never a server", () => {
490
626
  expect(looksLikeServer("darwin", { SSH_CONNECTION: "1.2.3.4 22 5.6.7.8 22" })).toBe(false);