Agent skill · Backend & API

backend-api

> REST API tasarımı ve güvenlik best practices.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill backend-api-vuralserhat86-antigravity-agentic --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/api/backend-api-vuralserhat86-antigravity-agentic/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

--- name: backend_api router_kit: FullStackKit description: REST uygulama, validation, security headers, auth patterns. ⚠️ Kod yazarken kullan. API tasarımı/GraphQL için → api-design. metadata: skillport: category: development tags: [accessibility, api integration, backend, backend api, browser apis, client-side, components, css3, debugging, deployment, frameworks, frontend, fullstack, html5, javascript, libraries, node.js, npm, performance optimization, responsive design, seo, state management, testing, typescript, ui/ux, web development] - backend-database --- # 🌐 Backend API > REST API tasarımı ve güvenlik best practices. --- ## 📋 1. RESTful Endpoints ``` GET /api/v1/users # List GET /api/v1/users/:id # Get one POST /api/v1/users # Create PATCH /api/v1/users/:id # Partial update DELETE /api/v1/users/:id # Delete ``` ### HTTP Status Codes | Kod | Kullanım | |-----|----------| | 200 | GET, PATCH, PUT başarılı | | 201 | POST Created | | 204 | DELETE No Content | | 400 | Validation hatası | | 401 | Authentication gerekli | | 403 | Yetki yok | | 404 | Bulunamadı | | 429 | Rate limit | --- ## ✅ 2. Input Validation (Zod) ```typescript import { z } from 'zod'; const CreateUserSchema =

What's inside
Steps it walks through
  1. 📋 1. RESTful Endpoints
  2. HTTP Status Codes
  3. ✅ 2. Input Validation (Zod)
  4. 🔐 3. Güvenlik
  5. Security Headers
  6. JWT Authentication
  7. 📦 4. Response Format
  8. 🔗 İlgili Skill'ler
  9. 🔄 Workflow
  10. Aşama 1: Interface Design (Contract First)
  11. Aşama 2: Layered Implementation
  12. Aşama 3: Security & Hardening
  13. Kontrol Noktaları
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the backend-api skill do?

> REST API tasarımı ve güvenlik best practices.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill backend-api-vuralserhat86-antigravity-agentic --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going