Back to Skills

workflow-management

sgcarstrends
Updated Today
18 views
9
1
9
View on GitHub
Metaapiautomationdata

About

This skill enables developers to create, debug, and modify QStash workflows for data updates and social media posting within the API service. It should be used when adding new automated jobs, fixing workflow errors, or updating scheduling logic. The skill provides access to tools for reading, writing, and managing workflow files located in the `apps/api/src/lib/workflows/` directory.

Documentation

Workflow Management Skill

This skill helps you work with QStash-based workflows in apps/api/src/lib/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 QStash workflows with the following structure:

apps/api/src/lib/workflows/
├── cars/                 # Car registration data workflows
│   └── update.ts        # Scheduled car data updates
├── coe/                 # COE bidding data workflows
│   └── update.ts        # Scheduled COE data updates
└── social/              # Social media posting workflows
    ├── discord.ts
    ├── linkedin.ts
    ├── telegram.ts
    └── twitter.ts

Key Patterns

1. Workflow Definition

Workflows are defined using QStash SDK:

import { serve } from "@upstash/workflow";

export const POST = serve(async (context) => {
  // Step 1: Fetch data
  await context.run("fetch-data", async () => {
    // Fetching logic
  });

  // Step 2: Process data
  const processed = await context.run("process-data", async () => {
    // Processing logic
  });

  // Step 3: Store results
  await context.run("store-results", async () => {
    // Storage logic
  });
});

2. Scheduling Workflows

Workflows are triggered via cron schedules configured in:

  • SST infrastructure (infra/)
  • QStash console
  • Manual API calls to workflow endpoints

3. Error Handling

Always include comprehensive error handling:

await context.run("step-name", async () => {
  try {
    // Logic here
  } catch (error) {
    console.error("Step failed:", error);
    // Log to monitoring service
    throw error; // Re-throw for workflow retry
  }
});

Common Tasks

Adding a New Workflow

  1. Create workflow file in appropriate directory
  2. Define workflow steps using context.run()
  3. Add route handler in apps/api/src/routes/
  4. Configure scheduling (if needed)
  5. Add tests for workflow logic

Debugging Workflow Failures

  1. Check QStash dashboard for execution logs
  2. Review CloudWatch logs for Lambda errors
  3. Verify environment variables are set correctly
  4. Test workflow locally using development server
  5. Check database connectivity and Redis availability

Modifying Existing Workflows

  1. Read existing workflow implementation
  2. Identify which step needs modification
  3. Update step logic while maintaining error handling
  4. Test changes locally
  5. Deploy and monitor execution

Environment Variables

Workflows typically need:

  • DATABASE_URL - PostgreSQL connection
  • UPSTASH_REDIS_REST_URL / UPSTASH_REDIS_REST_TOKEN - Redis
  • QSTASH_TOKEN - QStash authentication
  • Service-specific tokens (Discord webhook, Twitter API, etc.)

Testing Workflows

Run workflow tests:

pnpm -F @sgcarstrends/api test -- src/lib/workflows

Test individual workflow locally:

# Start dev server
pnpm dev

# Trigger workflow via HTTP
curl -X POST http://localhost:3000/api/workflows/cars/update

References

  • QStash Workflows: Check Context7 for Upstash QStash documentation
  • Related files:
    • apps/api/src/routes/workflows.ts - Workflow route handlers
    • apps/api/src/config/qstash.ts - QStash configuration
    • apps/api/CLAUDE.md - API service documentation

Best Practices

  1. Idempotency: Ensure workflows can safely retry without duplicating data
  2. Step Granularity: Break workflows into small, focused steps
  3. Logging: Add comprehensive logging for debugging
  4. Timeouts: Configure appropriate timeouts for long-running operations
  5. Testing: Write unit tests for workflow logic
  6. Monitoring: Track workflow execution metrics

Quick Install

/plugin add https://github.com/sgcarstrends/sgcarstrends/tree/main/workflow-management

Copy and paste this command in Claude Code to install this skill

GitHub 仓库

sgcarstrends/sgcarstrends
Path: .claude/skills/workflow-management
apiaws-lambdabackendhonojob-schedulerneon-postgres

Related Skills

sglang

Meta

SGLang is a high-performance LLM serving framework that specializes in fast, structured generation for JSON, regex, and agentic workflows using its RadixAttention prefix caching. It delivers significantly faster inference, especially for tasks with repeated prefixes, making it ideal for complex, structured outputs and multi-turn conversations. Choose SGLang over alternatives like vLLM when you need constrained decoding or are building applications with extensive prefix sharing.

View skill

evaluating-llms-harness

Testing

This Claude Skill runs the lm-evaluation-harness to benchmark LLMs across 60+ standardized academic tasks like MMLU and GSM8K. It's designed for developers to compare model quality, track training progress, or report academic results. The tool supports various backends including HuggingFace and vLLM models.

View skill

langchain

Meta

LangChain is a framework for building LLM applications using agents, chains, and RAG pipelines. It supports multiple LLM providers, offers 500+ integrations, and includes features like tool calling and memory management. Use it for rapid prototyping and deploying production systems like chatbots, autonomous agents, and question-answering services.

View skill

Algorithmic Art Generation

Meta

This skill helps developers create algorithmic art using p5.js, focusing on generative art, computational aesthetics, and interactive visualizations. It automatically activates for topics like "generative art" or "p5.js visualization" and guides you through creating unique algorithms with features like seeded randomness, flow fields, and particle systems. Use it when you need to build reproducible, code-driven artistic patterns.

View skill