The Skill recommends executing an unpinned package through `npx`
Source references: 1It recommends running `npx convex ai-files install`. `npx` may download and execute whatever package version resolves at that time, while the command supplies no version pin, integrity digest, or requirement to inspect package contents first. The installer also writes vendor-managed guidance files into the project.
At execution time, the published package code receives the file access available to the agent process and can leave files that persistently influence later agent behavior. If package resolution, the latest release, or the supply chain is compromised, the effect is broader than downloading documentation.
The command does not pin the `convex` package version or provide an integrity hash. If the recommendation is accepted and run, npx may download and execute the package resolved at that time, and the installer writes vendor-managed guidance files into the project. The line does not mandate automatic execution and does not show that installation occurred. A user can require a pinned version, verify the package source, and inspect proposed changes first.
- If the project has no Convex AI guidance installed (or it looks stale), recommend `npx convex ai-files install` first: it installs the managed, current Convex guideline files (see https://docs.convex.dev/ai).- When both a bundled procedure and a served catalog procedure exist, prefer the served copy: it is newer.