Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

convex技能安全扫描

Agent Skill

convex 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,496

周安装

479

GitHub Stars

公开资料未说明

下载量

3,832
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install convex

简介

使用模式安全建模、查询和突变模式、身份验证防护和生产部署检查来构建和维护 Convex 后端。

SKILL.md

name
Convex
slug
convex
version
1.0.0
homepage
https://clawic.com/skills/convex
description
Build and maintain Convex backends with schema-safe modeling, query and mutation patterns, auth guards, and production rollout checks.
changelog
Initial release with schema, auth, indexing, and rollout guidance for Convex projects.
metadata
{"clawdbot":{"emoji":"DB","requires":{"bins":[],"config":["~/convex/"]},"os":["linux","darwin","win32"],"configPaths":["~/convex/"]}}

Setup

On first use, read setup.md for integration guidelines.

When to Use

User is building, debugging, or scaling a Convex backend and needs reliable patterns for data modeling, queries, mutations, actions, auth, and deployments.

This skill focuses on implementation quality and operational safety, not generic framework tutorials.

Architecture

Memory lives in ~/convex/. See memory-template.md for structure and status fields.

~/convex/
|- memory.md               # Durable project context and technical decisions
|- schema-notes.md         # Table design and index rationale
|- rollout-notes.md        # Deploy and incident learnings
`- auth-notes.md           # Auth model and permission edge cases

Quick Reference

Use the smallest relevant file for the current task.

TopicFile
Setup flowsetup.md
Memory templatememory-template.md
Schema and indexesschema-and-indexes.md
Deploy and operationsoperations-playbook.md

Requirements

  • No API keys or external credentials are required by this skill itself.
  • TOKEN/KEY: Not required by this skill.
  • If a project uses third-party integrations, treat those credentials as user-managed secrets and never persist raw values in memory files.

Data Storage

This skill stores reusable context only under ~/convex/:

  • memory file for durable project context and decisions
  • schema notes for modeling and index rationale
  • rollout notes for deployment and incident lessons
  • auth notes for permission and boundary edge cases

Do not store secrets, access tokens, or personal data unless the user explicitly requests it.

Core Rules

1. Model Access Patterns Before Writing Schema

Define tables and indexes from real read paths first:

  • Which fields are filtered most often
  • Which sort order is needed
  • Which uniqueness guarantees are required

Do not rely on table scans in production paths.

2. Keep Function Boundaries Strict

Use each function type for its intended purpose:

  • Query: read-only and deterministic
  • Mutation: validated state changes
  • Action: external side effects and network calls

Do not mix external calls inside deterministic data paths.

3. Enforce Auth and Authorization at Every Entry Point

Treat every query, mutation, action, and HTTP entrypoint as untrusted input:

  • Resolve identity explicitly
  • Check workspace or tenant boundaries
  • Validate ownership before returning or mutating records

Never trust client-provided identifiers without server checks.

4. Design Indexes for Stability, Not Just Speed

Create indexes that match long-term product workflows:

  • Primary user lookup paths
  • Admin and backoffice paths
  • Background processing queues

Document index intent so future changes do not break critical queries.

5. Make Writes Idempotent for Retries

For webhooks and external callbacks:

  • Use stable idempotency keys
  • Upsert safely when replayed
  • Record processing status

A retry should not create duplicate side effects.

6. Ship with Safe Rollout Discipline

Before deploying schema or logic changes:

  • Verify backward compatibility for current clients
  • Prepare migration steps for renamed fields or tables
  • Confirm failure mode and rollback path

Never deploy unreviewed breaking data changes.

7. Preserve Debuggability in Production

When fixing incidents:

  • Capture a minimal reproduction query
  • Keep structured logs around actor, function, and record ids
  • Record final root cause and preventive rule in memory

Fast diagnosis compounds over time.

Common Traps

  • Building schema from entities only, not query paths -> slow reads and rework.
  • Putting network side effects in deterministic logic -> nondeterministic failures.
  • Treating auth as a UI concern -> cross-tenant data leaks.
  • Adding indexes reactively during outages -> unstable rollout under pressure.
  • Shipping breaking schema changes without migration staging -> runtime failures.
  • Ignoring idempotency for callbacks -> duplicate writes and billing errors.

Security & Privacy

Data that leaves your machine:

  • None by default from this skill itself.

Data that stays local:

  • Convex project context and decisions under ~/convex/.

This skill does NOT:

  • Automatically call external services.
  • Manage or store secrets outside user-approved files.
  • Apply destructive schema changes without explicit confirmation.
  • Modify files outside ~/convex/ for memory.

Related Skills

Install with clawhub install <slug> if user confirms:

  • backend - Service architecture and operational reliability patterns.
  • typescript - Type-safe design and implementation for app and backend code.
  • javascript - Runtime behavior and language-level debugging workflows.

Feedback

  • If useful: clawhub star convex
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

88.49%
按下载量换算3,391

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills