contentstack/kickstart-next · Archived

code-review

PR checklist and severity guidance for kickstart-next contributions.

First seen Jul 16, 2026

Installation

$ npx skills add contentstack/kickstart-next --skill code-review

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from contentstack/kickstart-next.

npx skills add contentstack/kickstart-next

Browse all from contentstack/kickstart-next

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 2
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,446 B
  • docs SUMMARY.md 87 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Code review – kickstart-next

When to use

  • Before you open a PR or when reviewing someone else’s changes.

Instructions

Checklist

  • Run npm run lint and npm run build locally (CI does not run these automatically).
  • Preview mode: confirm components/Preview.tsx and initLivePreview still behave; production path: confirm server getPage + Page render correctly for /.
  • If you add or rename environment variables, update .env.example and user-facing docs where needed.
  • No secrets in the repo; scan diffs for accidental tokens.
  • Rich text paths still sanitize HTML (isomorphic-dompurify) before dangerouslySetInnerHTML.
  • If new image hosts or CDNs appear, update next.config.mjs remotePatterns (and env-driven hostname if used).
  • Content/schema changes should be reflected in [lib/types.ts](../../lib/types.ts) and any Live Preview $ bindings in components.
  • Dependency changes: consider impact on Snyk / SCA workflows (see .github/workflows).

Severity (optional labels)

  • Blocker: security regression (XSS, token leak), broken preview or production home route, build or lint failure.
  • Major: incorrect Contentstack behavior, missing env documentation, type/schema drift that can break preview editing.
  • Minor: style, copy, non-user-facing refactors, small UX nits.