Skills
Skill 13 of 33
Pull version-current Convex docs for the version this project uses — pin the installed version, fetch page-as-markdown or check node_modules types, freshness hierarchy — instead…
2 minutes · 458 words · 3 sections
Install
npx skills add get-convex/agent-skills --skill convex-docsnpx skills add get-convex/agent-skillsThe first command installs just this skill, by the name in its SKILL.md; the second installs the whole repository.
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.
33 skills · 70 min
convex version (node -p "require('./node_modules/convex/package.json').version" or package.json), and the versions of any @convex-dev/* components in play. The docs you trust must match THESE versions — version skew is the single largest source of wrong Convex code.search_convex_docs is available, use it (it returns version-scoped, reranked answers sized to the context window);
(b) else fetch the specific docs page as MARKDOWN — request docs.convex.dev/<path> and prefer a .md/markdown form when the site serves one (far fewer tokens than HTML), or the component's README at the pinned version;
(c) only then fall back to a general web search, and treat its version as unverified.
Do NOT skip to writing the API from memory when currentness is in doubt.node_modules/@convex-dev/<x>/ (its package.json exports, its .d.ts) — the installed types are the ground truth for THIS version, more authoritative than any doc.exports/.d.ts in node_modules is the ground truth for this version — more authoritative than any doc page.Pull version-current Convex docs for the version this project uses — pin the installed version, fetch page-as-markdown or check node_modules types, freshness hierarchy — instead of writing a possibly-stale API from memory.
The verbatim description from this skill’s front matter — the string an agent matches on to decide whether to load it.
main, last pushed 9 September 2026.SKILL.md, not by matching a directory convention. One layout observed: skills/*/SKILL.md.h1 and no skipped levels:/get-convex/agent-skills.md, and each skill at its own .md URL.