Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

technology-stack-blueprint-generator技术栈蓝图生成器

Agent Skill

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

总安装

197,880

周安装

8,538

GitHub Stars

31,662

下载量

69,360
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/github/awesome-copilot --skill technology-stack-blueprint-generator

简介

分析代码库以生成带有架构文档的详细技术堆栈蓝图。

  • 支持跨多个平台(.NET、Java、JavaScript、React、Python)自动检测或集中分析指定技术类型
  • 可配置的深度级别(从基础到实施就绪),具有可选版本信息、许可详细信息、使用模式和编码约定
  • 生成架构图、技术关系图和数据流可视化以记录组件交互
  • 生成可实施的模板、代码片段和集成清单,以指导整个代码库的一致开发
  • 按技术类型、层或用途组织的多种格式(Markdown、JSON、YAML、HTML)输出

SKILL.md

Comprehensive Technology Stack Blueprint Generator

Configuration Variables

${PROJECT_TYPE="Auto-detect|.NET|Java|JavaScript|React.js|React Native|Angular|Python|Other"} ${DEPTH_LEVEL="Basic|Standard|Comprehensive|Implementation-Ready"} ${INCLUDE_VERSIONS=true|false} ${INCLUDE_LICENSES=true|false} ${INCLUDE_DIAGRAMS=true|false} ${INCLUDE_USAGE_PATTERNS=true|false} ${INCLUDE_CONVENTIONS=true|false} ${OUTPUT_FORMAT="Markdown|JSON|YAML|HTML"} ${CATEGORIZATION="Technology Type|Layer|Purpose"}

Generated Prompt

"Analyze the codebase and generate a ${DEPTH_LEVEL} technology stack blueprint that thoroughly documents technologies and implementation patterns to facilitate consistent code generation. Use the following approach:

1. Technology Identification Phase

  • ${PROJECT_TYPE == "Auto-detect"? "Scan the codebase for project files, configuration files, and dependencies to determine all technology stacks in use": "Focus on ${PROJECT_TYPE} technologies"}
  • Identify all programming languages by examining file extensions and content
  • Analyze configuration files (package.json,.csproj, pom.xml, etc.) to extract dependencies
  • Examine build scripts and pipeline definitions for tooling information
  • ${INCLUDE_VERSIONS? "Extract precise version information from package files and configuration": "Skip version details"}
  • ${INCLUDE_LICENSES? "Document license information for all dependencies": ""}

2. Core Technologies Analysis

${PROJECT_TYPE == ".NET" || PROJECT_TYPE == "Auto-detect"? "####.NET Stack Analysis (if detected)

  • Target frameworks and language versions (detect from project files)
  • All NuGet package references with versions and purpose comments
  • Project structure and organization patterns
  • Configuration approach (appsettings.json, IOptions, etc.)
  • Authentication mechanisms (Identity, JWT, etc.)
  • API design patterns (REST, GraphQL, minimal APIs, etc.)
  • Data access approaches (EF Core, Dapper, etc.)
  • Dependency injection patterns
  • Middleware pipeline components": ""}

${PROJECT_TYPE == "Java" || PROJECT_TYPE == "Auto-detect"? "#### Java Stack Analysis (if detected)

  • JDK version and core frameworks
  • All Maven/Gradle dependencies with versions and purpose
  • Package structure organization
  • Spring Boot usage and configurations
  • Annotation patterns
  • Dependency injection approach
  • Data access technologies (JPA, JDBC, etc.)
  • API design (Spring MVC, JAX-RS, etc.)": ""}

${PROJECT_TYPE == "JavaScript" || PROJECT_TYPE == "Auto-detect"? "#### JavaScript Stack Analysis (if detected)

  • ECMAScript version and transpiler settings
  • All npm dependencies categorized by purpose
  • Module system (ESM, CommonJS)
  • Build tooling (webpack, Vite, etc.) with configuration
  • TypeScript usage and configuration
  • Testing frameworks and patterns": ""}

${PROJECT_TYPE == "React.js" || PROJECT_TYPE == "Auto-detect"? "#### React Analysis (if detected)

  • React version and key patterns (hooks vs class components)
  • State management approach (Context, Redux, Zustand, etc.)
  • Component library usage (Material-UI, Chakra, etc.)
  • Routing implementation
  • Form handling strategies
  • API integration patterns
  • Testing approach for components": ""}

${PROJECT_TYPE == "Python" || PROJECT_TYPE == "Auto-detect"? "#### Python Analysis (if detected)

  • Python version and key language features used
  • Package dependencies and virtual environment setup
  • Web framework details (Django, Flask, FastAPI)
  • ORM usage patterns
  • Project structure organization
  • API design patterns": ""}

3. Implementation Patterns & Conventions

${INCLUDE_CONVENTIONS? "Document coding conventions and patterns for each technology area:

Naming Conventions

  • Class/type naming patterns
  • Method/function naming patterns
  • Variable naming conventions
  • File naming and organization conventions
  • Interface/abstract class patterns

Code Organization

  • File structure and organization
  • Folder hierarchy patterns
  • Component/module boundaries
  • Code separation and responsibility patterns

Common Patterns

  • Error handling approaches
  • Logging patterns
  • Configuration access
  • Authentication/authorization implementation
  • Validation strategies
  • Testing patterns": ""}

4. Usage Examples

${INCLUDE_USAGE_PATTERNS? "Extract representative code examples showing standard implementation patterns:

API Implementation Examples

  • Standard controller/endpoint implementation
  • Request DTO pattern
  • Response formatting
  • Validation approach
  • Error handling

Data Access Examples

  • Repository pattern implementation
  • Entity/model definitions
  • Query patterns
  • Transaction handling

Service Layer Examples

  • Service class implementation
  • Business logic organization
  • Cross-cutting concerns integration
  • Dependency injection usage

UI Component Examples (if applicable)

  • Component structure
  • State management pattern
  • Event handling
  • API integration pattern": ""}

5. Technology Stack Map

${DEPTH_LEVEL == "Comprehensive" || DEPTH_LEVEL == "Implementation-Ready"? "Create a comprehensive technology map including:

Core Framework Usage

  • Primary frameworks and their specific usage in the project
  • Framework-specific configurations and customizations
  • Extension points and customizations

Integration Points

  • How different technology components integrate
  • Authentication flow between components
  • Data flow between frontend and backend
  • Third-party service integration patterns

Development Tooling

  • IDE settings and conventions
  • Code analysis tools
  • Linters and formatters with configuration
  • Build and deployment pipeline
  • Testing frameworks and approaches

Infrastructure

  • Deployment environment details
  • Container technologies
  • Cloud services utilized
  • Monitoring and logging infrastructure": ""}

6. Technology-Specific Implementation Details

${PROJECT_TYPE == ".NET" || PROJECT_TYPE == "Auto-detect"? "####.NET Implementation Details (if detected)

  • Dependency Injection Pattern:

- Service registration approach (Scoped/Singleton/Transient patterns) - Configuration binding patterns

  • Controller Patterns:

- Base controller usage - Action result types and patterns - Route attribute conventions - Filter usage (authorization, validation, etc.)

  • Data Access Patterns:

- ORM configuration and usage - Entity configuration approach - Relationship definitions - Query patterns and optimization approaches

  • API Design Patterns (if used):

- Endpoint organization - Parameter binding approaches - Response type handling

  • Language Features Used:

- Detect specific language features from code - Identify common patterns and idioms - Note any specific version-dependent features": ""}

${PROJECT_TYPE == "React.js" || PROJECT_TYPE == "Auto-detect"? "#### React Implementation Details (if detected)

  • Component Structure:

- Function vs class components - Props interface definitions - Component composition patterns

  • Hook Usage Patterns:

- Custom hook implementation style - useState patterns - useEffect cleanup approaches - Context usage patterns

  • State Management:

- Local vs global state decisions - State management library patterns - Store configuration - Selector patterns

  • Styling Approach:

- CSS methodology (CSS modules, styled-components, etc.) - Theme implementation - Responsive design patterns": ""}

7. Blueprint for New Code Implementation

${DEPTH_LEVEL == "Implementation-Ready"? "Based on the analysis, provide a detailed blueprint for implementing new features:

  • File/Class Templates: Standard structure for common component types
  • Code Snippets: Ready-to-use code patterns for common operations
  • Implementation Checklist: Standard steps for implementing features end-to-end
  • Integration Points: How to connect new code with existing systems
  • Testing Requirements: Standard test patterns for different component types
  • Documentation Requirements: Standard doc patterns for new features": ""}

${INCLUDE_DIAGRAMS? "### 8. Technology Relationship Diagrams

  • Stack Diagram: Visual representation of the complete technology stack
  • Dependency Flow: How different technologies interact
  • Component Relationships: How major components depend on each other
  • Data Flow: How data flows through the technology stack": ""}

${INCLUDE_DIAGRAMS? "9": "8"}. Technology Decision Context

  • Document apparent reasons for technology choices
  • Note any legacy or deprecated technologies marked for replacement
  • Identify technology constraints and boundaries
  • Document technology upgrade paths and compatibility considerations

Format the output as ${OUTPUT_FORMAT} and categorize technologies by ${CATEGORIZATION}.

Save the output as 'Technology_Stack_Blueprint.${OUTPUT_FORMAT == "Markdown"? "md": OUTPUT_FORMAT.toLowerCase()}' "

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.72%
按下载量换算25,469

Claude

28.17%
按下载量换算19,539

Cursor

19.9%
按下载量换算13,803

Gemini CLI

9.55%
按下载量换算6,624

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills