MCP HubMCP Hub
スキル一覧に戻る

convex-backend

majiayu000
更新日 Today
19 閲覧
58
9
58
GitHubで表示
メタreactautomationdesigndata

について

このスキルは、自動リアクティビティと楽観的更新を備えたTypeScriptクエリ、ミューテーション、アクションを使用して、Convexによるリアルタイムバックエンドアプリケーションの構築を可能にします。コラボレーティブアプリの作成、リアクティブなデータ同期の実装、トランザクション保証付きサーバーレス関数の記述に最適です。アプリケーションで即時のデータ同期、ファイルストレージ、認証、自動更新クエリが必要な場合にご利用ください。

クイックインストール

Claude Code

推奨
プラグインコマンド推奨
/plugin add https://github.com/majiayu000/claude-skill-registry
Git クローン代替
git clone https://github.com/majiayu000/claude-skill-registry.git ~/.claude/skills/convex-backend

このコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします

ドキュメント

Convex Backend - Realtime Database & Functions

When to use this skill

  • Building real-time collaborative applications
  • Implementing reactive data that auto-updates
  • Writing Convex queries, mutations, and actions
  • Creating serverless backend functions with TypeScript
  • Implementing optimistic UI updates
  • Handling file uploads with Convex storage
  • Implementing authentication with Convex Auth
  • Designing Convex database schemas
  • Building chat applications or live dashboards
  • Creating applications with instant data sync
  • Implementing scheduled functions (crons)
  • Building backends without managing infrastructure

When to use this skill

  • Building realtime apps with Convex, implementing reactive queries, or managing backend logic with type-safe functions.
  • When working on related tasks or features
  • During development that requires this expertise

Use when: Building realtime apps with Convex, implementing reactive queries, or managing backend logic with type-safe functions.

Core Concepts

Queries (Read Data)

```typescript import { query } from './_generated/server'; import { v } from 'convex/values';

export const list = query({ args: {}, handler: async (ctx) => { return await ctx.db.query('users').collect(); } });

export const get = query({ args: { id: v.id('users') }, handler: async (ctx, args) => { return await ctx.db.get(args.id); } }); ```

Mutations (Write Data)

```typescript import { mutation } from './_generated/server';

export const create = mutation({ args: { name: v.string(), email: v.string() }, handler: async (ctx, args) => { return await ctx.db.insert('users', args); } }); ```

Resources

GitHub リポジトリ

majiayu000/claude-skill-registry
パス: skills/convex-backend

関連スキル

content-collections

メタ

This skill provides a production-tested setup for Content Collections, a TypeScript-first tool that transforms Markdown/MDX files into type-safe data collections with Zod validation. Use it when building blogs, documentation sites, or content-heavy Vite + React applications to ensure type safety and automatic content validation. It covers everything from Vite plugin configuration and MDX compilation to deployment optimization and schema validation.

スキルを見る

creating-opencode-plugins

メタ

This skill provides the structure and API specifications for creating OpenCode plugins that hook into 25+ event types like commands, files, and LSP operations. It offers implementation patterns for JavaScript/TypeScript modules that intercept and extend the AI assistant's lifecycle. Use it when you need to build event-driven plugins for monitoring, custom handling, or extending OpenCode's capabilities.

スキルを見る

sglang

メタ

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.

スキルを見る

polymarket

メタ

This skill enables developers to build applications with the Polymarket prediction markets platform, including API integration for trading and market data. It also provides real-time data streaming via WebSocket to monitor live trades and market activity. Use it for implementing trading strategies or creating tools that process live market updates.

スキルを見る