Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问clear审计异常

fullstack-developer全栈开发人员

Agent Skill

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

总安装

4,796

周安装

194

GitHub Stars

76

下载量

1,505
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

fullstack-developer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中整理仓库状态和协作事项。

  • 适用于需要跟踪项目进度或管理协作流程的场景。
  • 通过安装命令从指定仓库添加技能,可结合原始 README 核验用法。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的数据操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Fullstack Developer Skill

Purpose

Provides end-to-end full-stack development expertise spanning frontend and backend technologies with focus on seamless integration, complete feature ownership, and system-level architecture. Specializes in building complete applications from database to UI with modern web technologies.

When to Use

  • Building complete features end-to-end (database → API → frontend)
  • Integrating frontend and backend systems (REST/GraphQL APIs, WebSockets)
  • Implementing authentication and authorization across the stack
  • Designing and implementing full-stack architectures (monoliths, microservices)
  • Optimizing performance across frontend-backend boundaries
  • Debugging complex issues spanning multiple layers of the stack
  • Building full-stack applications with React/Vue + Node.js/Python/Go

Core Capabilities

Frontend Development

  • Building React, Vue, or other modern frontend applications
  • Implementing component architectures and design patterns
  • Managing state with Redux, Context, or other solutions
  • Creating responsive and accessible user interfaces

Backend Development

  • Developing APIs with Node.js, Python, Go, or other backends
  • Managing database design and ORM usage
  • Implementing authentication and authorization systems
  • Handling file uploads, streaming, and server-side processing

Full-Stack Integration

  • Connecting frontend and backend systems seamlessly
  • Managing API contracts and version compatibility
  • Implementing real-time features (WebSockets, Server-Sent Events)
  • Optimizing performance across the full stack

DevOps and Deployment

  • Setting up CI/CD pipelines for full-stack applications
  • Managing containerization with Docker and Kubernetes
  • Configuring cloud infrastructure and deployment strategies
  • Monitoring and troubleshooting production issues

Quick Start

Invoke When

  • User needs complete feature implementation from database to UI
  • Task involves frontend-backend communication or integration
  • Building or debugging full-stack applications
  • Need architecture decisions spanning multiple layers

Don't Invoke When

  • Task is purely frontend (use react-specialist or vue-expert)
  • Task is purely backend API (use backend-developer)
  • Task is infrastructure-focused (use devops-engineer)
  • Task is database-specific (use database-optimizer)

Decision Framework

Architecture Patterns

Building new application?
│
├─ Team size < 5 developers?
│  │
│  ├─ YES → **Monolith** ✓
│  │        (simpler deployment, faster development)
│  │
│  └─ NO → Clear service boundaries exist?
│           │
│           ├─ YES → **Microservices** ✓
│           │        (team autonomy, independent scaling)
│           │
│           └─ NO → **Modular Monolith** ✓
│                    (monolith benefits + future flexibility)
│
└─ Integrating with existing system?
    │
    └─ Use **API Gateway Pattern** for consistent interface

Frontend-Backend Communication

PatternUse WhenAvoid When
REST APICRUD operations, simple data fetchingComplex nested data, real-time needs
GraphQLComplex data requirements, mobile appsSimple APIs, caching is critical
WebSocketsReal-time updates, chat, live feedsOne-time data fetches
Server-Sent EventsServer-to-client streaming onlyBidirectional communication needed

State Management Decision

Application complexity?
│
├─ Simple (< 5 components sharing state)
│  └─ **React Context / Vue provide/inject** ✓
│
├─ Medium (multiple feature modules)
│  └─ **Zustand / Pinia** ✓
│
└─ Complex (large team, strict requirements)
   └─ **Redux Toolkit / Vuex** ✓

Architecture Patterns and Methodologies

Fullstack Integration Patterns

  • API-First Development: Design contracts before implementation
  • Component-Driven Architecture: Reusable UI and backend components
  • Service Layer Pattern: Business logic separation
  • Repository Pattern: Data access abstraction
  • State Management: Frontend state consistency strategies

Frontend Architecture

  • Component Architecture: Atomic design, feature-based organization
  • State Management: Redux, MobX, Context API, Vuex
  • Routing Patterns: Client-side routing and navigation guards
  • Form Handling: Validation, submission, and error management
  • Performance Optimization: Code splitting, lazy loading, caching

Backend Architecture

  • RESTful API Design: Resource-oriented endpoints
  • GraphQL Integration: Flexible data fetching
  • Authentication & Authorization: JWT, OAuth2, session management
  • Data Validation: Request validation and sanitization
  • Error Handling: Consistent error responses and logging

Best Practices

Fullstack Development

  • API Design: RESTful conventions with OpenAPI documentation
  • State Management: Centralized state with proper data flow
  • Error Handling: Consistent error responses, proper HTTP status codes
  • Security: Input validation, SQL injection prevention, XSS protection
  • Performance: Caching strategies, query optimization, code splitting

Frontend Excellence

  • Component Design: Reusable, composable components with clear interfaces
  • State Management: Predictable state updates, proper data flow
  • Accessibility: WCAG 2.1 compliance, keyboard navigation, screen reader support
  • Testing: Unit tests, integration tests, E2E tests with good coverage
  • Performance: Optimized bundle size, lazy loading, image optimization

Backend Excellence

  • API Design: Consistent patterns, proper versioning, deprecation strategies
  • Database: Proper indexing, query optimization, connection pooling
  • Security: Authentication, authorization, input validation, rate limiting
  • Monitoring: Logging, metrics, tracing, alerting
  • Scalability: Horizontal scaling, load balancing, caching strategies

DevOps Integration

  • CI/CD: Automated testing, building, and deployment pipelines
  • Infrastructure as Code: Terraform or CloudFormation for infrastructure
  • Containerization: Docker for consistent environments
  • Monitoring: Prometheus, Grafana for metrics and alerting
  • Documentation: API docs, runbooks, architecture diagrams

Collaboration and Workflow

  • Code Review: Meaningful reviews, constructive feedback
  • Documentation: Clear README, contributing guide, code comments
  • Version Control: Meaningful commits, branch strategy, PR workflow
  • Testing Strategy: Test pyramid with appropriate coverage
  • Communication: Clear requirements, regular syncs, async updates

Additional Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.55%
按下载量换算445

OpenCode

22.58%
按下载量换算340

Antigravity

19.56%
按下载量换算294

Codex

14.21%
按下载量换算214

Gemini CLI

7.97%
按下载量换算120

Cursor

3.74%
按下载量换算56

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills