create-skybridge 0.0.0-dev.d26270f → 0.0.0-dev.d26b118
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/index.js +3 -1
- package/package.json +3 -2
- package/template/_gitignore +2 -1
- package/template/package.json +1 -0
- package/template/src/components/ball.tsx +22 -0
- package/template/src/helpers.ts +4 -0
- package/template/{server/src/index.ts → src/server.ts} +6 -6
- package/template/src/views/magic-8-ball.tsx +10 -0
- package/template/tsconfig.json +2 -4
- package/template/{web/vite.config.ts → vite.config.ts} +2 -4
- package/template/web/src/helpers.ts +0 -4
- package/template/web/src/widgets/magic-8-ball.tsx +0 -27
- /package/template/{web/src → src}/index.css +0 -0
package/dist/index.js
CHANGED
|
@@ -172,7 +172,9 @@ export async function init(args = process.argv.slice(2)) {
|
|
|
172
172
|
"alpic-ai/skybridge",
|
|
173
173
|
"-s",
|
|
174
174
|
"chatgpt-app-builder",
|
|
175
|
-
...(interactive
|
|
175
|
+
...(interactive
|
|
176
|
+
? []
|
|
177
|
+
: ["--yes", "-a", "universal", "-a", "claude-code"]),
|
|
176
178
|
], {
|
|
177
179
|
stdio: "inherit",
|
|
178
180
|
cwd: targetDir,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-skybridge",
|
|
3
|
-
"version": "0.0.0-dev.
|
|
3
|
+
"version": "0.0.0-dev.d26b118",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Alpic",
|
|
@@ -23,13 +23,14 @@
|
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"typescript": "^6.0.2",
|
|
26
|
-
"vitest": "^4.1.
|
|
26
|
+
"vitest": "^4.1.4"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"build": "tsc",
|
|
30
30
|
"test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
|
|
31
31
|
"test:unit": "vitest run",
|
|
32
32
|
"test:type": "tsc --noEmit",
|
|
33
|
+
"format": "biome check --write --error-on-warnings",
|
|
33
34
|
"test:format": "biome ci"
|
|
34
35
|
}
|
|
35
36
|
}
|
package/template/_gitignore
CHANGED
package/template/package.json
CHANGED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export function Ball({
|
|
2
|
+
question,
|
|
3
|
+
answer,
|
|
4
|
+
}: {
|
|
5
|
+
question?: string;
|
|
6
|
+
answer?: string;
|
|
7
|
+
}) {
|
|
8
|
+
return (
|
|
9
|
+
<div className="container">
|
|
10
|
+
<div className="ball">
|
|
11
|
+
{answer ? (
|
|
12
|
+
<>
|
|
13
|
+
<div className="question">{question}</div>
|
|
14
|
+
<div className="answer">{answer}</div>
|
|
15
|
+
</>
|
|
16
|
+
) : (
|
|
17
|
+
<div className="question">Shaking...</div>
|
|
18
|
+
)}
|
|
19
|
+
</div>
|
|
20
|
+
</div>
|
|
21
|
+
);
|
|
22
|
+
}
|
|
@@ -25,20 +25,20 @@ const server = new McpServer(
|
|
|
25
25
|
version: "0.0.1",
|
|
26
26
|
},
|
|
27
27
|
{ capabilities: {} },
|
|
28
|
-
).
|
|
29
|
-
"magic-8-ball",
|
|
30
|
-
{
|
|
31
|
-
description: "Magic 8 Ball",
|
|
32
|
-
},
|
|
28
|
+
).registerTool(
|
|
33
29
|
{
|
|
30
|
+
name: "magic-8-ball",
|
|
34
31
|
description: "For fortune-telling or seeking advice.",
|
|
35
32
|
inputSchema: {
|
|
36
33
|
question: z.string().describe("The user question."),
|
|
37
34
|
},
|
|
35
|
+
view: {
|
|
36
|
+
component: "magic-8-ball",
|
|
37
|
+
description: "Magic 8 Ball",
|
|
38
|
+
},
|
|
38
39
|
},
|
|
39
40
|
async ({ question }) => {
|
|
40
41
|
try {
|
|
41
|
-
// deterministic answer
|
|
42
42
|
const hash = question
|
|
43
43
|
.split("")
|
|
44
44
|
.reduce((acc, char) => acc + char.charCodeAt(0), 0);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import "@/index.css";
|
|
2
|
+
|
|
3
|
+
import { Ball } from "../components/ball.js";
|
|
4
|
+
import { useToolInfo } from "../helpers.js";
|
|
5
|
+
|
|
6
|
+
export default function Magic8Ball() {
|
|
7
|
+
const { input, output } = useToolInfo<"magic-8-ball">();
|
|
8
|
+
|
|
9
|
+
return <Ball question={input?.question} answer={output?.answer} />;
|
|
10
|
+
}
|
package/template/tsconfig.json
CHANGED
|
@@ -2,12 +2,10 @@
|
|
|
2
2
|
"extends": "skybridge/tsconfig",
|
|
3
3
|
|
|
4
4
|
"compilerOptions": {
|
|
5
|
-
"outDir": "dist",
|
|
6
|
-
"types": ["node", "vite/client"],
|
|
7
5
|
"paths": {
|
|
8
|
-
"@/*": ["./
|
|
6
|
+
"@/*": ["./src/*"]
|
|
9
7
|
}
|
|
10
8
|
},
|
|
11
9
|
|
|
12
|
-
"include": ["
|
|
10
|
+
"include": ["src", ".skybridge/**/*.d.ts"]
|
|
13
11
|
}
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import path from "node:path";
|
|
2
2
|
import react from "@vitejs/plugin-react";
|
|
3
3
|
import { skybridge } from "skybridge/web";
|
|
4
|
-
import { defineConfig
|
|
4
|
+
import { defineConfig } from "vite";
|
|
5
5
|
|
|
6
|
-
// https://vite.dev/config/
|
|
7
6
|
export default defineConfig({
|
|
8
|
-
plugins: [skybridge()
|
|
9
|
-
root: __dirname,
|
|
7
|
+
plugins: [skybridge(), react()],
|
|
10
8
|
resolve: {
|
|
11
9
|
alias: {
|
|
12
10
|
"@": path.resolve(__dirname, "./src"),
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import "@/index.css";
|
|
2
|
-
|
|
3
|
-
import { mountWidget } from "skybridge/web";
|
|
4
|
-
import { useToolInfo } from "../helpers.js";
|
|
5
|
-
|
|
6
|
-
function Magic8Ball() {
|
|
7
|
-
const { input, output } = useToolInfo<"magic-8-ball">();
|
|
8
|
-
|
|
9
|
-
return (
|
|
10
|
-
<div className="container">
|
|
11
|
-
<div className="ball">
|
|
12
|
-
{output ? (
|
|
13
|
-
<>
|
|
14
|
-
<div className="question">{input.question}</div>
|
|
15
|
-
<div className="answer">{output.answer}</div>
|
|
16
|
-
</>
|
|
17
|
-
) : (
|
|
18
|
-
<div className="question">Shaking...</div>
|
|
19
|
-
)}
|
|
20
|
-
</div>
|
|
21
|
-
</div>
|
|
22
|
-
);
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export default Magic8Ball;
|
|
26
|
-
|
|
27
|
-
mountWidget(<Magic8Ball />);
|
|
File without changes
|