resonate-gcp-deployments-typescript

resonate-gcp-deployments-typescript is a skill for Claude Code, Codex from resonatehq/resonate-skills. It costs 39 tokens per session (1,952 once invoked), scanned A, original, Apache-2.0.

Deployment guidance for running a TypeScript Resonate worker as a Google Cloud Functions Gen 2 function. Google Cloud Functions is a serverless service that runs code in response to requests without managing a permanent server.

In plain words
What is it for?
Use it to deploy an HTTP-triggered TypeScript workflow worker to Google Cloud, configure its project and region, and connect it to a reachable Resonate Server.
Why use it?
It explains how to connect a serverless worker to a Resonate Server so durable workflows can continue across separate function invocations. It also identifies the cloud settings and tools required for deployment.

Skill for Claude CodeCodex

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

Good fit Use it to deploy an HTTP-triggered TypeScript workflow worker to Google Cloud, configure its project and region, and connect it to a reachable Resonate Server.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/resonatehq/resonate-skills/resonate-gcp-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-gcp-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-gcp-deployments-typescript

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/resonatehq/resonate-skills/resonate-gcp-deployments-typescript"><img src="https://agentmods.dev/badge/skills/resonatehq/resonate-skills/resonate-gcp-deployments-typescript.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,952 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.
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.00039 $0.01952
Opus 5 $0.00019 $0.00976
Sonnet 5 $0.00008 $0.00390
Haiku 4.5 $0.00004 $0.00195

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

Security

Grade A, and why

resonate-gcp-deployments-typescript 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 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.

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.

resonate-gcp-deployments-typescript/SKILL.md · 167 lines

How it starts

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

Resonate Google Cloud TypeScript

Overview

Deploy a TypeScript Resonate worker as an HTTP-triggered Google Cloud Function that talks to a Resonate Server.

When to use this skill

  • You have a Resonate Server running and reachable over HTTPS (local or Cloud Run).
  • You want a serverless worker that can resume durable workflows across invocations using the GCP Functions shim for the TypeScript SDK. [Serverless workers; GCP deploy tutorial]

Assumptions & Inputs

You (the agent) should obtain or be given:

  • GCP_PROJECT_ID – Google Cloud project ID
  • GCP_REGION – GCP region (e.g. us-central1)
  • FUNCTION_NAME – Name for the Cloud Function (e.g. countdown-workflow)
  • RESONATE_SERVER_URL – Public URL of the Resonate Server HTTP API (e.g. https://resonate-server-...a.run.app) [Deploy server]
  • WORKER_ENTRY – TS entry file exposing a handler function (typically index.ts)

Prerequisites in the project environment:

  • Node.js ≥ 20
  • gcloud CLI authenticated for GCP_PROJECT_ID
  • npm or compatible package manager

High-level flow

  1. Add the GCP worker shim (@resonatehq/gcp) to the worker project. [Serverless workers]
  2. Implement the worker as a Resonate registration + HTTP handler export.
  3. Set the RESONATE_URL env var for the function so it can reach the Resonate Server. [Deploy Cloud Function]
  4. Deploy the function with gcloud functions deploy (Gen 2, HTTP trigger).
  5. Use the function URL as a target when invoking workflows via the Resonate Server (if needed). [Trigger countdown]
  6. (Optional) Stream workflow output to browsers — see resonate-state-bus-pattern-typescript for the pattern (Firestore onSnapshot is the lightest GCP option).

Read the full file on GitHub · 167 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 · 167 lines · 39 tokens per session scan A 3e87b40b8823

Subscribe to this mod's changes

resonate-gcp-deployments-typescript is a skill published in the GitHub repository resonatehq/resonate-skills (6 stars, last pushed 21d ago), licensed Apache-2.0. It adds 39 tokens to every session and 1,952 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. 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-sst-development

SST v4 (Ion) expert for managing AWS resources as code with the Pulumi-backed framework.

sickn33/agentic-awesome-skills · 26 tokens

aws-lambda-typescript-integration

Provides AWS Lambda integration patterns for TypeScript with cold start optimization. Use when creating or deploying TypeScript Lambda functions, choosing between NestJS framework and raw TypeScript approaches, optimizing cold starts, configuring API Gateway or ALB integration, or implementing serverless TypeScript…

giuseppe-trisciuoglio/developer-kit · 95 tokens

aws-cdk

Provides AWS CDK TypeScript patterns for defining, validating, and deploying AWS infrastructure as code. Use when creating CDK apps, stacks, and reusable constructs, modeling serverless or VPC-based architectures, applying IAM and encryption defaults, or testing and reviewing cdk synth, cdk diff, and cdk deploy…

giuseppe-trisciuoglio/developer-kit · 110 tokens

azure-storage-file-share-ts

SDK for Azure File Share operations — SMB file shares, directories, and file operations.

benjaminasterA/antigravity-awesome-skills · 0 tokens

pulumi-best-practices

Load when the user is writing, reviewing, or debugging Pulumi TypeScript/Python programs; asks about Output or apply() usage; wants to create ComponentResource classes; needs to refactor resources without destroying them (aliases); is setting up secrets or config; or is configuring a pulumi preview/up CI workflow.…

pulumi/agent-skills · 92 tokens

infra-iac-sst

SST (Ion) infrastructure-as-code — TypeScript-first serverless on AWS with Pulumi, resource linking, and live Lambda dev.

agents-inc/skills · 33 tokens