Backend workflow-management
Create, debug, or modify Vercel WDK workflows for data updates and social media posting in the web application. Use when adding new automated jobs, fixing workflow errors, or updating scheduling logic.
install
source · Clone the upstream repo
git clone https://github.com/sgcarstrends/sgcarstrends
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sgcarstrends/sgcarstrends "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/workflow-management" ~/.claude/skills/sgcarstrends-backend-workflow-management && rm -rf "$T"
manifest:
.claude/skills/workflow-management/SKILL.mdsource content
Workflow Management Skill
This skill helps you work with Vercel WDK (Workflow Development Kit) workflows in
apps/web/src/workflows/.
When to Use This Skill
- Adding new scheduled workflows for data fetching
- Debugging workflow execution errors
- Modifying existing workflow schedules or logic
- Integrating new data sources into the update pipeline
- Adding new social media posting workflows
Workflow Architecture
The project uses Vercel WDK workflows with the following structure:
apps/web/src/workflows/ ├── cars.ts # Car registration data workflow ├── coe.ts # COE bidding data workflow ├── deregistrations.ts # Deregistration data workflow ├── regenerate-post.ts # Blog post regeneration workflow └── shared.ts # Shared workflow steps (social media, cache)
Key Patterns
1. Workflow Definition
Workflows are defined using Vercel WDK directives:
import { fetch } from "workflow"; export async function carsWorkflow(payload: CarsWorkflowPayload) { "use workflow"; // Enable WDK's durable fetch for AI SDK globalThis.fetch = fetch; // Step 1: Process data const result = await processCarsData(); // Step 2: Revalidate cache await revalidateCarsCache(month, year); // Step 3: Generate blog post const post = await generateCarsPost(data, month); return { postId: post.postId }; } async function processCarsData(): Promise<UpdaterResult> { "use step"; // Processing logic - each step is durable and can retry return await updateCars(); }
2. Scheduling Workflows
Workflows are triggered via Vercel Cron schedules configured in
apps/web/vercel.json:
{ "crons": [ { "path": "/api/workflows/cars", "schedule": "0 10 * * *" }, { "path": "/api/workflows/coe", "schedule": "0 10 * * *" }, { "path": "/api/workflows/deregistrations", "schedule": "0 10 * * *" } ] }
3. API Route Integration
API routes trigger workflows using WDK's
start() function:
import { start } from "workflow/api"; import { carsWorkflow } from "@web/workflows/cars"; export async function POST(request: Request) { const payload = await request.json(); const run = await start(carsWorkflow, [payload]); return Response.json({ message: "Workflow started", runId: run.runId }); }
4. Shared Steps
Common operations are extracted to
shared.ts:
export async function publishToSocialMedia(title: string, link: string) { "use step"; await socialMediaManager.publishToAll({ message: `📰 ${title}`, link }); } export async function revalidatePostsCache() { "use step"; revalidateTag("posts:list", "max"); }
5. Error Handling
Steps automatically retry on failure. For custom error handling:
async function processData() { "use step"; try { const result = await updateData(); return result; } catch (error) { console.error("Step failed:", error); throw error; // Re-throw for automatic retry } }
Common Tasks
Adding a New Workflow
- Create workflow file in
apps/web/src/workflows/ - Define workflow function with
directive"use workflow" - Break logic into steps using
directive"use step" - Create API route in
apps/web/src/app/api/workflows/ - Add Vercel Cron schedule if needed in
vercel.json - Add tests for workflow logic
Debugging Workflow Failures
- Check Vercel dashboard for workflow execution logs
- Review function logs in Vercel
- Verify environment variables are set correctly
- Test workflow locally using development server
- Check database connectivity and Redis availability
Modifying Existing Workflows
- Read existing workflow implementation
- Identify which step needs modification
- Update step logic while maintaining error handling
- Test changes locally
- Deploy and monitor execution
Environment Variables
Workflows typically need:
- PostgreSQL connectionDATABASE_URL
/UPSTASH_REDIS_REST_URL
- RedisUPSTASH_REDIS_REST_TOKEN- Service-specific tokens (Discord webhook, Twitter API, etc.)
Testing Workflows
Run workflow tests:
pnpm -F @sgcarstrends/web test -- src/workflows
Test individual workflow locally:
# Start dev server pnpm dev # Trigger workflow via HTTP curl -X POST http://localhost:3000/api/workflows/cars
References
- Vercel WDK Documentation: https://vercel.com/docs/workflow-kit
- Related files:
- Workflow route handlersapps/web/src/app/api/workflows/
- Social media configurationapps/web/src/config/platforms.ts
- Vercel Cron schedulesapps/web/vercel.json
- Web application documentationapps/web/CLAUDE.md
Best Practices
- Idempotency: Ensure workflows can safely retry without duplicating data
- Step Granularity: Break workflows into small, focused steps with
"use step" - Durable Fetch: Set
for AI SDK callsglobalThis.fetch = fetch - Logging: Add comprehensive logging for debugging
- Testing: Write unit tests for workflow logic
- Monitoring: Track workflow execution in Vercel dashboard