·api-security-best-practices
!

api-security-best-practices

sickn33/antigravity-awesome-skills

Implement secure API design patterns including authentication, authorization, input validation, rate limiting, and protection against common API vulnerabilities

1.1KInstalls·40Trend·@sickn33

Installation

$npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill api-security-best-practices

SKILL.md

Guide developers in building secure APIs by implementing authentication, authorization, input validation, rate limiting, and protection against common vulnerabilities. This skill covers security patterns for REST, GraphQL, and WebSocket APIs.

Problem: JWT Secret Exposed in Code Symptoms: JWT secret hardcoded or committed to Git Solution: \\\`javascript // ❌ Bad const JWTSECRET = 'my-secret-key';

// ✅ Good const JWTSECRET = process.env.JWTSECRET; if (!JWTSECRET) { throw new Error('JWTSECRET environment variable is required'); }

Implement secure API design patterns including authentication, authorization, input validation, rate limiting, and protection against common API vulnerabilities Source: sickn33/antigravity-awesome-skills.

View raw

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill api-security-best-practices
Category
!Security
Verified
First Seen
2026-02-01
Updated
2026-02-18

Quick answers

What is api-security-best-practices?

Implement secure API design patterns including authentication, authorization, input validation, rate limiting, and protection against common API vulnerabilities Source: sickn33/antigravity-awesome-skills.

How do I install api-security-best-practices?

Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill api-security-best-practices Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor

Where is the source repository?

https://github.com/sickn33/antigravity-awesome-skills