EdgeSpark App Development
Use this skill for EdgeSpark-specific implementation and workflow decisions.
This skill is not EdgeSpark documentation. For exact contracts, read source, generated types, CLI help, and docs/Mintlify MCP. Use this skill for workflow, guardrails, and bug-prevention.
The reliable public surface in this repo is:
- the
edgespark CLI
- scaffolded project structure from
edgespark init
- generated
src/__generated__/edgespark.d.ts
- generated
src/__generated__/server-types.d.ts
- the
@edgespark/web browser SDK
Use @edgespark/web and authUI.mount() as the default browser auth path for this repo unless custom forms are explicitly requested.
Read Order
Read only what is needed for the task:
edgespark.toml
- repo or project agent instruction file (
AGENTS.md, CLAUDE.md, or GEMINI.md)
src/__generated__/edgespark.d.ts
src/__generated__/server-types.d.ts
src/defs/index.ts, src/defs/db_schema.ts, src/defs/db_relations.ts, src/defs/runtime.ts, src/defs/storage_schema.ts
node_modules/@edgespark/web/dist/index.d.ts when installed for exact browser SDK types
node_modules/@edgespark/web/README.md when installed for managed auth appearance variable meanings and defaults
Then load the specific reference you need:
- Day-to-day development workflows by surface: dev-workflow.md
- Scaffold layout and generated-file rules: project-structure.md
- Error-prone server-side usage patterns: server-patterns.md
- Small web usage patterns for
@edgespark/web: web-patterns.md
- Auth config, OAuth providers, callback URLs, managed auth theming, and Google One Tap: auth-patterns.md
Hard Rules
- Run
edgespark <command> --help before assuming flags or exact behavior.
- Run
edgespark commands on behalf of the user. Only hand off steps that explicitly require a human browser action.
- Never run multiple
edgespark commands in parallel.
- Treat scaffolded
src/__generated__/edgespark.d.ts and src/__generated__/server-types.d.ts as placeholders until edgespark pull types populates them.
- Do not edit files under
src/__generated__/.
- Use
@edgespark/web for new browser code.
- Use
es.api.fetch() for app API calls, not bare fetch() to same-origin app routes.
- Use
authUI.mount() for managed auth UI unless custom forms are explicitly requested.
- For managed auth theming, use
appearance.theme and appearance.variables from @edgespark/web; do not tell users to edit SDK CSS for routine light/dark or brand theming.
- For custom browser auth flows, use
client.auth from @edgespark/web, not manual /api/_es/auth/* calls.
- Import
auth from edgespark/http, not edgespark.
- Auth is a managed service at
/api/_es/auth/. OAuth callback URLs use /api/_es/auth/callback/<provider>, not /api/auth/.
- Treat
/api/_es/auth/*, storage provider details, and deployment internals as platform implementation details unless the user is explicitly debugging them.
- Do not import runtime SDK values from
edgespark inside src/defs/**.
- Use
db.batch() instead of db.transaction().
- Use migration workflow for schema changes. Do not use DDL through
edgespark db sql.
- Store S3 URIs in the database and return presigned URLs to clients.
- For client-originated uploads, generate presigned PUT URLs instead of streaming files through the Worker.
- Update
src/defs/runtime.ts before using vars.get() or secret.get().
- Use
edgespark ... --help for exact command syntax instead of duplicating help text in this skill.
- If exact behavior is unclear, prefer source code, generated types, or docs MCP over guessing.
Default Workflow
For the operational workflow by area, read dev-workflow.md.
Existing project
- Read generated type files first.
- Read the relevant defs files before changing schema, storage, or runtime keys.
- Read the web SDK types before touching auth or browser API code.
Fresh scaffold
- Inspect
edgespark.toml to confirm server-only vs full-stack layout.
- If generated files are placeholders, run
edgespark pull types before making SDK assumptions.
- Follow the scaffolded root,
server/, and web/ agent instruction files for package boundaries.
When Stuck
- Read the generated type files again before assuming an API shape.
- Run the relevant
edgespark ... --help command before guessing flags.
- Use docs/Mintlify MCP for product documentation details.
Quick Start
Server:
import { db, storage, vars, secret, ctx } from "edgespark";
import { auth } from "edgespark/http";
import { posts, buckets } from "@defs";
import { Hono } from "hono";
import { eq } from "drizzle-orm";
const app = new Hono()
.get("/api/posts", async (c) => {
return c.json(await db.select().from(posts));
})
.post("/api/posts", async (c) => {
const data = await c.req.json();
const [post] = await db.insert(posts)
.values({ ...data, user_id: auth.user!.id })
.returning();
return c.json(post, 201);
});
export default app;
Web:
import { createEdgeSpark } from "@edgespark/web";
import "@edgespark/web/styles.css";
const es = createEdgeSpark();
es.authUI.mount(document.getElementById("auth")!, {
redirectTo: "/dashboard",
});
const res = await es.api.fetch("/api/posts");
const posts = await res.json();
1---2name: building-edgespark-apps3description: Build and modify EdgeSpark apps. Use when a project has edgespark.toml, the user mentions EdgeSpark, or work involves the edgespark CLI, server SDK types, storage/auth/database workflows, deployment, or @edgespark/web.4---5
6# EdgeSpark App Development
7
8Use this skill for EdgeSpark-specific implementation and workflow decisions.
9
10This skill is not EdgeSpark documentation. For exact contracts, read source, generated types, CLI help, and docs/Mintlify MCP. Use this skill for workflow, guardrails, and bug-prevention.
11
12The reliable public surface in this repo is:
13
14- the `edgespark` CLI
15- scaffolded project structure from `edgespark init`
16- generated `src/__generated__/edgespark.d.ts`
17- generated `src/__generated__/server-types.d.ts`
18- the `@edgespark/web` browser SDK
19
20Use `@edgespark/web` and `authUI.mount()` as the default browser auth path for this repo unless custom forms are explicitly requested.
21
22## Read Order
23
24Read only what is needed for the task:
25
261. `edgespark.toml`
272. repo or project agent instruction file (`AGENTS.md`, `CLAUDE.md`, or `GEMINI.md`)
283. `src/__generated__/edgespark.d.ts`
294. `src/__generated__/server-types.d.ts`
305. `src/defs/index.ts`, `src/defs/db_schema.ts`, `src/defs/db_relations.ts`, `src/defs/runtime.ts`, `src/defs/storage_schema.ts`
316. `node_modules/@edgespark/web/dist/index.d.ts` when installed for exact browser SDK types
327. `node_modules/@edgespark/web/README.md` when installed for managed auth appearance variable meanings and defaults
33
34Then load the specific reference you need:
35
36- Day-to-day development workflows by surface: [dev-workflow.md](references/dev-workflow.md)
37- Scaffold layout and generated-file rules: [project-structure.md](references/project-structure.md)
38- Error-prone server-side usage patterns: [server-patterns.md](references/server-patterns.md)
39- Small web usage patterns for `@edgespark/web`: [web-patterns.md](references/web-patterns.md)
40- Auth config, OAuth providers, callback URLs, managed auth theming, and Google One Tap: [auth-patterns.md](references/auth-patterns.md)
41
42## Hard Rules
43
44- Run `edgespark <command> --help` before assuming flags or exact behavior.
45- Run `edgespark` commands on behalf of the user. Only hand off steps that explicitly require a human browser action.
46- Never run multiple `edgespark` commands in parallel.
47- Treat scaffolded `src/__generated__/edgespark.d.ts` and `src/__generated__/server-types.d.ts` as placeholders until `edgespark pull types` populates them.
48- Do not edit files under `src/__generated__/`.
49- Use `@edgespark/web` for new browser code.
50- Use `es.api.fetch()` for app API calls, not bare `fetch()` to same-origin app routes.
51- Use `authUI.mount()` for managed auth UI unless custom forms are explicitly requested.
52- For managed auth theming, use `appearance.theme` and `appearance.variables` from `@edgespark/web`; do not tell users to edit SDK CSS for routine light/dark or brand theming.
53- For custom browser auth flows, use `client.auth` from `@edgespark/web`, not manual `/api/_es/auth/*` calls.
54- Import `auth` from `edgespark/http`, not `edgespark`.
55- Auth is a managed service at `/api/_es/auth/`. OAuth callback URLs use `/api/_es/auth/callback/<provider>`, not `/api/auth/`.
56- Treat `/api/_es/auth/*`, storage provider details, and deployment internals as platform implementation details unless the user is explicitly debugging them.
57- Do not import runtime SDK values from `edgespark` inside `src/defs/**`.
58- Use `db.batch()` instead of `db.transaction()`.
59- Use migration workflow for schema changes. Do not use DDL through `edgespark db sql`.
60- Store S3 URIs in the database and return presigned URLs to clients.
61- For client-originated uploads, generate presigned PUT URLs instead of streaming files through the Worker.
62- Update `src/defs/runtime.ts` before using `vars.get()` or `secret.get()`.
63- Use `edgespark ... --help` for exact command syntax instead of duplicating help text in this skill.
64- If exact behavior is unclear, prefer source code, generated types, or docs MCP over guessing.
65
66## Default Workflow
67
68For the operational workflow by area, read [dev-workflow.md](references/dev-workflow.md).
69
70### Existing project
71
721. Read generated type files first.
732. Read the relevant defs files before changing schema, storage, or runtime keys.
743. Read the web SDK types before touching auth or browser API code.
75
76### Fresh scaffold
77
781. Inspect `edgespark.toml` to confirm server-only vs full-stack layout.
792. If generated files are placeholders, run `edgespark pull types` before making SDK assumptions.
803. Follow the scaffolded root, `server/`, and `web/` agent instruction files for package boundaries.
81
82## When Stuck
83
841. Read the generated type files again before assuming an API shape.
852. Run the relevant `edgespark ... --help` command before guessing flags.
863. Use docs/Mintlify MCP for product documentation details.
87
88## Quick Start
89
90Server:
91
92```ts
93import { db, storage, vars, secret, ctx } from "edgespark";
94import { auth } from "edgespark/http";
95import { posts, buckets } from "@defs";
96import { Hono } from "hono";
97import { eq } from "drizzle-orm";
98
99const app = new Hono()
100 .get("/api/posts", async (c) => {
101 return c.json(await db.select().from(posts));
102 })
103 .post("/api/posts", async (c) => {
104 const data = await c.req.json();
105 const [post] = await db.insert(posts)
106 .values({ ...data, user_id: auth.user!.id })
107 .returning();
108 return c.json(post, 201);
109 });
110
111export default app;
112```
113
114Web:
115
116```ts
117import { createEdgeSpark } from "@edgespark/web";
118import "@edgespark/web/styles.css";
119
120const es = createEdgeSpark();
121
122es.authUI.mount(document.getElementById("auth")!, {
123 redirectTo: "/dashboard",
124});
125
126const res = await es.api.fetch("/api/posts");
127const posts = await res.json();
128```