code-review
Installation
SKILL.md
Code review – Contentstack Management JavaScript SDK
When to use
- Reviewing someone else’s PR or self-review before submission.
- Verifying API surface, errors, compatibility, dependencies, security, and tests.
Instructions
Work through the checklist below. Optionally tag items with severity: Blocker, Major, Minor.
1. API design and stability
- Public API: New or changed public exports documented with JSDoc, consistent with
lib/contentstack.jsandlib/contentstackClient.js. - TypeScript surface:
types/**updated when signatures or exports change. - Backward compatibility: No breaking changes without explicit agreement (e.g. major version).
- Naming: CMA terminology and
lib/stack/patterns.
Severity: Breaking public API without approval = Blocker. Missing JSDoc/types on new public API = Major.