tech-stack:add-typescript-best-practices

tech-stack:add-typescript-best-practices — an installable skill for AI agents, published by neolabhq/context-engineering-kit.

INSTALLATION
npx skills add https://github.com/neolabhq/context-engineering-kit --skill tech-stack:add-typescript-best-practices
Run in your project or agent environment. Adjust flags if your CLI version differs.

SKILL.md

$27

#### Library-First Approach

  • Common areas where libraries should be preferred:
  • Date/time manipulation → date-fns, dayjs
  • Form validation → joi, yup, zod
  • HTTP requests → axios, got
  • State management → Redux, MobX, Zustand
  • Utility functions → lodash, ramda

#### Code Quality

  • Use destructuring of objects where possible:
  • Instead of const name = user.name use const { name } = user
  • Instead of const result = await getUser(userId) use const { data: user } = await getUser(userId)
  • Instead of const parseData = (data) => data.name use const parseData = ({ name }) => name
  • Use ms package for time related configuration and environment variables, instead of multiplying numbers by 1000
BrowserAct

Let your agent run on any real-world website

Bypass CAPTCHA & anti-bot for free. Start local, scale to cloud.

Explore BrowserAct Skills →

Stop writing automation&scrapers

Install the CLI. Run your first Skill in 30 seconds. Scale when you're ready.

Start free
free · no credit card