resonate-lovable-usage-prompt-typescript

resonate-lovable-usage-prompt-typescript is a skill for Claude Code, Codex from resonatehq/resonate-skills. It costs 61 tokens per session (6,020 once invoked), scanned A, original, Apache-2.0.

Guidance for building Resonate workflow applications in Lovable.dev, an AI-assisted environment for creating and deploying React and Node.js applications with TypeScript. It focuses on using Resonate to store workflow state and query it directly.

In plain words
What is it for?
Use it when creating, changing, or deploying Resonate workflows in Lovable.dev, including pending approvals, workflow status, and decisions about whether separate business data belongs in a database.
Why use it?
It avoids duplicating workflow status in a separate database, which can become stale or disagree with the workflow system. It also explains when a database is still appropriate for lasting business data or reporting.

Skill for Claude CodeCodex

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

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is import { resonate, supabase } from "../lib";.

Good fit Use it when creating, changing, or deploying Resonate workflows in Lovable.dev, including pending approvals, workflow status, and decisions about whether separate business data belongs in a database.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/resonatehq/resonate-skills
agentmods
npx agentmods add skills/resonatehq/resonate-skills/resonate-lovable-usage-prompt-typescript

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-lovable-usage-prompt-typescript

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/resonatehq/resonate-skills/resonate-lovable-usage-prompt-typescript"><img src="https://agentmods.dev/badge/skills/resonatehq/resonate-skills/resonate-lovable-usage-prompt-typescript.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,020 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.00061 $0.06020
Opus 5 $0.00030 $0.03010
Sonnet 5 $0.00012 $0.01204
Haiku 4.5 $0.00006 $0.00602

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

Security

Grade A, and why

resonate-lovable-usage-prompt-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-lovable-usage-prompt-typescript/SKILL.md · 873 lines

How it starts

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

Resonate Lovable Usage Prompt — TypeScript

SDK version: This skill reflects @resonatehq/sdk v0.11.4 (current on npm).

Overview

This skill provides specialized guidance for building Resonate durable execution applications within Lovable.dev, an AI-assisted full-stack development environment. Lovable enables rapid prototyping and deployment of React + Node.js applications with built-in hosting.

Core Philosophy: Resonate IS the Database

Critical insight: For workflow state, Resonate is your single source of truth. You don't need a separate database to track workflow status, pending approvals, or execution state.

Traditional approach (unnecessary complexity):
  Create workflow → Store in DB → Poll DB for status → Sync with Resonate

Resonate approach (simple):
  Create workflow → Query Resonate directly → Done

Why this matters:

  • Query promises by ID prefix to list pending items
  • Resolve promises to complete workflows
  • No DB sync logic, no stale state, no race conditions

When you DO need a database:

  • Business data that outlives workflows (user profiles, orders, products)
  • Analytics and reporting
  • Data that needs relational queries

When you DON'T need a database:

  • Workflow status (use Resonate promises)
  • Pending approvals (query by prefix)
  • Execution state (Resonate tracks this)

Lovable Environment Constraints

What Lovable Provides

  • React frontend (Vite + TypeScript)
  • Node.js backend (Express + TypeScript)
  • PostgreSQL database (Supabase)
  • Built-in deployment pipeline
  • AI-assisted code generation
  • Git integration

Lovable Limitations for Resonate

Lovable does NOT provide:

  • Long-running backend processes
  • WebSocket servers
  • Background workers
  • Cron jobs or schedulers

Implication: You cannot run a persistent Resonate worker inside Lovable's backend.

Architecture A: External Resonate Server (Recommended)

Lovable backend acts as HTTP client to external Resonate:

Read the full file on GitHub · 873 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 · 873 lines · 61 tokens per session scan A 85cb86859f22

Subscribe to this mod's changes

resonate-lovable-usage-prompt-typescript is a skill published in the GitHub repository resonatehq/resonate-skills (6 stars, last pushed 21d ago), licensed Apache-2.0. It adds 61 tokens to every session and 6,020 once invoked, about $0.0003 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

fast-typescript-check

Keep www-sacred's TypeScript fast to type-check and fast to run. Use when touching the ASCII/canvas animation components (the only real per-frame code here), tightening type-check wall-clock, or auditing a change for runtime or compiler regressions. Scoped to this repo — a React 19 / Next.js 16 component library plus…

internet-development/www-sacred · 84 tokens

onejs-setup-and-overview

Use this skill whenever the user wants to build or set up user interface in a Unity project using OneJS, React, TypeScript, or JSX, e.g. 'add a main menu to my game', 'build a settings screen', 'make a HUD', 'set up OneJS', 'my OneJS panel is blank', 'the UI is not hot reloading'. Covers confirming OneJS is installed…

Singtaa/OneJS · 199 tokens

typescript-rules

React/TypeScript frontend development rules including type safety, component design, state management, and error handling. Use when implementing React components, TypeScript code, or frontend features.

shinpr/claude-code-workflows · 39 tokens

coding-standards

A set of general coding standards and practical patterns for TypeScript, JavaScript, React, and Node.js. It covers readable naming, simple designs, avoiding repetition, and delaying unnecessary features.

loulanyue/awesome-claude-notes · 41 tokens

electron-development

Electron development guidelines for building cross-platform desktop applications with JavaScript/TypeScript.

Mindrally/skills · 18 tokens

typescript-best-practices

TypeScript best practices. Use when reading or editing any .ts or .tsx file.

cursor/plugins · 24 tokens