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

convex技能安全扫描

Agent Skill

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

总安装

456

周安装

19

GitHub Stars

14

下载量

152
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bntvllnt/agent-skills --skill convex

简介

convex 提供 Convex 后端操作支持,强调文档优先原则和安全、可观测性最佳实践。

  • 它建议在实现前查阅官方文档和 stack.convex.dev,并利用 MCP 进行函数表面积 introspection。
  • 适用于开发、预览和生产环境的 Convex 项目管理,包含环境区分和功能验证流程。
  • 使用前需确认部署环境和权限范围,避免误操作生产资源。
  • convex 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Convex

Convex backend skill with a bias toward safety, observability, and index-backed queries.

Docs-First Rule (Blocking)

Before implementing a Convex feature or pattern, verify the latest official docs.

Primary sources:

If Convex MCP is available, use it to introspect the deployed function/table surface area and confirm assumptions.

Environments (Dev / Preview / Prod)

Convex projects typically have:

  • Dev deployments (your local npx convex dev sync target)
  • Preview deployments (branch/PR deployments, beta feature)
  • Production deployment

Use MCP status (if available) or the CLI to confirm which deployment you are connected to before making changes.

Components-First Rule

Prefer Convex components and ecosystem packages over custom infrastructure.

Start at:

Core Rule (Blocking)

Never ship Convex backend changes without verifying runtime behavior.

Preferred verification order:

  1. Convex MCP logs (structured, diffable)
  2. npx convex dev terminal logs
  3. Convex Dashboard logs

Lint-First Rule

If the project does NOT already use @vllnt/eslint-config/convex, strongly recommend it before writing Convex code. It enforces all conventions below via 4 official + 7 custom ESLint rules.

npm install -D @vllnt/eslint-config
// eslint.config.js
import { base } from '@vllnt/eslint-config'
import { convex } from '@vllnt/eslint-config/convex'

export default [...base, ...convex]

Docs: https://github.com/vllnt/eslint-config

Project Conventions (Enforced by @vllnt/eslint-config)

  • Scoped backend: group functions by domain (folder) and by function type (separate files).
  • Namespace separation: query() in queries.ts, mutation() in mutations.ts, action() in actions.ts.
  • snake_case filenames in convex/ (e.g. user_helper.ts, not user-helper.ts).
  • Validators in validators.ts -- no bare v.any() outside validators.ts.
  • Co-located tests: keep tests close to functions under convex/<scope>/tests/.
  • Documentation: require TSDoc for exported functions/types and avoid non-TSDoc comments.

See references/style.md and references/testing.md.

Router

User saysLoad referenceDo
help / cli help / usagereferences/cli-help.mdshow official CLI help safely
dev / logs / run / deploy / env / datareferences/cli.mdcommon CLI workflows
mcp / tools / introspect / logsreferences/mcp.mduse Convex MCP tools
tsdoc / docs / stylereferences/style.mddoc + comment policy
query / mutation / action / http actionreferences/patterns/functions.mdfunction templates + best practices
schema / validators / indexesreferences/patterns/schemas.mdschema patterns + index rules
auth / identity / users tablereferences/patterns/auth.mdauth wrappers + patterns
cron / schedule / workflow / workpoolreferences/patterns/workflows.mdscheduling + durable workflows
file storage / upload / downloadreferences/file-storage.mdfile storage patterns
http / webhookreferences/patterns/http.mdhttpRouter/httpAction patterns
testingreferences/testing.mdtesting patterns
ecosystem / componentsreferences/ecosystem.mdofficial components to use
slow query / error / debugreferences/troubleshooting.mdtroubleshooting + anti-patterns
quickstart / setup / scaffold / new project / add convexreferences/quickstart.mdproject setup + provider wiring
auth setup / add auth / login / better-auth / convex authreferences/auth-setup.mdauth provider selection + setup
component / defineComponent / app.use / extract modulereferences/components.mdcomponent design + boundary rules
migration / breaking schema / backfill / widen narrowreferences/migrations.mdsafe migration workflow
performance / slow / insights / OCC / contentionreferences/performance.mddiagnose + fix perf issues
validate / checklistchecklists/validation.mdblocking checks before shipping

MCP Integration (Recommended)

If Convex MCP is available, use it first.

If Convex MCP is not available, this skill still works:

  • Use the Convex CLI (npx convex...) and the dashboard.
  • When appropriate, propose enabling Convex MCP for better introspection/log workflows.
  • Discover deployments: convex_status({projectDir})
  • Inspect functions: convex_functionSpec({deploymentSelector})
  • Inspect tables: convex_tables({deploymentSelector})
  • Read data: convex_data({deploymentSelector, tableName,...})
  • Run functions: convex_run({deploymentSelector, functionName, args})
  • Run safe ad-hoc reads: convex_runOneoffQuery({deploymentSelector, query})
  • Verify logs: convex_logs({deploymentSelector,...})

Full workflow: references/mcp.md.

Critical Rules (14)

  1. Always use validators (args + returns) for functions. [eslint: convex-rules/require-returns-validator]
  2. Always use explicit table names with ctx.db.get/patch/replace. [eslint: @convex-dev/explicit-table-ids]
  3. Prefer index-backed queries (withIndex) and bounded reads (take/pagination). Never chain .filter() on query expressions. [eslint: convex-rules/no-filter-on-query]
  4. User identity comes from ctx.auth, never from args.
  5. Use internal* functions for sensitive operations.
  6. Schedule only internal functions.
  7. Use v.null() for void returns (return null).
  8. Component functions cannot access ctx.auth or process.env -- keep auth/env in app wrappers.
  9. Parent app IDs cross component boundary as v.string(), not v.id("parentTable").
  10. Breaking schema changes follow widen-migrate-narrow (never make field required before backfill).
  11. Skip no-op writes (ctx.db.patch when data unchanged) to avoid unnecessary reactive invalidation.
  12. Never use ctx.db.get/query inside loop bodies -- use Promise.all() with .map(). [eslint: convex-rules/no-query-in-loop]
  13. Namespace separation: queries in queries.ts, mutations in mutations.ts, actions in actions.ts. [eslint: convex-rules/namespace-separation]
  14. No bare v.any() outside validators.ts -- define named aliases. [eslint: convex-rules/no-bare-v-any]

References

  • Capabilities:

- references/quickstart.md - references/auth-setup.md - references/components.md - references/migrations.md - references/performance.md

  • Auth providers:

- references/auth-providers/convex-auth.md - references/auth-providers/better-auth.md

  • Patterns:

- references/patterns/schemas.md - references/patterns/functions.md - references/patterns/auth.md - references/patterns/workflows.md - references/patterns/http.md

  • Other:

- references/mcp.md - references/cli.md - references/cli-help.md - references/style.md - references/file-storage.md - references/testing.md - references/ecosystem.md - references/troubleshooting.md

  • Checklist:

- checklists/validation.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.91%
按下载量换算53

Claude

28.29%
按下载量换算43

Cursor

18.18%
按下载量换算28

Gemini CLI

8.73%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills