convex-runtime

Automates Convex runtime capabilities for HTTP actions, file storage, and search.

Updated Jan 28, 2026
One-click install
npx skills add https://github.com/IgorWarzocha/realtime-dashboard-analytics-demo --skill convex-runtime
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: convex-runtime
Source: https://github.com/IgorWarzocha/realtime-dashboard-analytics-demo/tree/main/.opencode/skill/convex-runtime
Command: npx skills add https://github.com/IgorWarzocha/realtime-dashboard-analytics-demo --skill convex-runtime

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill enables developers to implement Convex runtime features such as HTTP actions, file storage, full-text and vector search, and scheduling, enabling modern web apps with real-time capabilities.

Core Features & Use Cases

  • HTTP actions: define and route runtime HTTP handlers to build API endpoints and webhooks.
  • File storage: manage uploads and signed URLs for secure, scalable document/file handling.
  • Search: configure and query full-text and vector indexes for fast retrieval and RAG workflows.
  • Scheduling: create durable cron jobs and scheduled functions for periodic tasks and workflows.
  • Use cases: build webhook receivers, content search dashboards, and background job pipelines in Convex-powered apps.

Quick Start

Install dependencies, initialize a Convex project, and begin wiring HTTP routes, storage, and search according to the runtime examples. Then run the development server and test with a sample webhook and file upload.

Frequently Asked Questions about convex-runtime

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up HTTP actions and webhooks in a Convex backend?

To set up HTTP actions in Convex, you define and route runtime HTTP handlers to build API endpoints and receive incoming webhooks. This allows your Convex-powered backend to securely process external HTTP requests.

What is the best way to handle file uploads and generate signed URLs with Convex file storage?

The best way to handle file uploads with Convex file storage is by managing uploads and generating signed URLs. This approach provides secure, scalable document and file handling within your web application.

Can I use Convex for full-text and vector search in RAG workflows?

Yes, you can use Convex for full-text and vector search by configuring and querying specialized indexes. This enables fast content retrieval and supports retrieval-augmented generation (RAG) workflows.

How do I schedule recurring tasks and cron jobs in Convex?

You can schedule recurring tasks in Convex by creating durable cron jobs and scheduled functions. This enables periodic task execution and background job pipelines for your application.

Do I need to configure indexes before using vector search in Convex?

Yes, you must configure vector search indexes before querying them in Convex. Proper index configuration is required to enable fast retrieval operations and accurate RAG workflows.