codexplugin

Guide / best codex skills shipping

Best Codex skills for shipping & debugging

Preview deploys, platform deploy skills, and production error context — what to install when you need to ship and dig into failures.

00 — Intro

Shipping with Codex is more than “write the code.” You often need a deploy preview, a status check on the last release, and a clean path into production errors. Official plugins for Vercel and Sentry cover the integrations; deploy skills help when you want Codex to run the preview flow from the project directory.

This shortlist prioritizes tools that close the loop from commit to live URL to stack trace. Skip niche hosts until the core path works.

01 — Shortlist

  1. 01
    VercelPlugin

    Vercel ecosystem guidance and deployment context inside Codex

  2. 02

    Deploy a preview (or production on request) via CLI or fallback script

  3. 03
    SentryPlugin

    Inspect recent Sentry issues and events from Codex

  4. 04

    Workers, Pages, and Cloudflare platform deploy guidance

  5. 05

    Authenticate, link, and deploy preview or production on Netlify

  6. 06

    Read-only Sentry CLI workflows — list, explain, and plan fixes

02 — Recommended order

  1. 01

    Install the Vercel plugin for deployment and project context.

  2. 02

    Add a deploy skill (Vercel, Cloudflare, or Netlify) that matches your host.

  3. 03

    Install Sentry when you need unresolved issues and event detail.

  4. 04

    Verify with a deploy-status prompt, then a production-error prompt.

03 — Install & verify

Copy a command, run it, restart Codex, then try the verify prompt.

VercelPlugincoding

Default starting point for Next.js and Vercel-hosted apps. Use it to inspect recent deployments before you chase code bugs.

$ npx codex-marketplace add openai/plugins/plugins/vercel --plugin

Verify

List recent Vercel deployments and their status

Full detail page
Vercel DeploySkillcoding

Use when you ask Codex to “push a preview” or “give me a live link.” Prefer preview unless you explicitly want production.

$ npx codex-marketplace add openai/skills/skills/.curated/vercel-deploy --skill

Verify

Deploy this project to a Vercel preview and give me the URL

Full detail page
SentryPlugincoding

Add after deploy tooling works. Pair with a debugging skill when the same error keeps returning.

$ npx codex-marketplace add openai/plugins/plugins/sentry --plugin

Verify

Show recent Sentry errors for the production project

Full detail page

Choose this instead of (or alongside) Vercel when the project targets Cloudflare Workers or Pages.

$ npx codex-marketplace add openai/skills/skills/.curated/cloudflare-deploy --skill

Verify

Explain how to deploy this project to Cloudflare Pages or Workers

Full detail page
Netlify DeploySkillcoding

Use for Netlify-hosted sites when you need CLI-linked preview or production deploys.

$ npx codex-marketplace add openai/skills/skills/.curated/netlify-deploy --skill

Verify

Check Netlify auth status and deploy a preview for this project

Full detail page
Sentry SkillSkillcoding

Optional when you prefer CLI-shaped issue inspection on top of the Sentry plugin.

$ npx codex-marketplace add openai/skills/skills/.curated/sentry --skill

Verify

List the top unresolved production Sentry issues from the last 24 hours

Full detail page

04 — FAQ

Plugin or skill for Vercel — which first?

Install the Vercel plugin for ongoing project context. Add the vercel-deploy skill when you want Codex to run preview deploys from the repo.

Will these change production config?

Most flows are read-only or preview-first. Production deploys usually need an explicit ask. Follow each listing README for write permissions and environment scoping.

What about the Ship & debug use case?

Use that guide for a minimal install checklist. This page is the wider shortlist across hosts and skills.