Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问clear审计通过

backend-developer后端开发人员

Agent Skill

backend-developer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,659

周安装

154

GitHub Stars

76

下载量

1,281
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:backend-developer(后端开发人员)
来源仓库:https://github.com/404kidwiz/claude-supercode-skills
仓库路径:skills/backend-developer
安装命令:
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill backend-developer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill backend-developer

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。

  • 适用于需要快速理解项目结构、追踪代码变更或管理开发流程的场景。
  • 通过分析仓库内容、提交历史和协作动态,帮助 Agent 定位问题、生成报告或制定开发计划。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • 可结合来源仓库和原始 README 进一步核验具体用法和功能边界。

SKILL.md

Backend Developer Skill

Purpose

Provides comprehensive expertise in server-side application development across multiple frameworks, languages, and deployment strategies. Specializes in building scalable APIs, database design, authentication systems, and production-ready backend infrastructure.

When to Use

  • Building REST or GraphQL APIs
  • Designing database schemas and models
  • Implementing authentication and authorization
  • Setting up server infrastructure
  • Creating microservices or monolithic backends
  • Optimizing backend performance
  • Deploying server applications to production
  • Need multi-framework backend guidance (Express, FastAPI, Django, Spring)

Quick Start

Invoke this skill when:

  • Building server-side APIs (REST, GraphQL) in Node.js, Python, Java, or Go
  • Implementing authentication/authorization (JWT, OAuth2, session-based)
  • Designing database schemas and ORM integration
  • Setting up backend testing (unit, integration, E2E)
  • Implementing middleware (logging, validation, error handling)
  • Deploying backend services to Kubernetes, AWS, GCP, or Azure
  • Optimizing backend performance (caching, query optimization, rate limiting)

Do NOT invoke when:

  • Only frontend development needed → Use frontend-developer or nextjs-developer
  • Database-specific optimization required → Use database-optimizer or postgres-pro
  • API design without implementation → Use api-designer
  • GraphQL-specific architecture → Use graphql-architect
  • DevOps/infrastructure only → Use devops-engineer or cloud-architect

Framework Support

Node.js/TypeScript

  • Express.js, NestJS, Koa.js, Fastify

Python

  • FastAPI, Django, Flask, Tornado

Java

  • Spring Boot, Quarkus, Micronaut

Go

  • Gin, Echo, Fiber

Decision Framework

Backend Framework Selection

Backend Framework Selection
├─ JavaScript/TypeScript
│   ├─ Need rapid development + type safety → NestJS
│   ├─ Need lightweight/fast performance → Fastify
│   └─ Need simplicity + ecosystem → Express.js
│
├─ Python
│   ├─ Need async + high performance → FastAPI
│   └─ Need batteries-included → Django (+ DRF)
│
├─ Java
│   └─ Enterprise-ready → Spring Boot
│
└─ Go
    └─ High-performance services → Gin or Fiber

Authentication Strategy Matrix

ScenarioStrategyComplexitySecurity
Stateless API (mobile, SPA)JWTLowMedium
Third-party loginOAuth 2.0MediumHigh
Traditional web appSession-basedLowHigh
MicroservicesJWT + API GatewayHighHigh
Enterprise SSOSAML 2.0HighVery High

Database & ORM Selection

Database & ORM Decision
├─ Relational (SQL)
│   ├─ Node.js/TypeScript
│   │   ├─ Need type safety + migrations → Prisma
│   │   └─ Need flexibility → TypeORM or Sequelize
│   ├─ Python
│   │   ├─ Async required → Tortoise ORM or SQLModel
│   │   └─ Sync / Django → Django ORM or SQLAlchemy
│   └─ Java
│       └─ JPA (Hibernate) or jOOQ
│
└─ NoSQL
    ├─ Document store → MongoDB (Mongoose for Node.js)
    └─ Key-value → Redis (caching, sessions)

Best Practices

  1. Always validate input - Use provided validation middleware
  2. Handle errors gracefully - Use generated error handlers
  3. Write tests - Use test templates for consistency
  4. Use environment variables - Never hardcode secrets
  5. Implement logging - Use provided logging configuration
  6. Monitor performance - Set up metrics and alerts
  7. Security first - Use provided authentication setup
  8. Version your API - Follow versioning patterns
  9. Document your code - Generate API docs automatically
  10. Deploy safely - Use provided deployment scripts

Common Patterns

Repository Pattern

  • Separation of concerns
  • Easy testing
  • Swappable implementations

Service Layer

  • Centralized business rules
  • Transaction management
  • Error handling

Middleware Stack

  • Authentication
  • Authorization
  • Validation
  • Logging
  • Error handling

Troubleshooting

Common Issues

Database connection errors

  • Check connection string
  • Verify database is running
  • Check network connectivity
  • Review connection pool settings

Authentication failures

  • Verify JWT secret
  • Check token expiration
  • Validate token format
  • Review middleware order

Build failures

  • Check TypeScript configuration
  • Verify dependencies are installed
  • Review error messages
  • Check for syntax errors

Deployment issues

  • Verify Docker image builds
  • Check Kubernetes pods
  • Review logs
  • Verify environment variables

Quality Checklist

Security

  • Input validation on all endpoints (Zod/Joi)
  • Password hashing (bcrypt cost 10+ or Argon2)
  • SQL injection prevention (parameterized queries)
  • Rate limiting on auth endpoints
  • Security headers (Helmet.js)
  • Environment variables for secrets

Authentication & Authorization

  • Strong JWT secret (256-bit)
  • Short-lived access tokens (15min)
  • Refresh token rotation
  • Authorization checks on protected routes

Error Handling

  • Global error handler
  • Async error handling (express-async-errors)
  • Clear validation error messages
  • 404 handling for unknown endpoints

Performance

  • Database connection pooling
  • Query optimization (no N+1)
  • Caching (Redis for sessions, rate limiting)
  • Response compression (gzip/brotli)

Testing

  • Unit tests for services/repositories
  • Integration tests for API endpoints
  • >80% coverage for critical paths
  • Separate test database

Additional Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.96%
按下载量换算358

OpenCode

20.59%
按下载量换算264

windsurf

17.73%
按下载量换算227

Codex

12.27%
按下载量换算157

Cursor

7.79%
按下载量换算100

Gemini CLI

3.44%
按下载量换算44

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills