vercel-workflow
Workflow Best Practices
Enforces proper usage of Vercel Workflow DevKit patterns for durable, resumable workflows.
Core Concepts
Directives
Two fundamental directives define execution context:
"use workflow" - Marks orchestration functions that coordinate steps:
export async function processOrder(orderId: string) {
'use workflow';
const order = await fetchOrder(orderId); // Step
await sleep('1h'); // Suspend
return await chargePayment(order); // Step
}
More from victor-teles/skills
skill-creator
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
2slop-remover
Remove AI-generated code slop and clean up code style
2check-build-errors
Run compile and type-check commands and report failures
2flutter-integration-tests
Best practices and patterns for writing Flutter integration tests using the integration_test package. Use when creating, reviewing, or improving integration tests in Flutter projects. Triggers on tasks involving integration_test/ directory, IntegrationTestWidgetsFlutterBinding, flutter drive commands, end-to-end testing, screenshot testing, golden file testing, or performance profiling in Flutter apps.
1