create-skybridge 0.0.0-dev.cf133c0 → 0.0.0-dev.cf29341
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 +338 -210
- package/package.json +9 -8
- package/templates/blank/.dockerignore +4 -0
- package/templates/blank/AGENTS.md +1 -0
- package/templates/blank/Dockerfile +53 -0
- package/templates/blank/README.md +92 -0
- package/{template → templates/blank}/_gitignore +3 -1
- package/templates/blank/node_modules/.bin/alpic +21 -0
- package/templates/blank/node_modules/.bin/sb +21 -0
- package/templates/blank/node_modules/.bin/skybridge +21 -0
- package/{template → templates/blank}/node_modules/.bin/tsc +2 -2
- package/{template → templates/blank}/node_modules/.bin/tsserver +2 -2
- package/{template → templates/blank}/node_modules/.bin/tsx +2 -2
- package/templates/blank/node_modules/.bin/vite +21 -0
- package/templates/blank/package.json +29 -0
- package/templates/blank/src/helpers.ts +4 -0
- package/templates/blank/src/server.ts +16 -0
- package/templates/blank/tsconfig.json +5 -0
- package/templates/blank/vite.config.ts +6 -0
- package/templates/demo/.dockerignore +4 -0
- package/templates/demo/AGENTS.md +1 -0
- package/templates/demo/Dockerfile +53 -0
- package/templates/demo/README.md +95 -0
- package/templates/demo/_gitignore +7 -0
- package/templates/demo/alpic.json +3 -0
- package/templates/demo/node_modules/.bin/alpic +21 -0
- package/templates/demo/node_modules/.bin/sb +21 -0
- package/templates/demo/node_modules/.bin/skybridge +21 -0
- package/templates/demo/node_modules/.bin/tsc +21 -0
- package/templates/demo/node_modules/.bin/tsserver +21 -0
- package/templates/demo/node_modules/.bin/tsx +21 -0
- package/templates/demo/node_modules/.bin/vite +21 -0
- package/templates/demo/package.json +41 -0
- package/templates/demo/src/helpers.ts +4 -0
- package/templates/demo/src/index.css +59 -0
- package/templates/demo/src/server.ts +94 -0
- package/templates/demo/src/views/components/doc-link.tsx +22 -0
- package/templates/demo/src/views/components/doc.tsx +21 -0
- package/templates/demo/src/views/components/nav.tsx +31 -0
- package/templates/demo/src/views/components/progress.tsx +35 -0
- package/templates/demo/src/views/components/steps/outro.tsx +68 -0
- package/templates/demo/src/views/components/steps/state.tsx +47 -0
- package/templates/demo/src/views/components/steps/tool-call.tsx +53 -0
- package/templates/demo/src/views/components/steps/tool-output.tsx +40 -0
- package/templates/demo/src/views/images/mascot/beret.png +0 -0
- package/templates/demo/src/views/images/mascot/chapka.png +0 -0
- package/templates/demo/src/views/images/mascot/cowboy-hat.png +0 -0
- package/templates/demo/src/views/images/mascot/fez.png +0 -0
- package/templates/demo/src/views/images/mascot/jester-hat.png +0 -0
- package/templates/demo/src/views/images/mascot/mitre.png +0 -0
- package/templates/demo/src/views/images/mascot/non-la.png +0 -0
- package/templates/demo/src/views/images/mascot/original.png +0 -0
- package/templates/demo/src/views/images/mascot/propeller-beanie.png +0 -0
- package/templates/demo/src/views/images/mascot/ski-mask.png +0 -0
- package/templates/demo/src/views/images/mascot/sombrero.png +0 -0
- package/templates/demo/src/views/images/mascot/top-hat.png +0 -0
- package/templates/demo/src/views/images/mascot/viking-helmet.png +0 -0
- package/templates/demo/src/views/onboarding.tsx +63 -0
- package/templates/demo/src/views/use-mascot.ts +60 -0
- package/templates/demo/tsconfig.json +11 -0
- package/templates/demo/vite.config.ts +14 -0
- package/templates/ecom/.dockerignore +4 -0
- package/templates/ecom/.env.template +2 -0
- package/templates/ecom/AGENTS.md +2 -0
- package/templates/ecom/Dockerfile +53 -0
- package/templates/ecom/README.md +92 -0
- package/templates/ecom/_gitignore +8 -0
- package/templates/ecom/alpic.json +3 -0
- package/templates/ecom/node_modules/.bin/alpic +21 -0
- package/templates/ecom/node_modules/.bin/sb +21 -0
- package/templates/ecom/node_modules/.bin/skybridge +21 -0
- package/templates/ecom/node_modules/.bin/tsc +21 -0
- package/templates/ecom/node_modules/.bin/tsserver +21 -0
- package/templates/ecom/node_modules/.bin/tsx +21 -0
- package/templates/ecom/node_modules/.bin/vite +21 -0
- package/templates/ecom/package.json +29 -0
- package/templates/ecom/src/config.ts +12 -0
- package/templates/ecom/src/helpers.ts +4 -0
- package/templates/ecom/src/server.ts +36 -0
- package/templates/ecom/src/tools/search-products.ts +185 -0
- package/templates/ecom/tsconfig.json +5 -0
- package/templates/ecom/vite.config.ts +6 -0
- package/dist/index.test.d.ts +0 -1
- package/dist/index.test.js +0 -33
- package/template/AGENTS.md +0 -1
- package/template/README.md +0 -97
- package/template/node_modules/.bin/alpic +0 -21
- package/template/node_modules/.bin/sb +0 -21
- package/template/node_modules/.bin/skybridge +0 -21
- package/template/node_modules/.bin/vite +0 -21
- package/template/package.json +0 -33
- package/template/server/src/index.ts +0 -62
- package/template/tsconfig.json +0 -9
- package/template/web/src/helpers.ts +0 -4
- package/template/web/src/index.css +0 -154
- package/template/web/src/widgets/magic-8-ball.tsx +0 -27
- package/template/web/vite.config.ts +0 -15
- /package/{template → templates/blank}/alpic.json +0 -0
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import {
|
|
3
|
+
CAROUSEL_MAX_SIZE,
|
|
4
|
+
CAROUSEL_RANGE,
|
|
5
|
+
MIN_SEARCH_ITERATIONS,
|
|
6
|
+
} from "../config.js";
|
|
7
|
+
|
|
8
|
+
// The `search-products` tool: keyword + filters in, matching products out as
|
|
9
|
+
// structured output for the model. It has NO view — include only what the model
|
|
10
|
+
// needs to curate (ids + properties), never presentational data (images, media);
|
|
11
|
+
// render-carousel handles that. Everything this tool needs lives in this file.
|
|
12
|
+
|
|
13
|
+
// ---------------------------------------------------------------------------
|
|
14
|
+
// Input
|
|
15
|
+
// ---------------------------------------------------------------------------
|
|
16
|
+
|
|
17
|
+
const inputSchema = {
|
|
18
|
+
// @todo: tune this guidance to your catalog's vocabulary. The model reads
|
|
19
|
+
// it to turn conversational input into a good keyword.
|
|
20
|
+
keyword: z.string().describe(
|
|
21
|
+
`\
|
|
22
|
+
Short noun phrases extracted from conversational input. Never pass full sentences. \
|
|
23
|
+
ALWAYS use the singular form, not the plural. \
|
|
24
|
+
Include color, material, and style descriptors for accuracy. \
|
|
25
|
+
For vague gift or occasion queries without a clear product type, use broad category terms. \
|
|
26
|
+
Preserve the existing keyword across filter refinements; only replace when the user makes a completely different request.`,
|
|
27
|
+
),
|
|
28
|
+
|
|
29
|
+
// @todo: set the sort options your backend supports (or remove).
|
|
30
|
+
sort: z.enum(["price-asc", "price-desc"]).optional().describe("Sort order."),
|
|
31
|
+
|
|
32
|
+
// @todo: declare the filters your catalog supports. Add one param per
|
|
33
|
+
// facet (category, color, size...), each optional so the model only sends
|
|
34
|
+
// what the user asked for. `priceRange` below is just an example, remove it.
|
|
35
|
+
priceRange: z
|
|
36
|
+
.string()
|
|
37
|
+
.optional()
|
|
38
|
+
.describe(
|
|
39
|
+
"Price range in dollars. Format: 'min-max' e.g. '0-500', '1000-2000'.",
|
|
40
|
+
),
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
type SearchInput = z.infer<z.ZodObject<typeof inputSchema>>;
|
|
44
|
+
|
|
45
|
+
// ---------------------------------------------------------------------------
|
|
46
|
+
// Output — model-facing grounding, returned in structuredContent.
|
|
47
|
+
// ---------------------------------------------------------------------------
|
|
48
|
+
|
|
49
|
+
// The property names the model curates on (grounding only, no presentational data).
|
|
50
|
+
// @todo: replace with your catalog's property names.
|
|
51
|
+
const propertyName = z.enum(["name", "price", "description"]);
|
|
52
|
+
|
|
53
|
+
const outputSchema = {
|
|
54
|
+
products: z
|
|
55
|
+
.array(
|
|
56
|
+
z.object({
|
|
57
|
+
id: z.string().describe("Stable product ID; pass to render-carousel."),
|
|
58
|
+
properties: z
|
|
59
|
+
.array(
|
|
60
|
+
z.object({
|
|
61
|
+
name: propertyName.describe("Which property this is."),
|
|
62
|
+
value: z.array(z.string()).describe("The property's value(s)."),
|
|
63
|
+
}),
|
|
64
|
+
)
|
|
65
|
+
.describe("Product properties to curate on."),
|
|
66
|
+
}),
|
|
67
|
+
)
|
|
68
|
+
.describe("Matching products, sorted."),
|
|
69
|
+
pages: z
|
|
70
|
+
.object({
|
|
71
|
+
current: z.number(),
|
|
72
|
+
total: z.number(),
|
|
73
|
+
})
|
|
74
|
+
.optional()
|
|
75
|
+
.describe("Pagination: current page and total page count."),
|
|
76
|
+
totalHits: z
|
|
77
|
+
.number()
|
|
78
|
+
.optional()
|
|
79
|
+
.describe("Total matching products across all pages."),
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
type SearchResults = z.infer<z.ZodObject<typeof outputSchema>>;
|
|
83
|
+
|
|
84
|
+
// ---------------------------------------------------------------------------
|
|
85
|
+
// Data access
|
|
86
|
+
// ---------------------------------------------------------------------------
|
|
87
|
+
|
|
88
|
+
function search(input: SearchInput): SearchResults {
|
|
89
|
+
// @todo: plug in your product API / DB. Query it with the input params and map
|
|
90
|
+
// each result into `products` below. `pages` and `totalHits` are optional.
|
|
91
|
+
return {
|
|
92
|
+
products: [], // { id: string; properties: { name: PropertyName; value: string[] }[] }[]
|
|
93
|
+
pages: { current: 1, total: 1 },
|
|
94
|
+
totalHits: 0,
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
// ---------------------------------------------------------------------------
|
|
99
|
+
// Narration — framing + next-step instructions for the model. The products
|
|
100
|
+
// themselves ride in structuredContent; this text carries NO result data.
|
|
101
|
+
// @todo: customize the NEXT STEPS guidance below for your flow (keep searching
|
|
102
|
+
// vs. curate and render). Remind the model to ground claims in the structured
|
|
103
|
+
// results and never invent attributes.
|
|
104
|
+
// ---------------------------------------------------------------------------
|
|
105
|
+
|
|
106
|
+
function narrate({ products }: SearchResults): string {
|
|
107
|
+
const size = products.length;
|
|
108
|
+
|
|
109
|
+
if (size === 0) {
|
|
110
|
+
return `\
|
|
111
|
+
No products found.
|
|
112
|
+
|
|
113
|
+
NEXT STEP: Broaden the keyword or relax filters, then search again.`;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
if (size < CAROUSEL_MAX_SIZE) {
|
|
117
|
+
return `\
|
|
118
|
+
Only a few results.
|
|
119
|
+
|
|
120
|
+
NEXT STEPS:
|
|
121
|
+
1. If the client asked for a specific product by name, these are fine: curate and call render-carousel with the selected IDs.
|
|
122
|
+
2. Otherwise, search again with broader terms before rendering.`;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
return `\
|
|
126
|
+
Enough results to present.
|
|
127
|
+
|
|
128
|
+
NEXT STEPS:
|
|
129
|
+
1. Curate the best matches for the client's intent from the structured results.
|
|
130
|
+
2. Write your recommendation mentioning the selected products.
|
|
131
|
+
3. Call render-carousel with the selected IDs.`;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
// ---------------------------------------------------------------------------
|
|
135
|
+
// Tool (registered from server.ts to keep the typed tool chain intact)
|
|
136
|
+
// ---------------------------------------------------------------------------
|
|
137
|
+
|
|
138
|
+
export const searchProductsDefinition = {
|
|
139
|
+
name: "search-products" as const,
|
|
140
|
+
|
|
141
|
+
// @todo: describe YOUR catalog and how the agent should search and curate
|
|
142
|
+
// it. This is the model's main guide: be specific about your categories,
|
|
143
|
+
// the multi-call search loop, and when to render vs. keep searching.
|
|
144
|
+
description: `\
|
|
145
|
+
Search the product catalog. Handles any query: specific products, broad categories, gifts, occasions, or open discovery.
|
|
146
|
+
Never assume a category is unavailable: always search before responding.
|
|
147
|
+
|
|
148
|
+
The response is data only: a list of matching products (name, ID, price, description, and any product-specific attributes) plus pagination and the available filters. The raw results are for your eyes only: the client never sees them.
|
|
149
|
+
|
|
150
|
+
NEVER describe or characterize the raw results to the client: do not mention how many there are, what categories they fall into, or that they look off-topic. While searching, stay silent: do not narrate what you are doing, announce searches, or report progress between tool calls. Speak only once the carousel is rendered.
|
|
151
|
+
|
|
152
|
+
Act on the response as follows:
|
|
153
|
+
|
|
154
|
+
- FIRST SEARCH: use the keyword only (plus sort if needed). Read the available filters in the response; these are the only valid filter options for follow-ups.
|
|
155
|
+
- REFINEMENT: if the user's intent matches an available filter, apply it. If it doesn't match any filter, start a new keyword search.
|
|
156
|
+
- ITERATE: a single search is never enough. Run several searches (${MIN_SEARCH_ITERATIONS} minimum) before rendering: vary the keyword, apply a filter, or page deeper, and compare results across them. Quality comes from this multi-call exploration; one call then render gives shallow results.
|
|
157
|
+
- CURATION: read results and pick the best matches for the client's intent, grounding your choice in each product's description. If zero results, broaden the keyword or relax filters and search again: do NOT call render-carousel. If fewer than 3 results and the user didn't ask for a specific product, search again with broader terms. Only after exploring across several searches, call render-carousel with the selected IDs.
|
|
158
|
+
- PRESENT: Once you have ${CAROUSEL_RANGE} distinct, relevant products, call render-carousel with their IDs. Recommend ONLY AFTER the carousel displays, in carousel order.
|
|
159
|
+
|
|
160
|
+
The sweet spot is ${CAROUSEL_RANGE} products.
|
|
161
|
+
`,
|
|
162
|
+
annotations: {
|
|
163
|
+
readOnlyHint: true,
|
|
164
|
+
openWorldHint: false,
|
|
165
|
+
destructiveHint: false,
|
|
166
|
+
},
|
|
167
|
+
|
|
168
|
+
// @todo: customize the status messages shown in ChatGPT while the tool runs.
|
|
169
|
+
_meta: {
|
|
170
|
+
"openai/toolInvocation/invoking": "Searching the catalog",
|
|
171
|
+
"openai/toolInvocation/invoked": "Searched the catalog",
|
|
172
|
+
},
|
|
173
|
+
|
|
174
|
+
inputSchema,
|
|
175
|
+
outputSchema,
|
|
176
|
+
};
|
|
177
|
+
|
|
178
|
+
export function searchProductsHandler(input: SearchInput) {
|
|
179
|
+
const results = search(input);
|
|
180
|
+
return {
|
|
181
|
+
structuredContent: results,
|
|
182
|
+
content: [{ type: "text" as const, text: narrate(results) }],
|
|
183
|
+
isError: false,
|
|
184
|
+
};
|
|
185
|
+
}
|
package/dist/index.test.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/index.test.js
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { randomBytes } from "node:crypto";
|
|
2
|
-
import fs from "node:fs/promises";
|
|
3
|
-
import path from "node:path";
|
|
4
|
-
import { afterEach, beforeEach, describe, expect, it } from "vitest";
|
|
5
|
-
import { init } from "./index.js";
|
|
6
|
-
describe("create-skybridge", () => {
|
|
7
|
-
let tempDirName;
|
|
8
|
-
beforeEach(() => {
|
|
9
|
-
tempDirName = `test-${randomBytes(2).toString("hex")}`;
|
|
10
|
-
});
|
|
11
|
-
afterEach(async () => {
|
|
12
|
-
await fs.rm(path.join(process.cwd(), tempDirName), {
|
|
13
|
-
recursive: true,
|
|
14
|
-
force: true,
|
|
15
|
-
});
|
|
16
|
-
});
|
|
17
|
-
it("should copy the template", async () => {
|
|
18
|
-
const name = `../../${tempDirName}//project$`;
|
|
19
|
-
await init([name]);
|
|
20
|
-
await fs.access(path.join(process.cwd(), tempDirName, "project", ".gitignore"));
|
|
21
|
-
expect(fs.access(path.join(process.cwd(), tempDirName, "project", ".npmrc"))).rejects.toThrowError();
|
|
22
|
-
});
|
|
23
|
-
it("should download template from repo", async () => {
|
|
24
|
-
const name = `../../${tempDirName}//project$`;
|
|
25
|
-
await init([
|
|
26
|
-
name,
|
|
27
|
-
"--repo",
|
|
28
|
-
"github:alpic-ai/skybridge/examples/ecom-carousel",
|
|
29
|
-
]);
|
|
30
|
-
await fs.access(path.join(process.cwd(), tempDirName, "project", ".gitignore"));
|
|
31
|
-
expect(fs.access(path.join(process.cwd(), tempDirName, "project", ".npmrc"))).rejects.toThrowError();
|
|
32
|
-
});
|
|
33
|
-
});
|
package/template/AGENTS.md
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Before writing code, first explore the project structure, then invoke the chatgpt-app-builder skill for documentation.
|
package/template/README.md
DELETED
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
# Skybridge Starter
|
|
2
|
-
|
|
3
|
-
A minimal TypeScript template for building MCP and ChatGPT Apps with the [Skybridge](https://docs.skybridge.tech/home) framework.
|
|
4
|
-
|
|
5
|
-
## Getting Started
|
|
6
|
-
|
|
7
|
-
### Prerequisites
|
|
8
|
-
|
|
9
|
-
- Node.js 24+
|
|
10
|
-
- HTTP tunnel such as [ngrok](https://ngrok.com/download) if you want to test with remote MCP hosts like ChatGPT or Claude.ai.
|
|
11
|
-
|
|
12
|
-
### Local Development
|
|
13
|
-
|
|
14
|
-
#### 1. Install
|
|
15
|
-
|
|
16
|
-
```bash
|
|
17
|
-
npm install
|
|
18
|
-
# or
|
|
19
|
-
yarn install
|
|
20
|
-
# or
|
|
21
|
-
pnpm install
|
|
22
|
-
# or
|
|
23
|
-
bun install
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
#### 2. Start your local server
|
|
27
|
-
|
|
28
|
-
Run the development server from the root directory:
|
|
29
|
-
|
|
30
|
-
```bash
|
|
31
|
-
npm run dev
|
|
32
|
-
# or
|
|
33
|
-
yarn dev
|
|
34
|
-
# or
|
|
35
|
-
pnpm dev
|
|
36
|
-
# or
|
|
37
|
-
bun dev
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
This command starts:
|
|
41
|
-
- Your MCP server at `http://localhost:3000/mcp`.
|
|
42
|
-
- Skybridge DevTools UI at `http://localhost:3000/`.
|
|
43
|
-
|
|
44
|
-
#### 3. Project structure
|
|
45
|
-
|
|
46
|
-
```
|
|
47
|
-
├── server/
|
|
48
|
-
│ └── src/
|
|
49
|
-
│ └── index.ts # Server entry point
|
|
50
|
-
├── web/
|
|
51
|
-
│ ├── src/
|
|
52
|
-
│ │ ├── widgets/ # React components (one per widget)
|
|
53
|
-
│ │ ├── helpers.ts # Shared utilities
|
|
54
|
-
│ │ └── index.css # Global styles
|
|
55
|
-
│ └── vite.config.ts
|
|
56
|
-
├── alpic.json # Deployment config
|
|
57
|
-
├── nodemon.json # Dev server config
|
|
58
|
-
└── package.json
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
### Create your first widget
|
|
62
|
-
|
|
63
|
-
#### 1. Add a new widget
|
|
64
|
-
|
|
65
|
-
- Register a widget in `server/src/server.ts` with a unique name (e.g., `my-widget`) using [`registerWidget`](https://docs.skybridge.tech/api-reference/register-widget)
|
|
66
|
-
- Create a matching React component at `web/src/widgets/my-widget.tsx`. **The file name must match the widget name exactly**.
|
|
67
|
-
|
|
68
|
-
#### 2. Edit widgets with Hot Module Replacement (HMR)
|
|
69
|
-
|
|
70
|
-
Edit and save components in `web/src/widgets/` — changes will appear instantly inside your App.
|
|
71
|
-
|
|
72
|
-
#### 3. Edit server code
|
|
73
|
-
|
|
74
|
-
Modify files in `server/` and refresh the connection with your testing MCP Client to see the changes.
|
|
75
|
-
|
|
76
|
-
### Testing your App
|
|
77
|
-
|
|
78
|
-
You can test your App locally by using our DevTools UI on `localhost:3000` while running the `pnpm dev` command.
|
|
79
|
-
|
|
80
|
-
To test your app with other MCP Clients like ChatGPT, Claude or VSCode, see [Testing Your App](https://docs.skybridge.tech/quickstart/test-your-app).
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
## Deploy to Production
|
|
84
|
-
|
|
85
|
-
Skybridge is infrastructure vendor agnostic, and your app can be deployed on any cloud platform supporting MCP.
|
|
86
|
-
|
|
87
|
-
The simplest way to deploy your App in minutes is [Alpic](https://alpic.ai/).
|
|
88
|
-
1. Create an account on [Alpic platform](https://app.alpic.ai/).
|
|
89
|
-
2. Connect your GitHub repository to automatically deploy at each commit.
|
|
90
|
-
3. Use your remote App URL to connect it to MCP Clients, or use the Alpic Playground to easily test your App.
|
|
91
|
-
|
|
92
|
-
## Resources
|
|
93
|
-
- [Skybridge Documentation](https://docs.skybridge.tech/)
|
|
94
|
-
- [Apps SDK Documentation](https://developers.openai.com/apps-sdk)
|
|
95
|
-
- [MCP Apps Documentation](https://github.com/modelcontextprotocol/ext-apps/tree/main)
|
|
96
|
-
- [Model Context Protocol Documentation](https://modelcontextprotocol.io/)
|
|
97
|
-
- [Alpic Documentation](https://docs.alpic.ai/)
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
-
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
-
basedir=`cygpath -w "$basedir"`
|
|
8
|
-
fi
|
|
9
|
-
;;
|
|
10
|
-
esac
|
|
11
|
-
|
|
12
|
-
if [ -z "$NODE_PATH" ]; then
|
|
13
|
-
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/alpic@1.95.0_@opentelemetry+api@1.9.0_arktype@2.1.27_rxjs@7.8.2_typescript@5.9.3/node_modules/alpic/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/alpic@1.95.0_@opentelemetry+api@1.9.0_arktype@2.1.27_rxjs@7.8.2_typescript@5.9.3/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
|
|
14
|
-
else
|
|
15
|
-
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/alpic@1.95.0_@opentelemetry+api@1.9.0_arktype@2.1.27_rxjs@7.8.2_typescript@5.9.3/node_modules/alpic/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/alpic@1.95.0_@opentelemetry+api@1.9.0_arktype@2.1.27_rxjs@7.8.2_typescript@5.9.3/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
-
fi
|
|
17
|
-
if [ -x "$basedir/node" ]; then
|
|
18
|
-
exec "$basedir/node" "$basedir/../alpic/bin/run.js" "$@"
|
|
19
|
-
else
|
|
20
|
-
exec node "$basedir/../alpic/bin/run.js" "$@"
|
|
21
|
-
fi
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
-
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
-
basedir=`cygpath -w "$basedir"`
|
|
8
|
-
fi
|
|
9
|
-
;;
|
|
10
|
-
esac
|
|
11
|
-
|
|
12
|
-
if [ -z "$NODE_PATH" ]; then
|
|
13
|
-
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.35.5_@modelcontextprotocol+sdk@1.27.1_zod@4.3.6__@skybridge+devtools@0.35.5_2bc251bdf070edcf23d16b641b0b7ce8/node_modules/skybridge/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.35.5_@modelcontextprotocol+sdk@1.27.1_zod@4.3.6__@skybridge+devtools@0.35.5_2bc251bdf070edcf23d16b641b0b7ce8/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
|
|
14
|
-
else
|
|
15
|
-
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.35.5_@modelcontextprotocol+sdk@1.27.1_zod@4.3.6__@skybridge+devtools@0.35.5_2bc251bdf070edcf23d16b641b0b7ce8/node_modules/skybridge/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.35.5_@modelcontextprotocol+sdk@1.27.1_zod@4.3.6__@skybridge+devtools@0.35.5_2bc251bdf070edcf23d16b641b0b7ce8/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
-
fi
|
|
17
|
-
if [ -x "$basedir/node" ]; then
|
|
18
|
-
exec "$basedir/node" "$basedir/../skybridge/bin/run.js" "$@"
|
|
19
|
-
else
|
|
20
|
-
exec node "$basedir/../skybridge/bin/run.js" "$@"
|
|
21
|
-
fi
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
-
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
-
basedir=`cygpath -w "$basedir"`
|
|
8
|
-
fi
|
|
9
|
-
;;
|
|
10
|
-
esac
|
|
11
|
-
|
|
12
|
-
if [ -z "$NODE_PATH" ]; then
|
|
13
|
-
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.35.5_@modelcontextprotocol+sdk@1.27.1_zod@4.3.6__@skybridge+devtools@0.35.5_2bc251bdf070edcf23d16b641b0b7ce8/node_modules/skybridge/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.35.5_@modelcontextprotocol+sdk@1.27.1_zod@4.3.6__@skybridge+devtools@0.35.5_2bc251bdf070edcf23d16b641b0b7ce8/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
|
|
14
|
-
else
|
|
15
|
-
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.35.5_@modelcontextprotocol+sdk@1.27.1_zod@4.3.6__@skybridge+devtools@0.35.5_2bc251bdf070edcf23d16b641b0b7ce8/node_modules/skybridge/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.35.5_@modelcontextprotocol+sdk@1.27.1_zod@4.3.6__@skybridge+devtools@0.35.5_2bc251bdf070edcf23d16b641b0b7ce8/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
-
fi
|
|
17
|
-
if [ -x "$basedir/node" ]; then
|
|
18
|
-
exec "$basedir/node" "$basedir/../skybridge/bin/run.js" "$@"
|
|
19
|
-
else
|
|
20
|
-
exec node "$basedir/../skybridge/bin/run.js" "$@"
|
|
21
|
-
fi
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
-
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
-
basedir=`cygpath -w "$basedir"`
|
|
8
|
-
fi
|
|
9
|
-
;;
|
|
10
|
-
esac
|
|
11
|
-
|
|
12
|
-
if [ -z "$NODE_PATH" ]; then
|
|
13
|
-
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@8.0.0_@types+node@25.2.3_esbuild@0.27.2_jiti@2.6.1_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@8.0.0_@types+node@25.2.3_esbuild@0.27.2_jiti@2.6.1_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
|
|
14
|
-
else
|
|
15
|
-
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@8.0.0_@types+node@25.2.3_esbuild@0.27.2_jiti@2.6.1_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@8.0.0_@types+node@25.2.3_esbuild@0.27.2_jiti@2.6.1_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
-
fi
|
|
17
|
-
if [ -x "$basedir/node" ]; then
|
|
18
|
-
exec "$basedir/node" "$basedir/../vite/bin/vite.js" "$@"
|
|
19
|
-
else
|
|
20
|
-
exec node "$basedir/../vite/bin/vite.js" "$@"
|
|
21
|
-
fi
|
package/template/package.json
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "apps-sdk-template",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": true,
|
|
5
|
-
"description": "Alpic MCP Server Template",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"dev": "skybridge dev",
|
|
9
|
-
"build": "skybridge build",
|
|
10
|
-
"start": "skybridge start",
|
|
11
|
-
"deploy": "alpic deploy"
|
|
12
|
-
},
|
|
13
|
-
"dependencies": {
|
|
14
|
-
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
15
|
-
"react": "^19.2.4",
|
|
16
|
-
"react-dom": "^19.2.4",
|
|
17
|
-
"skybridge": ">=0.35.5 <1.0.0",
|
|
18
|
-
"vite": "^8.0.0",
|
|
19
|
-
"zod": "^4.3.6"
|
|
20
|
-
},
|
|
21
|
-
"devDependencies": {
|
|
22
|
-
"@skybridge/devtools": ">=0.35.5 <1.0.0",
|
|
23
|
-
"@types/react": "^19.2.14",
|
|
24
|
-
"@types/react-dom": "^19.2.3",
|
|
25
|
-
"@vitejs/plugin-react": "^6.0.1",
|
|
26
|
-
"alpic": "^1.95.0",
|
|
27
|
-
"tsx": "^4.21.0",
|
|
28
|
-
"typescript": "^5.9.3"
|
|
29
|
-
},
|
|
30
|
-
"engines": {
|
|
31
|
-
"node": ">=24.14.0"
|
|
32
|
-
}
|
|
33
|
-
}
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import { McpServer } from "skybridge/server";
|
|
2
|
-
import { z } from "zod";
|
|
3
|
-
|
|
4
|
-
const Answers = [
|
|
5
|
-
"As I see it, yes",
|
|
6
|
-
"Don't count on it",
|
|
7
|
-
"It is certain",
|
|
8
|
-
"It is decidedly so",
|
|
9
|
-
"Most likely",
|
|
10
|
-
"My reply is no",
|
|
11
|
-
"My sources say no",
|
|
12
|
-
"Outlook good",
|
|
13
|
-
"Outlook not so good",
|
|
14
|
-
"Signs point to yes",
|
|
15
|
-
"Very doubtful",
|
|
16
|
-
"Without a doubt",
|
|
17
|
-
"Yes definitely",
|
|
18
|
-
"Yes",
|
|
19
|
-
"You may rely on it",
|
|
20
|
-
];
|
|
21
|
-
|
|
22
|
-
const server = new McpServer(
|
|
23
|
-
{
|
|
24
|
-
name: "alpic-openai-app",
|
|
25
|
-
version: "0.0.1",
|
|
26
|
-
},
|
|
27
|
-
{ capabilities: {} },
|
|
28
|
-
).registerWidget(
|
|
29
|
-
"magic-8-ball",
|
|
30
|
-
{
|
|
31
|
-
description: "Magic 8 Ball",
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
description: "For fortune-telling or seeking advice.",
|
|
35
|
-
inputSchema: {
|
|
36
|
-
question: z.string().describe("The user question."),
|
|
37
|
-
},
|
|
38
|
-
},
|
|
39
|
-
async ({ question }) => {
|
|
40
|
-
try {
|
|
41
|
-
// deterministic answer
|
|
42
|
-
const hash = question
|
|
43
|
-
.split("")
|
|
44
|
-
.reduce((acc, char) => acc + char.charCodeAt(0), 0);
|
|
45
|
-
const answer = Answers[hash % Answers.length];
|
|
46
|
-
return {
|
|
47
|
-
structuredContent: { answer },
|
|
48
|
-
content: [],
|
|
49
|
-
isError: false,
|
|
50
|
-
};
|
|
51
|
-
} catch (error) {
|
|
52
|
-
return {
|
|
53
|
-
content: [{ type: "text", text: `Error: ${error}` }],
|
|
54
|
-
isError: true,
|
|
55
|
-
};
|
|
56
|
-
}
|
|
57
|
-
},
|
|
58
|
-
);
|
|
59
|
-
|
|
60
|
-
server.run();
|
|
61
|
-
|
|
62
|
-
export type AppType = typeof server;
|
package/template/tsconfig.json
DELETED