Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

convex-actions-general凸行动一般

Agent Skill

convex-actions-general 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

541

周安装

23

GitHub Stars

23

下载量

190
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:convex-actions-general(凸行动一般)
来源仓库:https://github.com/sstobo/convex-skills
仓库路径:skills/convex-actions-general
安装命令:
npx skills add https://github.com/sstobo/convex-skills --skill convex-actions-general
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/sstobo/convex-skills --skill convex-actions-general

简介

convex-actions-general 提供 Convex 动作、HTTP 端点、校验器与数据库 schema 设计指南。

  • 适用于实现外部 API 调用、长期任务或公共接口开发的场景。
  • 覆盖环境变量管理、文件存储、调度配置与 TypeScript 最佳实践。
  • 严禁使用 any 类型,否则会导致构建失败,需遵循严格类型约束。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Convex Actions and General Guidelines Skill

This skill provides comprehensive guidance for Convex actions, HTTP endpoints, validators, schema design, file storage, environment variables, scheduling, and TypeScript best practices.

When to Use This Skill

Use this skill when:

  • Implementing action functions for external API calls and long-running tasks
  • Creating HTTP endpoints for webhooks or public APIs
  • Defining validators for function arguments and database schemas
  • Designing database schemas with tables, indexes, and search capabilities
  • Setting up environment variables for secrets and configuration
  • Implementing cron jobs and scheduled tasks
  • Working with file storage for uploads and downloads
  • Using Convex-specific TypeScript patterns and types
  • Understanding Convex limits and performance constraints

Skill Resources

This skill includes comprehensive reference documentation in references/actions-and-general.md that covers:

Actions and HTTP

  • Actions: Defining actions with "use node" for Node.js modules

- V8 vs Node runtime differences - Action limitations (10-minute timeout, no database access) - Calling external APIs and services

  • HTTP Endpoints: Setting up convex/http.ts with httpRouter

- Path registration and exact matching - Request/response handling - Method definitions (POST, GET, etc.)

Validators and Types

  • Complete validator reference for all Convex types
  • Common validators: v.object(), v.array(), v.string(), v.number(), v.id(), v.boolean(), v.null()
  • Discriminated union types with v.union() and v.literal()
  • ASCII field name requirements for objects
  • Size and element count limits

Function Development

  • New function syntax for all function types
  • Function registration patterns (query, mutation, action, internalQuery, internalMutation, internalAction)
  • Function calling patterns across runtimes
  • Function references via api and internal objects
  • File-based routing conventions

API Design

  • Organizing public and private functions
  • Thoughtful file structure within convex/ directory
  • Public vs. internal function visibility
  • API surface consistency

Database and Schema

  • Schema Definition: convex/schema.ts structure

- System fields (_id, _creationTime) - Table definitions with validators

  • Indexes: Creating efficient indexes

- Built-in indexes (by_id, by_creation_time) - Custom index naming and field ordering - Multiple field indexes for complex queries

  • Full Text Search: Search index definitions

- Search fields and filter fields - Nested field paths with dot notation

Environment and Configuration

  • Environment Variables: Using process.env

- Storing secrets (API keys, credentials) - Per-deployment configuration - Access from any function type

  • Scheduling:

- Crons: Using crons.interval() and crons.cron() - Scheduler: Using ctx.scheduler.runAfter() from mutations/actions - Auth state propagation (doesn't propagate to scheduled jobs) - Timing constraints and best practices

File Storage

  • Upload URL generation with ctx.storage.generateUploadUrl()
  • Signed URL retrieval with ctx.storage.getUrl()
  • File metadata from _storage system table
  • Blob conversion for storage operations
  • Complete example: image upload in chat application

Limits and Performance

  • Function arguments and return values: 8 MiB maximum
  • Database operations: 8192 document writes per mutation, 16384 reads per query
  • Execution timeouts: 1 second for queries/mutations, 10 minutes for actions
  • Array element limits: 8192 maximum
  • Object/Record field limits: 1024 maximum
  • Nesting depth: 16 maximum
  • Record size: 1 MiB maximum
  • HTTP streaming: 20 MiB maximum output

TypeScript

  • Id<'tableName'> types for strict document IDs
  • Doc<'tableName'> types for document type safety
  • Record<KeyType, ValueType> with proper typing
  • as const for discriminated unions
  • Type annotations for same-file function calls
  • @types/node for Node.js modules

How to Use This Skill

  1. Read the reference documentation at references/actions-and-general.md for comprehensive patterns
  2. Follow the syntax for defining actions with proper Node.js module handling
  3. Use validators correctly for all function arguments and schema fields
  4. Design schemas with appropriate indexes for your access patterns
  5. Set up environment variables for secrets and configuration
  6. Implement scheduling for background tasks using crons or the scheduler
  7. Handle file storage with proper URL generation and metadata lookup
  8. Understand limits and design applications to respect them
  9. Use TypeScript strictly with Id types and proper generics

Key General Guidelines

  • ALWAYS use argument validators for all functions (queries, mutations, actions)
  • Do NOT store file URLs in the database; store file IDs instead
  • Remapping non-ASCII characters (emoji) to ASCII codes before storing in objects
  • Auth state does NOT propagate to scheduled jobs; use internal functions
  • Scheduled functions should not run more than once every 10 seconds
  • Never call actions from other actions unless crossing runtimes (V8 to Node)
  • Objects in Convex must have ASCII-only field names
  • Be strict with TypeScript types, especially for document IDs

Example: Complete Action with HTTP Endpoint

// convex/ai.ts
"use node";
import { action } from "./_generated/server";
import { v } from "convex/values";
import { internal } from "./_generated/api";
import OpenAI from "openai";

const openai = new OpenAI({
  apiKey: process.env.OPENAI_API_KEY,
});

export const generateResponse = action({
  args: {
    channelId: v.id("channels"),
  },
  handler: async (ctx, args) => {
    // Actions can't access ctx.db, but can call mutations
    const context = await ctx.runQuery(internal.functions.loadContext, {
      channelId: args.channelId,
    });

    const response = await openai.chat.completions.create({
      model: "gpt-4o-mini",
      messages: context,
    });

    const content = response.choices[0].message.content;
    if (!content) throw new Error("No content in response");

    await ctx.runMutation(internal.functions.writeAgentResponse, {
      channelId: args.channelId,
      content,
    });

    return null;
  },
});

Example: HTTP Endpoint

// convex/http.ts
import { httpRouter } from "convex/server";
import { httpAction } from "./_generated/server";

const http = httpRouter();

http.route({
  path: "/webhook",
  method: "POST",
  handler: httpAction(async (ctx, req) => {
    const body = await req.json();
    // Process webhook payload
    return new Response(JSON.stringify({ success: true }), { status: 200 });
  }),
});

export default http;

For more detailed information and additional patterns, refer to the complete reference documentation.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.19%
按下载量换算71

Claude

32.31%
按下载量换算61

Cursor

18.63%
按下载量换算35

Gemini CLI

9.7%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills