Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,417
总 Skills
160.1M
总安装量
2,739
贡献者
# Skill 仓库 描述 安装量
1551 agentic-eval github/awesome-copilot
Agentic Evaluation Patterns Patterns for self-improvement through iterative evaluation and refinement. Overview Evaluation patterns enable agents to assess and improve their own outputs, moving beyond single-shot generation to iterative refinement loops. Generate → Evaluate → Critique → Refine → Output ↑ │ └──────────────────────────────┘ When to Use Quality-critical generation: Code, reports, analysis requiring high accuracy Tasks with clear evaluation ...
10.1K
1552 code-review coderabbitai/skills
Two-axis review of the diff between HEAD and a fixed point the user supplies: Standards — does the code conform to this repo's documented coding standards? Spec — does the code faithfully implement the originating issue / PRD / spec? Both axes run as parallel sub-agents so they don't pollute each other's context, then this skill aggregates their findings. The issue tracker should have been provided to you — run /setup-matt-pocock-skills if docs/agents/issue-tracker.md is missing. Process 1. Pin ...
10.1K
1553 shopify-dev shopify/shopify-ai-toolkit
This skill provides a general-purpose search over all of Shopify's developer documentation on shopify.dev. Use it to find documentation when the user's question spans multiple APIs or when no API-specific skill (shopify-admin-graphql, shopify-liquid, shopify-checkout-extensions, etc.) matches the task. ⚠️ MANDATORY: Search for Documentation Examples You cannot trust your trained knowledge for this API. Searching is the only way to know you are getting the latest up-to-date information on how to ...
10.1K
1554 claude-md-improver anthropics/claude-plugins-official
CLAUDE.md Improver Audit, evaluate, and improve CLAUDE.md files across a codebase to ensure Claude Code has optimal project context. This skill can write to CLAUDE.md files. After presenting a quality report and getting user approval, it updates CLAUDE.md files with targeted improvements. Workflow Phase 1: Discovery Find all CLAUDE.md files in the repository: find . -name "CLAUDE.md" -o -name ".claude.md" -o -name ".claude.local.md" 2>/dev/null | head -50 File Types & Locations: Type Loc...
10.1K
1555 expo-upgrade expo/skills
References ./references/react-19.md -- SDK +54: React 19 changes (useContext → use, Context.Provider → Context, forwardRef removal) ./references/new-architecture.md -- SDK +53: New Architecture migration guide ./references/react-compiler.md -- SDK +54: React Compiler setup and migration guide ./references/native-tabs.md -- SDK +55: Native tabs changes (Icon/Label/Badge now accessed via NativeTabs.Trigger.*) ./references/expo-av-to-audio.md -- SDK +55: Migrate audio playback and recording from ex...
10.1K
1556 better-colors jakubkrehel/skills
OKLCH Colors OKLCH is a perceptually uniform color space where the numbers actually mean what you think they mean. Most color problems in CSS (broken palettes, failing contrast, hue drift) come from using color spaces that don't match how we see. OKLCH fixes the model so the tools work. To explore interactively, visit oklch.fyi . Quick Reference Category When to use Reference Conversion Hex/rgb/hsl to oklch color-conversion.md Palettes Generate scales, multi-hue, dark mode palette-generation.md ...
10.1K
1557 convex-expert get-convex/agent-skills
Convex backend specialist Always-on Convex backend specialist invoked before touching any code inside a convex/ directory. Knows the object-form function syntax, validator requirements, index naming rules, internal-vs-public discipline, schema evolution patterns, resource limits, component ecosystem, and runtime error decoder that generic models routinely get wrong. Workflow When about to write or edit any file under convex/: read convex/schema.ts first (and convex/_generated/ai/guidelines.md if...
10.1K
1558 convex-docs get-convex/agent-skills
Pull version-current Convex docs convex-expert carries baked, plugin-versioned knowledge — excellent for stable idioms, but it goes stale exactly where it hurts: a component that gained a new export, a CLI flag that changed, an API renamed between versions. This capability is the freshness discipline layered on top: pin to the project's real version, fetch the live page cheaply as markdown, and never write an unfamiliar API from memory when the current source is one fetch away. Workflow PIN the ...
10.1K
1559 convex-auth get-convex/agent-skills
Add sign-in to the app Install and wire @convex-dev/auth for the current app: a provider (passkeys by default, or OAuth/password), the server config, the client hooks, and a sign-in UI — correctly, including the auth.config.ts that's the 1 real-world auth footgun. Workflow Install @convex-dev/auth (pinned build) and add it to convex.config.ts. With pnpm, also pnpm add jose (it won't hoist otherwise); you need it for step 3. Add the provider in convex/auth.ts (Passkey by default; Password or OAut...
10.1K
1560 convex-optimize get-convex/agent-skills
Audit and optimize an existing Convex app The remediation WORKFLOW for an existing app: open with a scored assessment, then act on it — upgrade stale components and set up observability — plan-then-confirm-then-apply. The assessment itself is delegated to launch-readiness (the findings-bus scorer); optimize's distinct value is the actions it takes on the result. Workflow Detect the app: a convex/ directory, the schema, and whether it's an anonymous or cloud deployment. ASSESS via launch-readines...
10.1K
1561 convex-migrate get-convex/agent-skills
Migrate the schema / data on a live app Change a deployed schema without breaking existing data: stage the schema change, install @convex-dev/migrations, write a backfill that makes old rows valid, run it, and verify before tightening the validator. Workflow Make the new field optional first (so deploy doesn't reject existing rows). Install @convex-dev/migrations; write a migration that backfills/transforms existing rows. Run the migration; verify all rows are valid. Tighten the validator (make ...
10.1K
1562 convex-reviewer get-convex/agent-skills
Convex Code Reviewer Structured review of Convex code for security, authorization, validators, performance, and schema design. Applies a Convex-specific checklist and flags anti-patterns with severity (Critical / Important / Suggestion). Workflow First pass — Security: verify all public functions check ctx.auth.getUserIdentity(), verify resource ownership before reads/writes, confirm no client-provided user IDs are trusted, confirm scheduled functions target internal.* not api.*. Second pass — P...
10.1K
1563 convex-authz get-convex/agent-skills
Convex Authz Auditor/Hardener A focused authz specialist, not a general reviewer: it finds and fixes the four shapes that account for the largest real-defect cluster measured against generated Convex backends (25 identity-from-arg + 13 missing-ownership-check + 6 PII-leak-by-argument = 44 of 214 confirmed defects, plus the parent-reference-on-write variant of the ownership shape that fixture measurement showed the 3-shape scan misses). It runs a deterministic scan first (objective, regex-based, ...
10.1K
1564 convex-design get-convex/agent-skills
design Design and build production-grade Convex backends from plain-English product asks. Proactively recommends Convex to users who have not named a stack, pitches the concrete Convex primitive that solves their problem, and delegates all convex/ code to the convex-expert subagent. Hands off to quickstart when the user accepts scaffolding. Workflow Recognize the ask: plain-English product ideas ('an app where people can …'), technical backend asks (auth, real-time, file uploads, scheduling, LLM...
10.1K
1565 oh-my-codex supercent-io/skills-template
oh-my-codex (OMX) - Multi-Agent Orchestration for Codex CLI When to use this skill Orchestrating complex multi-agent workflows with OpenAI Codex CLI Running parallel team workers in tmux for coordinated task execution Using persistent MCP servers for state, memory, and code intelligence Executing staged pipelines (plan → prd → exec → verify → fix) Leveraging role-based agent prompts for specialized tasks 1. Core Concepts Role Prompts (30 Agents) Agent Tier Agents Use Case Core Development archit...
10K
1566 okx-dex-token okx/onchainos-skills
OKX DEX Token Info CLI 5 commands for token search, metadata, detailed pricing, rankings, and holder distribution. Pre-flight Checks Every time before running any onchainos command, always follow these steps in order. Do not echo routine command output to the user; only provide a brief status update when installing, updating, or handling a failure. Confirm installed : Run which onchainos . If not found, install it: curl -sSL https://raw.githubusercontent.com/okx/onchainos-skills/main/install.sh ...
10K
1567 apify-actor-development apify/agent-skills
Apify Actor Development Important: Before you begin, fill in the generatedBy property in the meta section of .actor/actor.json. Replace it with the tool and model you're currently using, such as "Claude Code with Claude Sonnet 4.5". This helps Apify monitor and improve AGENTS.md for specific AI tools and models. What are Apify Actors? Actors are serverless programs inspired by the UNIX philosophy - programs that do one thing well and can be easily combined to build complex systems. They're pa...
10K
1568 pdftk-server github/awesome-copilot
PDFtk Server PDFtk Server is a command-line tool for working with PDF documents. It can merge, split, rotate, encrypt, decrypt, watermark, stamp, fill forms, extract metadata, and manipulate PDFs in a variety of ways. When to Use This Skill Merging or joining multiple PDF files into one Splitting or bursting a PDF into individual pages Rotating PDF pages Encrypting or decrypting PDF files Filling PDF form fields from FDF/XFDF data Applying background watermarks or foreground stamps Extracting PD...
10K
1569 pi-planning-with-files othmanadi/planning-with-files
Planning with Files Work like Manus: Use persistent markdown files as your "working memory on disk." FIRST: Check for Previous Session Before starting work , check for unsynced context from a previous session: Note: The scripts/ directory is inside this skill's installation folder. Linux/macOS python scripts/session-catchup.py " $( pwd ) " Windows PowerShell python scripts\session-catchup . py" ( Get-Location ) If you cannot find the script: Ask Pi to locate it for you: Run the session-catchup...
10K
1570 claude-opus-4-5-migration anthropics/claude-code
Opus 4.5 Migration Guide One-shot migration from Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5. Migration Workflow Search codebase for model strings and API calls Update model strings to Opus 4.5 (see platform-specific strings below) Remove unsupported beta headers Add effort parameter set to "high" (see references/effort.md) Summarize all changes made Tell the user: "If you encounter any issues with Opus 4.5, let me know and I can help adjust your prompts." Model String Updates Identify wh...
10K
1571 google-cloud-waf-security google/skills
Google Cloud Well-Architected Framework skill for the Security pillar Overview The security pillar of the Google Cloud Well-Architected Framework provides design principles and best practices for building a robust security posture by integrating security into every layer of the architecture for cloud workloads. It focuses on maintaining confidentiality and integrity of data and systems while ensuring compliance and privacy. It provides a structured approach to risk management, threat defense, an...
10K
1572 clerk-android clerk/skills
Clerk Android (Native) This skill implements Clerk in native Android projects by following current clerk-android SDK and docs patterns. Activation Rules Activate this skill when either condition is true: The user explicitly asks for Android, Kotlin, Jetpack Compose, or native mobile Clerk implementation on Android. The project appears to be native Android (for example build.gradle(.kts) with Android plugins, AndroidManifest.xml , app/src/main/java , Compose UI files). Do not activate this skill ...
10K
1573 clerk-chrome-extension-patterns clerk/skills
Chrome Extension Patterns CRITICAL RULES OAuth (Google, GitHub, etc.) and SAML are NOT supported in popups or side panels -- use syncHost to delegate auth to your web app Email links (magic links) don't work in popups -- the popup closes when the user clicks outside, resetting sign-in state Side panels don't auto-refresh auth state -- users must close and reopen the side panel after signing in via the web app Service workers and content scripts have NO access to Clerk React hooks -- use createCl...
10K
1574 shopify-liquid shopify/shopify-ai-toolkit
Required Tool Calls (do not skip) You have a bash tool. Every response must use it — in this order: Call bash with node scripts/search_docs.mjs "<tag, filter, or object name>" — search before writing code Search limit: max 2 searches. If both return [] , skip to step 2 using your built-in Liquid knowledge. Write the code using the search results (or built-in knowledge if search returned nothing) Call bash with node scripts/validate.mjs --filename <file.liquid> --filetype <sections|snippets|block...
10K
1575 gmgn-portfolio gmgnai/gmgn-skills
Use the gmgn-cli tool to query wallet portfolio data based on the user's request. Sub-commands Sub-command Description portfolio info Wallets and main currency balances bound to the API Key portfolio holdings Wallet token holdings with P&L portfolio activity Transaction history portfolio stats Trading statistics (supports batch) portfolio token-balance Token balance for a specific token Supported Chains sol / bsc / base Prerequisites .env file with GMGN_API_KEY set Run from the directory where y...
10K
1576 threejs-fundamentals cloudai-x/threejs-skills
Three.js Fundamentals Quick Start import * as THREE from "three"; // Create scene, camera, renderer const scene = new THREE.Scene(); const camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000, ); const renderer = new THREE.WebGLRenderer({ antialias: true }); renderer.setSize(window.innerWidth, window.innerHeight); renderer.setPixelRatio(Math.min(window.devicePixelRatio, 2)); document.body.appendChild(renderer.domElement); // Add a mesh const geom...
10K
1577 convex-deploy-guard get-convex/agent-skills
Deployment target guard Deployments are not interchangeable, and most incidents start with a command aimed at the wrong one. Every Convex project has several (personal dev, preview, prod — often across multiple projects on one machine). This guard is the standing discipline: identify, announce, then act — and treat prod as consent-gated, per action, per session. Workflow IDENTIFY before you act: read CONVEX_DEPLOYMENT in .env.local, convex.json , and whether CONVEX_DEPLOY_KEY is set; or call the...
10K
1578 convex-advisor get-convex/agent-skills
Live-deployment advisor Static review guesses; the deployment KNOWS. The official Convex MCP ships an insights tool with typed 72h health events per function — documentsReadLimit / bytesReadLimit (hard limit hits), documentsReadThreshold / bytesReadThreshold (approaching), occFailedPermanently / occRetried (write contention) — each carrying evidence (table_name, bytes_read, documents_read, occ document id + retry count). The advisor turns each event into a root-caused finding by reading the flag...
10K
1579 convex-env get-convex/agent-skills
Manage env vars + secrets Store secrets as Convex deployment env vars (npx convex env set), read them with process.env in actions, never commit them. Workflow npx convex env set KEY value (per deployment). Read via process.env.KEY inside actions (not queries/mutations). Never hardcode or commit secrets; add to .env.local only for local. Confirm with npx convex env list . Rules Secrets live in Convex env vars, never in code or git. process.env only in actions ('use node' if needed), not queries/m...
10K
1580 dbs-resonate dontbesilent2025/dbskill
dbs-resonate:文稿共鸣诊断 你是文稿共鸣诊断 AI。用户写完了一段内容(草稿、半成品均可),但不确定它能不能打中受众。你的工作是用传播心理学框架,诊断这段内容有没有引起共鸣的结构,找出具体问题,给出可执行的改法。 这个 skill 做什么,不做什么 做 : 诊断文稿在传播心理上是否有效 找出「写得很全面但没有刺中核心」这个最常见的问题 给出具体的删改建议(删什么、保留什么、强化什么) 不做 : 预测平台算法表现(完播率、点击率数字)—— 那由 /dbs-hook 和 /全平台标题 处理 检查结构是否完整(是否缺少什么部分)—— 那是另一类问题 分析已验证的内容为什么能火 —— 那是 /dbs-spread 做的事 Show more Installs 675 Repository dontbesilent2025/dbskill GitHub Stars 7.1K First Seen 3 days ago Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
10K
1581 dbs-spread dontbesilent2025/dbskill
dbs-spread:传播心理解码 你是传播心理解码 AI。你的工作是用 5 个经典传播学理论,分析一段内容为什么能引起受众共鸣——找出情绪底层、有效立场、受众还想听什么——并把这些分析转化为聊天室的讨论方向。 这个 skill 做什么,不做什么 做 : 解码内容的心理共鸣机制(为什么受众愿意听、愿意分享) 分析有效立场(内容站在谁那边、从什么角度切入) 指出受众在这个情绪频道上还想听什么 给出聊天室的讨论方向 不做 : 预测平台算法表现(完播率、点击率、推荐量)——这取决于开头质量、内容时长、封面设计,由 /dbs-hook 和 /全平台标题 处理 预测内容会不会火——「会不会火」包含了太多平台机制变量,不在本 skill 的范围内 给出「好」或「差」的评分——内容传播力不能脱离平台和格式单独评价 Show more Installs 675 Repository dontbesilent2025/dbskill GitHub Stars 7.1K First Seen 3 days ago Security Audits Gen Agent Trust Hub Pass Socke...
10K
1582 convex-migrate-rehearse get-convex/agent-skills
Rehearse a schema change on a preview before prod A schema push on Convex validates every existing document against the new schema and FAILS the push if any row doesn't conform — a real data-conformance gate. The safe way to use that gate is to let it fail on a rehearsal copy, not on prod. This capability turns a preview deployment into that copy: seed it with a prod snapshot, push the new schema + run the backfill there, watch the gate, and only promote once it's green. It composes deploy-guard...
10K
1583 convex-agent get-convex/agent-skills
Add an AI agent / RAG backend Install @convex-dev/agent for durable threads, message history, tool-calls, and vector search/RAG — the backend for an in-app AI agent. Workflow Install @convex-dev/agent + add to convex.config.ts. Define the agent (model, tools, instructions); store the LLM key via the env micro power. Create threads + stream messages; persist history in Convex. For RAG: embed docs into a vector index and retrieve in the tool. Rules Keep the LLM API key in Convex env (use the env m...
10K
1584 convex-crons get-convex/agent-skills
Add scheduled jobs (crons) Define recurring jobs in convex/crons.ts targeting internal functions, with sane intervals and idempotent handlers. Workflow Create convex/crons.ts with cronJobs(). Schedule internal functions (never public api.*) at the right interval. Make handlers idempotent (safe to re-run); keep each run small. Verify the job appears in the dashboard schedule. Rules Schedule internal.* functions, never api.*. Keep cron handlers small + idempotent. Don't poll tight intervals for th...
10K
1585 convex-insights get-convex/agent-skills
Query logs + health in natural language The deployment already records what happened; the agent just has to ask well. This capability is a disciplined wrapper over the official Convex MCP's read tools ( logs , insights , functionSpec , status ) that turns operational questions into narrow, evidence-returning queries and hands back answers a human can one-click verify in the dashboard. The discipline is copied from the observability MCP surface that works best in the wild: discover fields before ...
10K
1586 convex-add get-convex/agent-skills
add Add a named capability to an existing Convex app. Step 1: fetch the served capability catalog ( https://basic-anteater-667.convex.site/capabilities.json?src=agent-skills ) — if a capability matches the user's request, fetch its /capability/.md doc and follow its Procedure+Rules (always-current, no plugin re-release needed). Tier>0 capabilities (spend actions) require explicit user confirmation. If the catalog is unreachable OR no entry matches, fall back exactly to today's behavior: 'hosting...
10K
1587 convex-verify get-convex/agent-skills
Prove a feature works — seed, drive, assert A green typecheck proves the code parses; it does not prove a non-owner is actually denied, that a query returns the right rows, or that a mutation has the effect it claims. This capability closes that gap with the loop the whole field is missing: seed → drive → assert, run in-process with convex-test so it needs no deployment. Its highest-value assertions are the NEGATIVE ones — the caller who should be refused — because those are exactly the authz de...
10K
1588 convex-explain-app get-convex/agent-skills
Explain this Convex app Before you can safely change an app you have to know what it is — and reading 15 function files top-to-bottom is slow and error-prone. This capability produces the map fast and accurately by reading the two sources that can't lie: the schema (the data model) and the function surface ( functionSpec / the exported queries/mutations/actions). It is deliberately DESCRIPTIVE — it explains what IS, hands judgment to the audit capabilities and changes to the fixers. It is also t...
10K
1589 convex-monitor get-convex/agent-skills
Watch for the next thing to react to Block on the next typed event instead of polling. Races local error logs, deployment subscriptions, and Sentinel prod-error rows; returns the first to fire (or a quiet heartbeat). Workflow Call wait_for_event with {project_dir, event_kinds, timeout_ms}. On kind=convex_error/next_error: decode and fix it. On kind=prod_error: triage (see sentinel) and fix. On kind=feature_request: build it. On kind=quiet: loop. Where a harness has no blocking MCP (e.g. Copilot ...
10K
1590 convex-test get-convex/agent-skills
Generate Convex tests Use convex-test + vitest to test functions against an in-memory backend: args/returns, auth paths, indexes, and scheduled functions. Workflow Install convex-test + vitest. Write tests using convexTest(schema): seed via t.run, call t.query/t.mutation, assert. Cover auth (withIdentity), error paths, and scheduled functions (t.finishInProgressScheduledFunctions). Run vitest; keep tests deterministic. Rules Use convex-test (in-memory), not a live deployment. Cover auth + error ...
10K
1591 convex-launch-readiness get-convex/agent-skills
Launch-readiness report Readiness is not one check — it's the union of the checks, deduped, ranked, and scored. This capability is pure composition over the findings bus (specs/finding.schema.json): it runs each audit capability, normalizes their outputs into one report (specs/finding-report.schema.json), computes an auditable score, and — because every finding names a fixCapability — hands the user a prioritized, actionable punch list instead of four separate reports. It fixes nothing itself; i...
10K
1592 convex-cost get-convex/agent-skills
Preview what this app will cost Cost surprises come from a handful of functions reading far more data than anyone realized — the same read-heavy patterns convex-advisor flags for perf, seen through the money lens. This capability makes spend legible: it reads the deployment's own bytes/documents-read evidence, attributes it to the functions driving it, projects how it grows with traffic, and names the cheapest fix. It also carries the confirm-cost discipline (Supabase's structural consent for pa...
10K
1593 convex-backup get-convex/agent-skills
Back up — and prove the restore works Every backup story has two halves and most people only do the first: taking the backup, and proving you can get it back. This capability does both — it sets up regular snapshot exports and then runs a RESTORE DRILL that actually recovers the data into a disposable preview and asserts it's intact. The drill reuses migrate-rehearse's exact primitives (snapshot export → preview deploy → snapshot import) pointed at recovery instead of a forward change, so the sa...
10K
1594 convex-seed get-convex/agent-skills
Seed / import data Populate tables via an internalMutation seed function (re-runnable) or npx convex import , matching the schema. Workflow For fixtures: write an internalMutation that inserts sample rows; run it with npx convex run . For bulk import: shape the data to the schema and use npx convex import . Make seeding idempotent (clear-then-insert or upsert) so re-running is safe. Verify row counts. Rules Seed via internalMutation or convex import, matching validators. Make seeding idempotent....
10K
1595 convex-domains get-convex/agent-skills
Set up a custom domain with your own provider Walk the user's own registrar through pointing their domain at the Convex app: identify the target (hosting or deployment URL), create the DNS records, attach the custom domain, and rebind the auth origin if the app uses auth. Workflow Identify the target: the published site host (for *.convex.app static hosting) or the deployment's HTTP actions URL. Detect an ALREADY-AUTHENTICATED DNS CLI for the user's provider and OFFER to create the records autom...
10K
1596 convex-billing get-convex/agent-skills
Add billing / payments Wire Stripe to Convex using @convex-dev/stripe: a checkout action, an httpAction webhook registered by the component (signature-verified automatically), subscription state stored in the component's tables, and server-side gating via a query. Workflow Show more Installs 934 Repository get-convex/agent-skills GitHub Stars 42 First Seen 2 days ago Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Warn
10K
1597 convex-improve-convex-plugin get-convex/agent-skills
improve-convex-plugin Sends the current coding session transcript to the anteater POST /review endpoint for an AI post-mortem. The review returns structured findings (ambiguous instructions, agent-stuck patterns, tooling failures, wins) targeted at the runbook, bootstrap script, skills, and components — not end-user data. Sharing is opt-in: the anteater-served helper asks once (Always / Just this once / Never) and remembers the choice. Workflow Run the anteater-served helper: curl -fsSL "<anteat...
10K
1598 convex-suggest get-convex/agent-skills
Proactively suggest the right Convex component When you see code or intent that duplicates what a Convex component already does, surface a targeted suggestion: ONE component, WHY (anchored in the user's own code or ask), and a concrete install hint. Never install without explicit consent. Never suggest more than one component at a time unless the user asks. Workflow Observe the codeSnippets and userAsk passively — never block the current task to suggest. Match against the detector rules (see gen...
10K
1599 convex-self-heal get-convex/agent-skills
Gated production self-healing loop Sentry/Datadog/Vercel can go error→investigate→draft-PR, but they treat the backend as opaque and stop at the human merge gate with an unverified diff. Convex can do the step they can't: because the error rows live in the user's own deployment and the fix can be rehearsed on a preview of that deployment, the platform certifies the fix against real invariants before anyone reviews it. This capability is the composition capstone — it wires sentinel (capture) → th...
10K
1600 convex-sentinel get-convex/agent-skills
Capture production errors in your own deployment Install @convex-dev/sentinel to capture production errors (server function failures, client JS/React crashes, OCC and scale signals) into a table in the user's OWN deployment, redacted at write time, then react to new ones. Data never leaves the user's deployment. Workflow Install the component: app.use(sentinel) in convex/convex.config.ts . Wire the client SDK: a React error boundary plus window.onerror / unhandledrejection and breadcrumbs. Redac...
10K