claude-launchpad 1.2.3 → 1.3.0

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/dist/cli.js CHANGED
@@ -2079,7 +2079,7 @@ function createMemoryCommand() {
2079
2079
  }
2080
2080
  const { requireMemoryDeps } = await import("./require-deps-QW2IU6I3.js");
2081
2081
  await requireMemoryDeps();
2082
- const { startTui } = await import("./tui-56GQMXXT.js");
2082
+ const { startTui } = await import("./tui-74FMIMUM.js");
2083
2083
  await startTui();
2084
2084
  return;
2085
2085
  }
@@ -2142,9 +2142,9 @@ function createMemoryCommand() {
2142
2142
  })
2143
2143
  );
2144
2144
  memory.addCommand(
2145
- new Command4("pull").description("Pull current project's memories from GitHub Gist").option("--all", "Pull all projects").action(async (opts) => {
2145
+ new Command4("pull").description("Pull current project's memories from GitHub Gist").option("--all", "Pull all projects").option("-y, --yes", "Non-interactive (accepted for symmetry with push; pull never prompts)").action(async (opts) => {
2146
2146
  await handleSyncErrors(async () => {
2147
- const { runPull } = await import("./pull-RKFE5ZXV.js");
2147
+ const { runPull } = await import("./pull-ZQFCMK46.js");
2148
2148
  await runPull(opts);
2149
2149
  });
2150
2150
  })
@@ -2171,7 +2171,7 @@ function createMemoryCommand() {
2171
2171
  }
2172
2172
 
2173
2173
  // src/cli.ts
2174
- var program = new Command5().name("claude-launchpad").description("CLI toolkit that makes Claude Code setups measurably good").version("1.2.3", "-v, --version").action(async () => {
2174
+ var program = new Command5().name("claude-launchpad").description("CLI toolkit that makes Claude Code setups measurably good").version("1.3.0", "-v, --version").action(async () => {
2175
2175
  const hasConfig = await fileExists(join9(process.cwd(), "CLAUDE.md")) || await fileExists(join9(process.cwd(), ".claude", "settings.json"));
2176
2176
  if (hasConfig) {
2177
2177
  await program.commands.find((c) => c.name() === "doctor")?.parseAsync([], { from: "user" });