claude-launchpad 0.10.1-dev.1 → 0.10.1-dev.3
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 +2 -2
- package/dist/cli.js.map +1 -1
- package/dist/commands/memory/server.js +9 -0
- package/dist/commands/memory/server.js.map +1 -1
- package/dist/{push-WI3ZIPZU.js → push-GRCPUMV6.js} +34 -9
- package/dist/push-GRCPUMV6.js.map +1 -0
- package/package.json +1 -1
- package/dist/push-WI3ZIPZU.js.map +0 -1
package/dist/cli.js
CHANGED
|
@@ -2641,7 +2641,7 @@ function createMemoryCommand() {
|
|
|
2641
2641
|
);
|
|
2642
2642
|
memory.addCommand(
|
|
2643
2643
|
new Command4("push").description("Push memories to GitHub Gist").option("--project <name>", "Scope to a specific project").option("-y, --yes", "Skip confirmation prompt").action(async (opts) => {
|
|
2644
|
-
const { runPush } = await import("./push-
|
|
2644
|
+
const { runPush } = await import("./push-GRCPUMV6.js");
|
|
2645
2645
|
await runPush(opts);
|
|
2646
2646
|
})
|
|
2647
2647
|
);
|
|
@@ -2655,7 +2655,7 @@ function createMemoryCommand() {
|
|
|
2655
2655
|
}
|
|
2656
2656
|
|
|
2657
2657
|
// src/cli.ts
|
|
2658
|
-
var program = new Command5().name("claude-launchpad").description("CLI toolkit that makes Claude Code setups measurably good").version("0.10.1-dev.
|
|
2658
|
+
var program = new Command5().name("claude-launchpad").description("CLI toolkit that makes Claude Code setups measurably good").version("0.10.1-dev.3", "-v, --version").action(async () => {
|
|
2659
2659
|
const hasConfig = await fileExists(join11(process.cwd(), "CLAUDE.md")) || await fileExists(join11(process.cwd(), ".claude", "settings.json"));
|
|
2660
2660
|
if (hasConfig) {
|
|
2661
2661
|
await program.commands.find((c) => c.name() === "doctor")?.parseAsync([], { from: "user" });
|