@clubnet/seedclub 0.2.44 → 0.2.46

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.
@@ -187,11 +187,11 @@ export function registerSeedclubCommand(pi: ExtensionAPI, deps: SeedclubDeps) {
187
187
  });
188
188
 
189
189
  pi.registerCommand("source", {
190
- description: "Open a source-backed research prompt",
190
+ description: "Source a deal to the network",
191
191
  handler: async (_args, ctx) => {
192
192
  await prefillEditor(
193
193
  ctx,
194
- "Research this using source-backed evidence. Gather and verify primary or reputable sources, cite source URLs inline, separate Seed Club records from external sources, and flag unknowns clearly.",
194
+ "I want to source a deal to Seed Club. First ask me only for the deck or memo. After I provide it, read the document, extract the sourcing details you can find, and display them back for confirmation. Then ask me to correct or add the missing sourcing context needed to make the intro: company name, founder name(s), founder or company contact path, how I know the founder, why I am excited or willing to vouch, the round ask or explicit ask unknown, and any timing or intro constraints. Keep it concise and do not ask for the full context before reading the deck or memo.",
195
195
  );
196
196
  },
197
197
  });
package/bin/cli.js CHANGED
@@ -409,6 +409,9 @@ if (cmd === "update") {
409
409
  printPrivateRegistryHint();
410
410
  process.exit(1);
411
411
  }
412
+ console.log("");
413
+ console.log("seedclub was updated.");
414
+ console.log("Run `seedclub` to start the updated version.");
412
415
  process.exit(0);
413
416
  }
414
417
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clubnet/seedclub",
3
- "version": "0.2.44",
3
+ "version": "0.2.46",
4
4
  "description": "A branded command-line agent wrapper around pi, with integrated Seed Club commands, tools, and app actions",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -983,7 +983,7 @@ const MEMORY_COMMAND_COMPLETIONS = [
983
983
 
984
984
  function getBuiltInSlashCommands() {
985
985
  return [
986
- { name: "source", description: "Open a source-backed research prompt" },
986
+ { name: "source", description: "Source a deal to the network" },
987
987
  { name: "diligence", description: "Open a Seed Club diligence prompt" },
988
988
  {
989
989
  name: "memory",
@@ -1376,7 +1376,9 @@ export class SeedclubInteractiveModeApp {
1376
1376
  await runSeedclubUpdateCommand();
1377
1377
  await storeUpdatePrefs({ skipVersion: null });
1378
1378
  this.setAvailableUpdate(null, null);
1379
- this.showExtensionNotify("seedclub was updated. Restart the app to load the new version.", "info");
1379
+ await this.stop({
1380
+ message: "seedclub was updated.\nRun `seedclub` to start the updated version.",
1381
+ });
1380
1382
  } catch (error) {
1381
1383
  this.showExtensionNotify(
1382
1384
  `Update failed: ${error instanceof Error ? error.message : "Update failed."}`,
@@ -2613,7 +2615,7 @@ export class SeedclubInteractiveModeApp {
2613
2615
  }
2614
2616
  }
2615
2617
 
2616
- async stop() {
2618
+ async stop(options = {}) {
2617
2619
  if (this.isShuttingDown) {
2618
2620
  return;
2619
2621
  }
@@ -2633,6 +2635,10 @@ export class SeedclubInteractiveModeApp {
2633
2635
  this.footerDataProvider.dispose();
2634
2636
  this.session.dispose();
2635
2637
  this.ui.stop();
2638
+ if (typeof options.message === "string" && options.message.trim()) {
2639
+ console.log("");
2640
+ console.log(options.message.trim());
2641
+ }
2636
2642
  process.exit(0);
2637
2643
  }
2638
2644
  }