spawnpack 0.1.3 → 0.1.4
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/spawnpack.js +8 -9
- package/package.json +55 -55
- package/templates/CLAUDE.md +803 -802
package/dist/spawnpack.js
CHANGED
|
@@ -1899,8 +1899,8 @@ Add your own API keys before using the MCP tools:
|
|
|
1899
1899
|
|
|
1900
1900
|
- Exa API keys: https://dashboard.exa.ai/api-keys
|
|
1901
1901
|
- Exa API key docs: https://exa.ai/docs/reference/team-management/create-api-key
|
|
1902
|
-
-
|
|
1903
|
-
-
|
|
1902
|
+
- Browser Use API keys: https://cloud.browser-use.com/settings?tab=api-keys&new=1
|
|
1903
|
+
- Browser Use MCP docs: https://docs.browser-use.com/cloud/guides/mcp-server
|
|
1904
1904
|
|
|
1905
1905
|
Update the placeholder values in \`.mcp.json\` with your own tokens.
|
|
1906
1906
|
|
|
@@ -2117,11 +2117,10 @@ function buildMcpServers() {
|
|
|
2117
2117
|
EXA_API_KEY: "YOUR_EXA_API_KEY"
|
|
2118
2118
|
}
|
|
2119
2119
|
},
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
HYPERBROWSER_API_KEY: "YOUR_HYPERBROWSER_API_KEY"
|
|
2120
|
+
"browser-use": {
|
|
2121
|
+
url: "https://api.browser-use.com/v3/mcp",
|
|
2122
|
+
headers: {
|
|
2123
|
+
"x-browser-use-api-key": "YOUR_BROWSER_USE_API_KEY"
|
|
2125
2124
|
}
|
|
2126
2125
|
},
|
|
2127
2126
|
"sequential-thinking": {
|
|
@@ -2486,9 +2485,9 @@ function showPostGeneration(config) {
|
|
|
2486
2485
|
}
|
|
2487
2486
|
if (config.useAi) {
|
|
2488
2487
|
usefulCommands.push("");
|
|
2489
|
-
usefulCommands.push(`${teal(import_picocolors.default.bold("Note"))} ${import_picocolors.default.dim("Add your own Exa and
|
|
2488
|
+
usefulCommands.push(`${teal(import_picocolors.default.bold("Note"))} ${import_picocolors.default.dim("Add your own Exa and Browser Use MCP API keys in .mcp.json before using the AI tooling.")}`);
|
|
2490
2489
|
usefulCommands.push(` ${import_picocolors.default.dim("Exa:")} ${import_picocolors.default.cyan("https://dashboard.exa.ai/api-keys")}`);
|
|
2491
|
-
usefulCommands.push(` ${import_picocolors.default.dim("
|
|
2490
|
+
usefulCommands.push(` ${import_picocolors.default.dim("Browser Use:")} ${import_picocolors.default.cyan("https://cloud.browser-use.com/settings?tab=api-keys&new=1")}`);
|
|
2492
2491
|
}
|
|
2493
2492
|
O2.message([...nextSteps, "", ...usefulCommands].join(`
|
|
2494
2493
|
`), {
|
package/package.json
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "spawnpack",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Minecraft Bedrock addon project generator — scaffold your BP+RP in seconds",
|
|
5
|
-
"author": "veedy-dev",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"bin": {
|
|
9
|
-
"spawnpack": "bin/spawnpack.js"
|
|
10
|
-
},
|
|
11
|
-
"files": [
|
|
12
|
-
"bin/spawnpack.js",
|
|
13
|
-
"dist/spawnpack.js",
|
|
14
|
-
"templates/CLAUDE.md",
|
|
15
|
-
"README.md",
|
|
16
|
-
"LICENSE",
|
|
17
|
-
"package.json"
|
|
18
|
-
],
|
|
19
|
-
"repository": {
|
|
20
|
-
"type": "git",
|
|
21
|
-
"url": "git+https://github.com/veedy-dev/spawnpack.git"
|
|
22
|
-
},
|
|
23
|
-
"bugs": {
|
|
24
|
-
"url": "https://github.com/veedy-dev/spawnpack/issues"
|
|
25
|
-
},
|
|
26
|
-
"homepage": "https://github.com/veedy-dev/spawnpack#readme",
|
|
27
|
-
"keywords": [
|
|
28
|
-
"minecraft",
|
|
29
|
-
"bedrock",
|
|
30
|
-
"addon",
|
|
31
|
-
"generator",
|
|
32
|
-
"cli",
|
|
33
|
-
"spawnpack",
|
|
34
|
-
"regolith",
|
|
35
|
-
"rgl"
|
|
36
|
-
],
|
|
37
|
-
"engines": {
|
|
38
|
-
"bun": ">=1.2.0"
|
|
39
|
-
},
|
|
40
|
-
"scripts": {
|
|
41
|
-
"start": "bun run src/index.ts",
|
|
42
|
-
"dev": "bun --watch src/index.ts",
|
|
43
|
-
"build": "bun build src/index.ts --outfile dist/spawnpack.js --target node",
|
|
44
|
-
"typecheck": "tsc --noEmit",
|
|
45
|
-
"prepack": "bun run typecheck && bun run build"
|
|
46
|
-
},
|
|
47
|
-
"dependencies": {
|
|
48
|
-
"@clack/prompts": "^1.2.0",
|
|
49
|
-
"picocolors": "^1.1.1"
|
|
50
|
-
},
|
|
51
|
-
"devDependencies": {
|
|
52
|
-
"@types/bun": "^1.2.0",
|
|
53
|
-
"typescript": "^5.7.0"
|
|
54
|
-
}
|
|
55
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "spawnpack",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "Minecraft Bedrock addon project generator — scaffold your BP+RP in seconds",
|
|
5
|
+
"author": "veedy-dev",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"bin": {
|
|
9
|
+
"spawnpack": "bin/spawnpack.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"bin/spawnpack.js",
|
|
13
|
+
"dist/spawnpack.js",
|
|
14
|
+
"templates/CLAUDE.md",
|
|
15
|
+
"README.md",
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"package.json"
|
|
18
|
+
],
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/veedy-dev/spawnpack.git"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/veedy-dev/spawnpack/issues"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/veedy-dev/spawnpack#readme",
|
|
27
|
+
"keywords": [
|
|
28
|
+
"minecraft",
|
|
29
|
+
"bedrock",
|
|
30
|
+
"addon",
|
|
31
|
+
"generator",
|
|
32
|
+
"cli",
|
|
33
|
+
"spawnpack",
|
|
34
|
+
"regolith",
|
|
35
|
+
"rgl"
|
|
36
|
+
],
|
|
37
|
+
"engines": {
|
|
38
|
+
"bun": ">=1.2.0"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"start": "bun run src/index.ts",
|
|
42
|
+
"dev": "bun --watch src/index.ts",
|
|
43
|
+
"build": "bun build src/index.ts --outfile dist/spawnpack.js --target node",
|
|
44
|
+
"typecheck": "tsc --noEmit",
|
|
45
|
+
"prepack": "bun run typecheck && bun run build"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@clack/prompts": "^1.2.0",
|
|
49
|
+
"picocolors": "^1.1.1"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/bun": "^1.2.0",
|
|
53
|
+
"typescript": "^5.7.0"
|
|
54
|
+
}
|
|
55
|
+
}
|