claude-launchpad 1.0.0 → 1.0.1
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/README.md +1 -1
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/commands/memory/server.js +11 -7
- package/dist/commands/memory/server.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -201,7 +201,7 @@ Results save to `.claude/eval/` as structured markdown. Feed them back to Claude
|
|
|
201
201
|
|
|
202
202
|
## Memory
|
|
203
203
|
|
|
204
|
-
Claude
|
|
204
|
+
Claude's built-in memory resets per machine. Launchpad gives each project persistent, cross-device memory that syncs via a private GitHub Gist. Switch laptops and your decisions are already there.
|
|
205
205
|
|
|
206
206
|
```bash
|
|
207
207
|
claude-launchpad memory
|
package/dist/cli.js
CHANGED
|
@@ -2161,7 +2161,7 @@ function createMemoryCommand() {
|
|
|
2161
2161
|
}
|
|
2162
2162
|
|
|
2163
2163
|
// src/cli.ts
|
|
2164
|
-
var program = new Command5().name("claude-launchpad").description("CLI toolkit that makes Claude Code setups measurably good").version("1.0.
|
|
2164
|
+
var program = new Command5().name("claude-launchpad").description("CLI toolkit that makes Claude Code setups measurably good").version("1.0.1", "-v, --version").action(async () => {
|
|
2165
2165
|
const hasConfig = await fileExists(join9(process.cwd(), "CLAUDE.md")) || await fileExists(join9(process.cwd(), ".claude", "settings.json"));
|
|
2166
2166
|
if (hasConfig) {
|
|
2167
2167
|
await program.commands.find((c) => c.name() === "doctor")?.parseAsync([], { from: "user" });
|