get-convex/agent-skills911 installs
convex-seed
Seed or import data into the Convex database.
How do I install this agent skill?
npx skills add https://github.com/get-convex/agent-skills --skill convex-seedIs this agent skill safe to install?
- Gen Agent Trust Hubpass
The skill provides guidelines for seeding data into a Convex database using the platform's official CLI tools. It follows security best practices by advising against the inclusion of secrets or personally identifiable information (PII) in shared environments.
- Socketpass
No alerts
- Snykpass
Risk: LOW · No issues
What does this agent skill do?
<!-- GENERATED from convex-agents content/capabilities/seed.json — do not edit by hand. -->
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.
- Never seed secrets/PII into a shared deployment.
How can the creator link this skill?
Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.
<a href="https://skillzs.dev/skills/get-convex/agent-skills/convex-seed">View convex-seed on skillZs</a>