resonate-supabase-deployments-typescript

resonate-supabase-deployments-typescript is a skill for Claude Code, Codex from resonatehq/resonate-skills. It costs 43 tokens per session (3,587 once invoked), scanned A, original, Apache-2.0.

Instructions for building long-running Resonate workflows on Supabase Edge Functions with TypeScript or Deno. They cover starting and checking workflows through HTTP endpoints and optionally recording progress in Supabase.

In plain words
What is it for?
Use it to create a workflow module, configure the required Supabase and Resonate settings, expose start and status endpoints, and optionally track progress in the database.
Why use it?
Reliable, step-by-step work can outlast a single request, so it needs a workflow system and a way to check its status later. These instructions connect Supabase functions to a Resonate server for that purpose.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create a workflow module, configure the required Supabase and Resonate settings, expose start and status endpoints, and optionally track progress in the database.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/resonatehq/resonate-skills/resonate-supabase-deployments-typescript
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 resonatehq/resonate-skills --skill resonate-supabase-deployments-typescript
Clone the repo
git clone --depth 1 https://github.com/resonatehq/resonate-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 resonate-supabase-deployments-typescript

README.md
[![agentmods](https://agentmods.dev/badge/skills/resonatehq/resonate-skills/resonate-supabase-deployments-typescript/github.svg)](https://agentmods.dev/skills/resonatehq/resonate-skills/resonate-supabase-deployments-typescript)
Your own site
<a href="https://agentmods.dev/skills/resonatehq/resonate-skills/resonate-supabase-deployments-typescript"><img src="https://agentmods.dev/badge/skills/resonatehq/resonate-skills/resonate-supabase-deployments-typescript/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 resonate-supabase-deployments-typescript

Your own site · 80×15
<a href="https://agentmods.dev/skills/resonatehq/resonate-skills/resonate-supabase-deployments-typescript"><img src="https://agentmods.dev/badge/skills/resonatehq/resonate-skills/resonate-supabase-deployments-typescript.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,587 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found 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.00043 $0.03587
Opus 5 $0.00022 $0.01793
Sonnet 5 $0.00009 $0.00717
Haiku 4.5 $0.00004 $0.00359

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

Security

Grade A, and why

resonate-supabase-deployments-typescript scanned grade A with 1 finding 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 12d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

Intent: start durable execution from your app or curl.
resonate-supabase-deployments-typescript/SKILL.md · 484 lines

How it starts

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

Resonate Supabase TypeScript

Overview

Build durable workflows on Supabase Edge Functions using Resonate, with start/probe endpoints and optional progress tracking in Supabase.

Related: resonate-server-postgres — the server these workers talk to. Use it for installing resonate-pg, the pg_cron timer dependency, invoke's 24-hour default timeout, grants, retention, and the known gaps.

Summary

  • Build durable workflows on Supabase Edge Functions using the Resonate Supabase shim.
  • Use when you need long-running, reliable, stepwise workflows triggered by HTTP or external events.
  • Outputs a flows/index.ts workflow module plus start/probe endpoint usage patterns.

Preconditions / Assumptions

  • Supabase project with supabase/functions directory.
  • Supabase Edge Functions runtime (Deno) is available.
  • Resonate Server URL is known and reachable.
  • Assumes a recent stable Resonate Server and @resonatehq/supabase shim.

Inputs

  • RESONATE_URL: Resonate Server URL (Supabase secret or env var).
  • SUPABASE_URL: Supabase project URL (for DB access).
  • SUPABASE_SERVICE_ROLE_KEY: Service key for server-side DB operations.
  • Workflow name (function name to register).
  • Execution ID scheme (uuid or domain id).

Outputs

  • supabase/functions/flows/index.ts with registered workflows and handler.
  • HTTP endpoints for start and probe invocation.
  • Optional DB table for progress tracking.

CRITICAL: Architecture & Communication Direction

The edge function initiates communication with the Resonate server, NOT vice versa.

When triggered by an HTTP request, the edge function wakes up and polls the Resonate server for state. The shim handles all HTTP communication internally - you just write normal Resonate code.

HTTP Request → Edge Function wakes up → Polls Resonate Server → Executes workflow step → Returns

The Resonate server does NOT call your edge function. Your edge function calls the server.

Read the full file on GitHub · 484 lines

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. 12d ago First seen · 484 lines · 43 tokens per session scan A 2e1df03abd92

Subscribe to this mod's changes

resonate-supabase-deployments-typescript is a skill published in the GitHub repository resonatehq/resonate-skills (6 stars, last pushed 20d ago), licensed Apache-2.0. It adds 43 tokens to every session and 3,587 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

aws-serverless

Provides AWS serverless architecture patterns for Lambda, API Gateway, DynamoDB, SQS, and SAM/CDK. Use when working with AWS serverless files (serverless.yml, CDK stacks) or when the user mentions Lambda, API Gateway, serverless, or AWS SAM.

tranhieutt/software_development_department · 61 tokens

create-workflow-aspire

This skill creates a Dapr workflow application with .NET Aspire. Use this skill when the user asks to "create a workflow with Aspire", "write an Aspire workflow application" or "build a workflow app with .NET Aspire".

diagrid-labs/dapr-skills · 53 tokens

stripe-projects

Provision SaaS services + sync creds via Stripe Projects.

NousResearch/hermes-agent · 15 tokens

azure-eventhub-dotnet

Azure Event Hubs SDK for .NET. Use for high-throughput event streaming: sending events (EventHubProducerClient, EventHubBufferedProducerClient), receiving events (EventProcessorClient with checkpointing), partition management, and real-time data ingestion. Triggers: "Event Hubs", "event streaming"…

microsoft/skills · 94 tokens

wikipedia

Search and read Wikipedia via x wkp — MediaWiki API, no API key, zero install; query, extract, suggest, and DDG route in one module. Load for wiki, wikipedia, encyclopedia lookup, article summary.

x-cmd/x-cmd · 49 tokens

django-storages-s3

Use when configuring Django to store static and media files on AWS S3 with django-storages. Invoke when working with the STORAGES setting, S3 buckets, presigned URLs, CloudFront, or boto3-backed file storage in settings.py. Configures the Django 4.2+ STORAGES dict, public/private custom backends, presigned GET/POST…

Jeffallan/claude-skills · 138 tokens