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

development开发

Agent Skill

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

总安装

2,376

周安装

101

GitHub Stars

35,680

下载量

832
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill development

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在需要围绕仓库状态或代码变更进行整理时使用。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。development 属于前端设计类 Skill,可作为该场景下的辅助能力补充。
  • 注意是否会触发联网、命令执行或文件读写操作。

SKILL.md

Development Workflow Bundle

Overview

Consolidated workflow for end-to-end software development covering web, mobile, and backend development. This bundle orchestrates skills for building production-ready applications from scaffolding to deployment.

When to Use This Workflow

Use this workflow when:

  • Building new web or mobile applications
  • Adding features to existing applications
  • Refactoring or modernizing legacy code
  • Setting up new projects with best practices
  • Full-stack feature development
  • Cross-platform application development

Workflow Phases

Phase 1: Project Setup and Scaffolding

Skills to Invoke

  • app-builder - Main application building orchestrator
  • senior-fullstack - Full-stack development guidance
  • environment-setup-guide - Development environment setup
  • concise-planning - Task planning and breakdown

Actions

  1. Determine project type (web, mobile, full-stack)
  2. Select technology stack
  3. Scaffold project structure
  4. Configure development environment
  5. Set up version control and CI/CD

Copy-Paste Prompts

Use @app-builder to scaffold a new React + Node.js full-stack application
Use @senior-fullstack to set up a Next.js 14 project with App Router
Use @environment-setup-guide to configure my development environment

Phase 2: Frontend Development

Skills to Invoke

  • frontend-developer - React/Next.js component development
  • frontend-design - UI/UX design implementation
  • react-patterns - Modern React patterns
  • typescript-pro - TypeScript best practices
  • tailwind-patterns - Tailwind CSS styling
  • nextjs-app-router-patterns - Next.js 14+ patterns

Actions

  1. Design component architecture
  2. Implement UI components
  3. Set up state management
  4. Configure routing
  5. Apply styling and theming
  6. Implement responsive design

Copy-Paste Prompts

Use @frontend-developer to create a dashboard component with React and TypeScript
Use @react-patterns to implement proper state management with Zustand
Use @tailwind-patterns to style components with a consistent design system

Phase 3: Backend Development

Skills to Invoke

  • backend-architect - Backend architecture design
  • backend-dev-guidelines - Backend development standards
  • nodejs-backend-patterns - Node.js/Express patterns
  • fastapi-pro - FastAPI development
  • api-design-principles - REST/GraphQL API design
  • auth-implementation-patterns - Authentication implementation

Actions

  1. Design API architecture
  2. Implement REST/GraphQL endpoints
  3. Set up database connections
  4. Implement authentication/authorization
  5. Configure middleware
  6. Set up error handling

Copy-Paste Prompts

Use @backend-architect to design a microservices architecture for my application
Use @nodejs-backend-patterns to create Express.js API endpoints
Use @auth-implementation-patterns to implement JWT authentication

Phase 4: Database Development

Skills to Invoke

  • database-architect - Database design
  • database-design - Schema design principles
  • prisma-expert - Prisma ORM
  • postgresql - PostgreSQL optimization
  • neon-postgres - Serverless Postgres

Actions

  1. Design database schema
  2. Create migrations
  3. Set up ORM
  4. Optimize queries
  5. Configure connection pooling

Copy-Paste Prompts

Use @database-architect to design a normalized schema for an e-commerce platform
Use @prisma-expert to set up Prisma ORM with TypeScript

Phase 5: Testing

Skills to Invoke

  • test-driven-development - TDD workflow
  • javascript-testing-patterns - Jest/Vitest testing
  • python-testing-patterns - pytest testing
  • e2e-testing-patterns - Playwright/Cypress E2E
  • playwright-skill - Browser automation testing

Actions

  1. Write unit tests
  2. Create integration tests
  3. Set up E2E tests
  4. Configure CI test runners
  5. Achieve coverage targets

Copy-Paste Prompts

Use @test-driven-development to implement features with TDD
Use @playwright-skill to create E2E tests for critical user flows

Phase 6: Code Quality and Review

Skills to Invoke

  • code-reviewer - AI-powered code review
  • clean-code - Clean code principles
  • lint-and-validate - Linting and validation
  • security-scanning-security-sast - Static security analysis

Actions

  1. Run linters and formatters
  2. Perform code review
  3. Fix code quality issues
  4. Run security scans
  5. Address vulnerabilities

Copy-Paste Prompts

Use @code-reviewer to review my pull request
Use @lint-and-validate to check code quality

Phase 7: Build and Deployment

Skills to Invoke

  • deployment-engineer - Deployment orchestration
  • docker-expert - Containerization
  • vercel-deployment - Vercel deployment
  • github-actions-templates - CI/CD workflows
  • cicd-automation-workflow-automate - CI/CD automation

Actions

  1. Create Dockerfiles
  2. Configure build pipelines
  3. Set up deployment workflows
  4. Configure environment variables
  5. Deploy to production

Copy-Paste Prompts

Use @docker-expert to containerize my application
Use @vercel-deployment to deploy my Next.js app to production
Use @github-actions-templates to set up CI/CD pipeline

Technology-Specific Workflows

React/Next.js Development

Skills: frontend-developer, react-patterns, nextjs-app-router-patterns, typescript-pro, tailwind-patterns

Python/FastAPI Development

Skills: fastapi-pro, python-pro, python-patterns, pydantic-models-py

Node.js/Express Development

Skills: nodejs-backend-patterns, javascript-pro, typescript-pro, express (via nodejs-backend-patterns)

Full-Stack Development

Skills: senior-fullstack, app-builder, frontend-developer, backend-architect, database-architect

Mobile Development

Skills: mobile-developer, react-native-architecture, flutter-expert, ios-developer

Quality Gates

Before moving to next phase, verify:

  • All tests passing
  • Code review completed
  • Security scan passed
  • Linting/formatting clean
  • Documentation updated

Related Workflow Bundles

  • wordpress - WordPress-specific development
  • security-audit - Security testing workflow
  • testing-qa - Comprehensive testing workflow
  • documentation - Documentation generation workflow

Limitations

  • Use this skill only when the task clearly matches the scope described above.
  • Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
  • Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.43%
按下载量换算320

Claude

30.65%
按下载量换算255

Cursor

17.24%
按下载量换算143

Gemini CLI

10.24%
按下载量换算85

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills