
Javascript Style
- 2 installs
- 4 repo stars
- Updated August 3, 2026
- contentstack/contentstack-management-javascript
Helps with ai & agent building tasks.
About
javascript-style is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- javascript-style
- AI & Agent Building
- AI-coding skill
Javascript Style by the numbers
- 2 all-time installs (skills.sh)
- Ranked #13,958 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/contentstack/contentstack-management-javascript --skill javascript-styleAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2 |
|---|---|
| repo stars | ★ 4 |
| Last updated | August 3, 2026 |
| Repository | contentstack/contentstack-management-javascript ↗ |
What it does
Helps with ai & agent building tasks.
Files
JavaScript & types – Contentstack Management JavaScript SDK
When to use
- Editing `lib//.js`, `webpack//.js
**, **types/`, or root *`.mjs`**. - Matching ESLint standard style and public JSDoc for npm consumers.
Instructions
Runtime & modules
- Source is ES modules under `lib/` (
import/export). Builds target Node and browsers via Babel + Webpack (package.jsonscripts). - `types/` holds public TypeScript declarations for npm; keep aligned with `lib/` JSDoc and exports.
Style & tooling
- ESLint uses `eslint-config-standard` and `@babel/eslint-parser`; match semicolon-free standard style and two-space indentation as in existing `lib/` files.
- Environment: ESLint
es2020; `test//.js` may relax rules via `overrides` in `.eslintrc.js`*.
Patterns
- Prefer named exports where the codebase already does; default exports for factories (
contentstackClient, HTTP client factory). - JSDoc (
@memberof,@func,@param,@returns,@example) on public API, consistent with `lib/contentstack.js` and `lib/contentstackClient.js`. - Dependencies: `lodash`, `axios`, `qs`, `@contentstack/utils` — follow existing import paths (including `.js` suffixes where used).
Logging
- Avoid noisy `console.log` in library code except via existing `logHandler` / patterns in `lib/core/contentstackHTTPClient.js`.
- Never log full authtoken, management tokens, or passwords.
Related skills
AI & Agent Buildingagents