@liquidmetal-ai/raindrop 0.6.4 → 0.7.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/README.md +103 -71
- package/dist/base-command.js +7 -7
- package/dist/codegen.d.ts.map +1 -1
- package/dist/codegen.js +3 -0
- package/dist/codegen.test.js +15 -1
- package/dist/commands/build/checkout.d.ts +17 -0
- package/dist/commands/build/checkout.d.ts.map +1 -1
- package/dist/commands/build/checkout.js +140 -7
- package/dist/commands/build/delete.d.ts +15 -0
- package/dist/commands/build/delete.d.ts.map +1 -1
- package/dist/commands/build/delete.js +130 -0
- package/dist/commands/mcp/install-claude.d.ts.map +1 -1
- package/dist/commands/mcp/install-claude.js +3 -1
- package/dist/commands/mcp/install-gemini.d.ts.map +1 -1
- package/dist/commands/mcp/install-gemini.js +3 -1
- package/dist/commands/mcp/install-goose.d.ts +22 -0
- package/dist/commands/mcp/install-goose.d.ts.map +1 -0
- package/dist/commands/mcp/install-goose.js +254 -0
- package/dist/commands/object/delete.d.ts.map +1 -1
- package/dist/commands/object/delete.js +20 -12
- package/dist/commands/object/get.d.ts.map +1 -1
- package/dist/commands/object/get.js +20 -12
- package/dist/commands/object/list.d.ts.map +1 -1
- package/dist/commands/object/list.js +20 -12
- package/dist/commands/object/put.d.ts.map +1 -1
- package/dist/commands/object/put.js +20 -12
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +33 -4
- package/dist/index.test.js +54 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/oclif.manifest.json +607 -436
- package/package.json +3 -3
- package/templates/claude-code/new-raindrop-app.md +6 -2
- package/templates/db/node_modules/.bin/prisma +2 -2
- package/templates/db/node_modules/.bin/prisma-kysely +2 -2
- package/templates/db/node_modules/.bin/tsc +2 -2
- package/templates/db/node_modules/.bin/tsserver +2 -2
- package/templates/db/node_modules/.bin/zx +2 -2
- package/templates/gemini-code/new-raindrop-app.toml +4 -1
- package/templates/goose/new-raindrop-app.yaml +16 -0
- package/templates/goose/reattach-raindrop-session.yaml +13 -0
- package/templates/goose/update-raindrop-app.yaml +13 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liquidmetal-ai/raindrop",
|
|
3
3
|
"description": "CLI for the Raindrop platform",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.7.0",
|
|
5
5
|
"author": "bosgood",
|
|
6
6
|
"bin": {
|
|
7
7
|
"raindrop": "./bin/run.js"
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"typescript": "^5",
|
|
35
35
|
"zod": "^3.23.8",
|
|
36
36
|
"zx": "^8.1.9",
|
|
37
|
-
"@liquidmetal-ai/drizzle": "0.
|
|
38
|
-
"@liquidmetal-ai/raindrop-framework": "0.
|
|
37
|
+
"@liquidmetal-ai/drizzle": "0.7.0",
|
|
38
|
+
"@liquidmetal-ai/raindrop-framework": "0.7.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@changesets/cli": "^2.27.9",
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# ~/.claude/commands/new-raindrop-app.md
|
|
2
|
+
|
|
2
3
|
Create a new Raindrop application from scratch.
|
|
3
4
|
|
|
4
|
-
- Call the
|
|
5
|
-
- Do whatever the MCP endpoint returns and continue with the flow it defines
|
|
5
|
+
- Call the raindrop-mcp:login MCP tool to start a new development session.
|
|
6
|
+
- Do whatever the MCP endpoint returns and continue with the flow it defines
|
|
7
|
+
|
|
8
|
+
WARNING: If you cannot find the "raindrop-mcp" server or the "login" tool for the "raindrop-mcp" server, respond with:
|
|
9
|
+
"Please check your raindrop-mcp server status by running /mcp, and reauthenticate"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/
|
|
9
|
+
export NODE_PATH="/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/prisma@6.10.1_typescript@5.9.2/node_modules/prisma/build/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/prisma@6.10.1_typescript@5.9.2/node_modules/prisma/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/prisma@6.10.1_typescript@5.9.2/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/Users/
|
|
11
|
+
export NODE_PATH="/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/prisma@6.10.1_typescript@5.9.2/node_modules/prisma/build/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/prisma@6.10.1_typescript@5.9.2/node_modules/prisma/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/prisma@6.10.1_typescript@5.9.2/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/prisma@6.10.1_typescript@5.9.2/node_modules/prisma/build/index.js" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/
|
|
9
|
+
export NODE_PATH="/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/prisma-kysely@1.8.0/node_modules/prisma-kysely/dist/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/prisma-kysely@1.8.0/node_modules/prisma-kysely/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/prisma-kysely@1.8.0/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/Users/
|
|
11
|
+
export NODE_PATH="/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/prisma-kysely@1.8.0/node_modules/prisma-kysely/dist/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/prisma-kysely@1.8.0/node_modules/prisma-kysely/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/prisma-kysely@1.8.0/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/prisma-kysely@1.8.0/node_modules/prisma-kysely/dist/bin.js" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/
|
|
9
|
+
export NODE_PATH="/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/bin/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/typescript@5.9.2/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/Users/
|
|
11
|
+
export NODE_PATH="/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/bin/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/typescript@5.9.2/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/bin/tsc" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/
|
|
9
|
+
export NODE_PATH="/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/bin/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/typescript@5.9.2/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/Users/
|
|
11
|
+
export NODE_PATH="/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/bin/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/typescript@5.9.2/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/bin/tsserver" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/
|
|
9
|
+
export NODE_PATH="/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/zx@8.6.0/node_modules/zx/build/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/zx@8.6.0/node_modules/zx/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/zx@8.6.0/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/Users/
|
|
11
|
+
export NODE_PATH="/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/zx@8.6.0/node_modules/zx/build/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/zx@8.6.0/node_modules/zx/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/zx@8.6.0/node_modules:/Users/mattbarto/code/liquidmetal/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/zx@8.6.0/node_modules/zx/build/cli.js" "$@"
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
description = "Create a new Raindrop application from scratch"
|
|
2
2
|
prompt = """
|
|
3
|
-
Call the
|
|
3
|
+
Call the raindrop-mcp:login MCP tool to start a new development session.
|
|
4
4
|
Do whatever the MCP endpoint returns and continue with the flow it defines.
|
|
5
|
+
|
|
6
|
+
WARNING: If you cannot find the "raindrop-mcp" server or the "login" tool for the "raindrop-mcp" server, respond with:
|
|
7
|
+
"Please check your raindrop-mcp server status by running /mcp, and reauthenticate"
|
|
5
8
|
"""
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
version: "1.0.0"
|
|
2
|
+
title: "Create New Raindrop Application"
|
|
3
|
+
description: "Start a new Raindrop application development session using the Raindrop MCP workflow"
|
|
4
|
+
|
|
5
|
+
instructions: |
|
|
6
|
+
READ ~/.raindrop/RAINDROP.md file for complete workflow guidelines.
|
|
7
|
+
|
|
8
|
+
Call the raindrop-mcp:login MCP tool to start a new session.
|
|
9
|
+
|
|
10
|
+
Follow whatever the MCP tool returns and continue with the flow it defines.
|
|
11
|
+
|
|
12
|
+
WARNING: If you cannot find the "raindrop-mcp" server or the "login" tool for the "raindrop-mcp" server, respond with:
|
|
13
|
+
"Please check your raindrop-mcp server status by running /mcp, and reauthenticate"
|
|
14
|
+
|
|
15
|
+
prompt: |
|
|
16
|
+
I want to create a new Raindrop application. Please call the raindrop-mcp:login MCP tool.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
version: "1.0.0"
|
|
2
|
+
title: "Reattach to Raindrop Session"
|
|
3
|
+
description: "Resume a previous Raindrop development session"
|
|
4
|
+
|
|
5
|
+
instructions: |
|
|
6
|
+
READ ~/.raindrop/RAINDROP.md file for complete workflow guidelines.
|
|
7
|
+
|
|
8
|
+
Call the raindrop-mcp:reattach-raindrop-session MCP tool to resume the session.
|
|
9
|
+
|
|
10
|
+
Follow whatever the MCP tool returns and continue with the flow it defines.
|
|
11
|
+
|
|
12
|
+
prompt: |
|
|
13
|
+
I want to reattach to my previous Raindrop development session. Please call the raindrop-mcp:reattach-raindrop-session MCP tool.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
version: "1.0.0"
|
|
2
|
+
title: "Update Existing Raindrop Application"
|
|
3
|
+
description: "Update an existing Raindrop application with new features or changes"
|
|
4
|
+
|
|
5
|
+
instructions: |
|
|
6
|
+
READ ~/.raindrop/RAINDROP.md file for complete workflow guidelines.
|
|
7
|
+
|
|
8
|
+
Call the raindrop-mcp:update-raindrop-app MCP tool to start the update workflow.
|
|
9
|
+
|
|
10
|
+
Follow whatever the MCP tool returns and continue with the flow it defines.
|
|
11
|
+
|
|
12
|
+
prompt: |
|
|
13
|
+
I want to update my existing Raindrop application. Please call the raindrop-mcp:update-raindrop-app MCP tool.
|