building-edgespark-apps

building-edgespark-apps is a skill for Claude Code, Codex from edgesparkhq/agent-skills. It costs 55 tokens per session (1,410 once invoked), scanned A, a copy of building-edgespark-apps, MIT.

Development guidance for EdgeSpark apps, including projects that use its command-line tool, server types, browser library, authentication, storage, databases, or deployment settings.

In plain words
What is it for?
Use it to build or modify EdgeSpark apps, configure authentication, work with storage and databases, use the browser SDK, and deploy projects.
Why use it?
It points developers to the project’s generated types and source of truth so EdgeSpark code matches the actual app setup.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md; mentions AGENTS.md; mentions Gemini CLI.

Good fit Use it to build or modify EdgeSpark apps, configure authentication, work with storage and databases, use the browser SDK, and deploy projects.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/edgesparkhq/agent-skills/building-edgespark-apps
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add edgesparkhq/agent-skills --skill building-edgespark-apps
Clone the repo
git clone --depth 1 https://github.com/edgesparkhq/agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for building-edgespark-apps

README.md
[![agentmods](https://agentmods.dev/badge/skills/edgesparkhq/agent-skills/building-edgespark-apps/github.svg)](https://agentmods.dev/skills/edgesparkhq/agent-skills/building-edgespark-apps)
Your own site
<a href="https://agentmods.dev/skills/edgesparkhq/agent-skills/building-edgespark-apps"><img src="https://agentmods.dev/badge/skills/edgesparkhq/agent-skills/building-edgespark-apps/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for building-edgespark-apps

Your own site · 80×15
<a href="https://agentmods.dev/skills/edgesparkhq/agent-skills/building-edgespark-apps"><img src="https://agentmods.dev/badge/skills/edgesparkhq/agent-skills/building-edgespark-apps.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,410 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 17 May 2026
  • Snyk pass 17 May 2026
How audits are shown
Origin 97% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00055 $0.01410
Opus 5 $0.00028 $0.00705
Sonnet 5 $0.00011 $0.00282
Haiku 4.5 $0.00006 $0.00141

Measured 10d ago against content hash d6305203f905, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

building-edgespark-apps scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

97% identical to building-edgespark-apps — 3 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/building-edgespark-apps/SKILL.md · 132 lines

How it starts

The opening of the file, as written. The whole thing — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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:

  1. edgespark.toml
  2. repo or project agent instruction file (AGENTS.md, CLAUDE.md, or GEMINI.md)
  3. src/__generated__/edgespark.d.ts
  4. src/__generated__/server-types.d.ts
  5. src/defs/index.ts, src/defs/db_schema.ts, src/defs/db_relations.ts, src/defs/runtime.ts, src/defs/storage_schema.ts
  6. node_modules/@edgespark/web/dist/index.d.ts when installed for exact browser SDK types
  7. node_modules/@edgespark/web/README.md when installed for managed auth appearance variable meanings and defaults

Then load the specific reference you need:

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.

Read the full file on GitHub · 132 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 132 lines · 55 tokens per session scan A d6305203f905

Subscribe to this mod's changes

building-edgespark-apps is a skill published in the GitHub repository edgesparkhq/agent-skills (1 stars, last pushed 3mo ago), licensed MIT. It adds 55 tokens to every session and 1,410 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 97% identical to building-edgespark-apps, differing in 3 lines, and is treated as a copy.