.claude/skills/ts-encore/SKILL.md
Build cloud backend applications with Encore — type-safe backend framework with built-in infrastructure. Use when someone asks to "build a backend", "Encore", "type-safe API framework", "backend with built-in infra", "auto-provision cloud resources", or "backend framework with databases built-in". Covers API definition, databases, pub/sub, cron, and auto-provisioned infrastructure.
npx skillsauth add eliferjunior/Claude encoreInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Encore is a backend framework where infrastructure is part of the code — define an API endpoint and Encore provisions the cloud resources automatically. Databases, pub/sub, cron jobs, and caching are declared in your TypeScript/Go code, not in Terraform files. Encore understands your application architecture and generates infrastructure, API documentation, and architecture diagrams from the code. Local development mirrors production exactly.
# Install Encore CLI (macOS/Linux)
brew install encoredev/tap/encore
# Create a new app
encore app create my-app --lang=ts
cd my-app
encore run # Local dev server with hot reload
// backend/user/user.ts — API endpoints are just exported functions
import { api } from "encore.dev/api";
import { SQLDatabase } from "encore.dev/storage/sqldb";
// Database declared in code — Encore provisions it automatically
const db = new SQLDatabase("users", {
migrations: "./migrations",
});
interface User {
id: number;
email: string;
name: string;
}
// POST /user.create — Type-safe request/response
export const create = api(
{ method: "POST", path: "/user", expose: true },
async (params: { email: string; name: string }): Promise<User> => {
const row = await db.queryRow`
INSERT INTO users (email, name)
VALUES (${params.email}, ${params.name})
RETURNING id, email, name
`;
return row!;
}
);
// GET /user/:id — Path parameters are typed
export const get = api(
{ method: "GET", path: "/user/:id", expose: true },
async (params: { id: number }): Promise<User> => {
const row = await db.queryRow`
SELECT id, email, name FROM users WHERE id = ${params.id}
`;
if (!row) throw new Error("User not found");
return row;
}
);
// GET /user — List with query params
export const list = api(
{ method: "GET", path: "/user", expose: true },
async (params: { limit?: number; offset?: number }): Promise<{ users: User[] }> => {
const rows = await db.query`
SELECT id, email, name FROM users
ORDER BY id DESC
LIMIT ${params.limit ?? 20} OFFSET ${params.offset ?? 0}
`;
return { users: rows };
}
);
// backend/notifications/notifications.ts — Event-driven with pub/sub
import { Topic, Subscription } from "encore.dev/pubsub";
// Declare a topic — Encore provisions the message broker
export const userCreated = new Topic<{ userId: number; email: string }>("user-created");
// Publish events
export async function notifyUserCreated(userId: number, email: string) {
await userCreated.publish({ userId, email });
}
// Subscribe to events
const _ = new Subscription(userCreated, "send-welcome-email", {
handler: async (event) => {
await sendEmail(event.email, {
subject: "Welcome!",
body: "Thanks for signing up.",
});
},
});
// backend/reports/cron.ts — Scheduled tasks
import { CronJob } from "encore.dev/cron";
// Runs daily at 9 AM UTC — Encore handles scheduling
const dailyReport = new CronJob("daily-report", {
title: "Generate Daily Report",
schedule: "0 9 * * *",
endpoint: generateReport,
});
export const generateReport = api(
{ method: "POST", path: "/reports/daily" },
async (): Promise<{ generated: boolean }> => {
const stats = await db.query`SELECT ...`;
await sendSlackReport(stats);
return { generated: true };
}
);
# Deploy to Encore Cloud (auto-provisions all infrastructure)
git push encore main
# Or self-host with Docker
encore build docker my-app:latest
docker run my-app:latest
User prompt: "Build a backend for a project management tool with users, projects, and real-time updates."
The agent will define Encore services with databases, pub/sub for real-time events, and cron for notifications — all infrastructure auto-provisioned.
User prompt: "Split our monolith into microservices with type-safe internal communication."
The agent will create Encore services that call each other with typed function calls (no HTTP clients to write), with automatic tracing and documentation.
api() for endpoints — type-safe request/response with automatic validationSQLDatabase for databases — Encore provisions Postgres automaticallyTopic / Subscription for events — pub/sub without message broker setupCronJob for schedules — declare in code, Encore handles executionencore run for local dev — mirrors production environment exactlyexpose: true for public APIs — internal services are private by defaultdevelopment
Expert guidance for Fireworks AI, the platform for running open-source LLMs (Llama, Mixtral, Qwen, etc.) with enterprise-grade speed and reliability. Helps developers integrate Fireworks' inference API, fine-tune models, and deploy custom model endpoints with function calling and structured output support.
development
Convert any website into clean, structured data with Firecrawl — API-first web scraping service. Use when someone asks to "turn a website into markdown", "scrape website for LLM", "Firecrawl", "extract website content as clean text", "crawl and convert to structured data", or "scrape website for RAG". Covers single-page scraping, full-site crawling, structured extraction, and LLM-ready output.
tools
Expert guidance for Firebase, Google's platform for building and scaling web and mobile applications. Helps developers set up authentication, Firestore/Realtime Database, Cloud Functions, hosting, storage, and analytics using Firebase's SDK and CLI.
development
When the user needs to build file upload functionality for a web application. Use when the user mentions "file upload," "image upload," "upload endpoint," "multipart upload," "presigned URL," "S3 upload," "file validation," "upload to cloud storage," or "accept user files." Handles upload endpoints, file validation (type, size, magic bytes), cloud storage integration, and upload status tracking. For image/video processing after upload, see media-transcoder.