Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

create-tech-stackcreate tech stack 搜索

Agent Skill

create-tech-stack 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

504

周安装

21

GitHub Stars

16,229

下载量

168
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/udecode/plate --skill create-tech-stack

简介

create-tech-stack 用于自动生成技术栈文档,涵盖语言、数据库、框架与部署环境信息。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境,适合新项目初始化与技术审计。
  • 自动检测现有配置并输出结构化文档,包含版本、依赖与推荐实践说明。
  • 安装前请确认权限范围、维护状态及是否会触发系统命令执行与文件读取操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Generate Tech Stack Documentation

User Request: $ARGUMENTS

Context

  • Project root:!pwd
  • Package.json: @package.json
  • Node version:!node --version 2>/dev/null || echo "Node.js not found"
  • TypeScript config: @tsconfig.json
  • Database schema:!ls -la prisma/schema.prisma 2>/dev/null || echo "No Prisma schema found"
  • Existing docs:!ls -la.agents/rules/*.md 2>/dev/null || echo "No docs yet"

Goal

Create comprehensive Tech Stack Documentation based on deep codebase analysis. Document all technologies, frameworks, libraries, development tools, deployment strategies, and implementation patterns with specific versions and configurations.

Process

1. Automated Technical Discovery

  • Parse package.json for all dependencies
  • Analyze configuration files (tsconfig, vite.config, next.config, etc.)
  • Detect database setup (Prisma, Drizzle, TypeORM, etc.)
  • Identify testing frameworks and tools
  • Scan for CI/CD configurations
  • Check deployment configurations

2. Deep Code Analysis

Examine codebase for:

  • Architecture Patterns: Monorepo structure, module organization
  • Framework Usage: Next.js app router vs pages, API routes
  • State Management: Zustand, Redux, Context API patterns
  • Styling Approach: Tailwind, CSS modules, styled-components
  • Type Safety: TypeScript strictness, validation libraries
  • API Design: REST, GraphQL, tRPC implementation
  • Authentication: Auth libraries and session management
  • Testing Strategy: Unit, integration, E2E test patterns

3. Interactive Technical Q&A

Ask 4-6 deployment and infrastructure questions:

  • Use numbered/lettered options
  • Focus on non-discoverable information
  • Gather hosting, monitoring, and workflow details

4. Generate Comprehensive Documentation

Create detailed tech stack document with:

  • Specific version numbers
  • Configuration examples
  • Command references
  • Architecture diagrams (when applicable)

5. Save and Organize

  • Create .agents/rules/ if needed
  • Save as 2-tech-stack.mdc

Technical Questions Template

🚀 Deployment & Infrastructure

1. Where is your application currently deployed?

a) Vercel - Next.js optimized hosting b) AWS - EC2, Lambda, or containerized c) Railway/Render - Modern PaaS providers d) Self-hosted - VPS or on-premise e) Other - Please specify f) Not deployed yet - Still in development

2. How is your database hosted?

a) Managed service (Supabase, PlanetScale, Neon, etc.) b) Cloud provider (AWS RDS, Google Cloud SQL, etc.) c) Self-hosted (Docker, VPS, etc.) d) Local only - No production database yet

📊 Monitoring & Operations

3. What observability tools do you use?

a) Error tracking: Sentry, Rollbar, Bugsnag b) Analytics: Vercel Analytics, Google Analytics, Plausible c) Monitoring: Datadog, New Relic, custom solution d) Logging: CloudWatch, LogTail, custom logs e) None yet - Planning to add later

👥 Development Workflow

4. What's your Git workflow?

a) Feature branches with PR reviews b) Trunk-based development c) GitFlow with release branches d) Direct to main (solo project)

5. How do you manage environments?

a) Multiple deployments (dev, staging, prod) b) Preview deployments for PRs c) Single production environment d) Local development only

🔐 Additional Services

6. Which external services do you integrate with?

  • Payment processing (Stripe, PayPal)
  • Email service (SendGrid, Resend, AWS SES)
  • File storage (S3, Cloudinary, UploadThing)
  • Authentication (Auth0, Clerk, Supabase Auth)
  • Search (Algolia, Elasticsearch)
  • Other APIs (please specify)

Document Structure

The generated document must follow this technical structure:

Overview

  • Brief description of the application's technical nature
  • Technology stack summary
  • Architecture approach (monolith, microservices, etc.)

Programming Language & Runtime

  • Primary programming language and version
  • Runtime environment and version
  • Type system and language features used

Frontend

  • UI Framework/Library and version
  • Styling approach and frameworks
  • Component libraries and design systems
  • State management solutions
  • Build tools and bundlers
  • Browser support and compatibility

Backend

  • Backend framework and architecture
  • API design (REST, GraphQL, tRPC, etc.)
  • Authentication and authorization
  • Middleware and security
  • File handling and uploads

Database & Storage

  • Database type and version
  • ORM/Query builder
  • Schema management and migrations
  • Caching solutions
  • File storage solutions
  • Data backup and recovery

Development Tools & Workflow

  • Package manager
  • Code formatting and linting
  • Type checking and compilation
  • Testing frameworks and strategies
  • Development server and hot reload
  • Version control workflow

Deployment & Infrastructure

  • Hosting platform and services
  • Build and deployment pipeline
  • Environment configuration
  • Domain and DNS management
  • SSL/TLS and security
  • Monitoring and logging

External Integrations

  • Third-party APIs and services
  • Payment processing
  • Email services
  • Analytics and tracking
  • Error monitoring
  • Performance monitoring

Quality Assurance & Testing

  • Testing strategy and frameworks
  • Code coverage tools
  • End-to-end testing
  • Performance testing
  • Security testing
  • Code review process

Schemas & Data Models

  • Database schema (if applicable)
  • API schemas and validation
  • Type definitions and interfaces
  • Data relationships and constraints

Target Audience

The document should serve:

  • Developers joining the project who need technical onboarding
  • DevOps engineers setting up infrastructure and deployment
  • Technical architects evaluating or improving the tech stack
  • Security teams understanding the technical landscape
  • Future maintainers who need to understand technical decisions

The language should be technical, precise, and include specific version numbers and configuration details.

Documentation Principles

DO Include:

  • Exact Versions: Lock file versions, not just ranges
  • Configuration Examples: Actual config snippets from the project
  • Command Reference: All npm scripts and their purposes
  • Setup Instructions: Step-by-step for new developers
  • Architecture Decisions: Why specific technologies were chosen
  • Integration Details: How services connect and communicate

DON'T Include:

  • Generic Descriptions: Avoid Wikipedia-style explanations
  • Outdated Information: Only document what's actually used
  • Wishful Thinking: Document current state, not future plans
  • Sensitive Data: No API keys, secrets, or credentials
  • Redundant Info: Link to official docs instead of copying

Output

  • Format: Markdown (.mdc)
  • Location: .agents/rules/
  • Filename: 2-tech-stack.mdc

Execution Steps

1. Automated Analysis Phase

# Extract key technical information
- Read package.json and lock files
- Scan for configuration files
- Detect framework patterns
- Identify database setup
- Find test configurations

2. Manual Discovery Phase

  • Read key source files to understand architecture
  • Check for API route patterns
  • Analyze authentication implementation
  • Review deployment configurations

3. Interactive Q&A

  • Present deployment and infrastructure questions
  • Use checkboxes for multi-select options
  • Wait for user responses

4. Document Generation

  • Start with discovered information
  • Incorporate user responses
  • Add specific configuration examples
  • Include all npm scripts with descriptions

5. Save and Update

# Create directory and save
mkdir -p docs
# Save to .agents/rules/2-tech-stack.mdc

6. Next Steps

  • Recommend: "Should I create an app design document to complement this technical documentation?"

Example Usage

# Basic usage
/project:create-tech-stack

# With specific focus
/project:create-tech-stack Focus on deployment and CI/CD setup

Sample Output Structure

# Tech Stack Documentation

## Overview

- **Framework:** Next.js 14.2.5 (App Router)
- **Language:** TypeScript 5.5.3
- **Database:** PostgreSQL with Prisma ORM
- **Deployment:** Vercel with preview deployments

## Commands Reference

### Development

- `pnpm dev` - Start Next.js dev server on port 3000
- `pnpm build` - Build production bundle
- `pnpm typecheck` - Run tsc --noEmit

### Database

- `pnpm db:generate` - Generate Prisma client
- `pnpm db:push` - Push schema changes to database

# ... continue with full documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.24%
按下载量换算59

Claude

29.77%
按下载量换算50

Cursor

17.68%
按下载量换算30

Gemini CLI

8.94%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills