Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

tech-stack-recommender技术栈推荐器

Agent Skill

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

总安装

194

周安装

8

GitHub Stars

85

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alirezarezvani/claude-cto-team --skill tech-stack-recommender

简介

用于技术选型的调研、比较和推荐建议生成。

  • 适合根据项目规模、团队经验和性能需求匹配方案。
  • 可综合考虑生态成熟度和长期维护成本。
  • 使用前请确认是否接入权威技术基准数据。
  • 建议人工复核推荐结果的适用性。tech-stack-recommender 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Tech Stack Recommender

Provides structured recommendations for technology stack selection based on project requirements, team constraints, and business goals.

When to Use

  • Starting a new project and need stack recommendations
  • Evaluating technology options for specific use cases
  • Comparing frameworks or languages for a project
  • Assessing team readiness for a technology choice
  • Planning technology migrations

Stack Selection Framework

Decision Inputs

┌───────────────────────────────────────────────────────────────────┐
│                    STACK SELECTION INPUTS                         │
├───────────────────────────────────────────────────────────────────┤
│                                                                   │
│  Project Requirements     Team Factors        Business Constraints│
│  ────────────────────     ────────────        ──────────────────  │
│  • Scale expectations     • Current skills    • Time to market    │
│  • Performance needs      • Learning capacity • Budget            │
│  • Integration points     • Team size         • Hiring market     │
│  • Compliance/Security    • Experience level  • Long-term support │
│                                                                   │
└───────────────────────────────────────────────────────────────────┘
                              │
                              ▼
                    ┌─────────────────┐
                    │ RECOMMENDATION  │
                    │   Framework     │
                    └─────────────────┘

Quick Stack Recommendations

By Project Type

Project TypeFrontendBackendDatabaseWhy
SaaS MVPNext.jsNode.js/ExpressPostgreSQLFast iteration, full-stack JS
E-commerceNext.jsNode.js or PythonPostgreSQL + RedisSEO, caching, transactions
Mobile AppReact NativeNode.js/PythonPostgreSQLCross-platform, shared logic
Real-time AppReactNode.js + WebSocketPostgreSQL + RedisEvent-driven, low latency
Data PlatformReactPython/FastAPIPostgreSQL + ClickHouseData processing, analytics
EnterpriseReactJava/Spring or.NETPostgreSQL/OracleStability, enterprise support
ML ProductReactPython/FastAPIPostgreSQL + Vector DBML ecosystem, inference

By Team Profile

Team ProfileRecommended StackAvoid
Full-stack JSNext.js, Node.js, PostgreSQLGo, Rust (learning curve)
Python BackgroundFastAPI, React, PostgreSQLHeavy frontend frameworks
Enterprise JavaSpring Boot, React, PostgreSQLBleeding-edge tech
Startup (Speed)Next.js, Supabase/FirebaseComplex microservices
Scale-UpReact, Go/Node, PostgreSQLMonolithic frameworks

Technology Comparison Tables

Frontend Frameworks

FrameworkBest ForLearning CurveEcosystemHiring
ReactComplex UIs, SPAsMediumExcellentEasy
Next.jsFull-stack, SSR, SEOMediumExcellentEasy
Vue.jsSimpler apps, gradual adoptionEasyGoodMedium
SveltePerformance-criticalEasyGrowingHard
AngularEnterprise, large teamsHardGoodMedium

React vs Vue vs Angular

                Speed to MVP    Long-term Maint    Enterprise Ready
React           ████████░░      ████████░░         █████████░
Vue             █████████░      ███████░░          ██████░░░░
Angular         ██████░░░░      █████████░         ██████████

Backend Frameworks

FrameworkLanguageBest ForPerformanceEcosystem
ExpressNode.jsAPIs, real-timeGoodExcellent
FastifyNode.jsHigh-performance APIsExcellentGood
FastAPIPythonML APIs, asyncExcellentGood
DjangoPythonFull-featured appsGoodExcellent
Spring BootJavaEnterpriseGoodExcellent
Go (Gin/Echo)GoHigh performanceExcellentGood
RailsRubyRapid prototypingModerateGood
NestJSTypeScriptStructured Node appsGoodGood

When to Use What

## Node.js (Express/Fastify/NestJS)
✅ Real-time applications (WebSocket)
✅ I/O-heavy workloads
✅ Full-stack JavaScript teams
✅ Microservices
❌ CPU-intensive tasks
❌ Heavy computation

## Python (FastAPI/Django)
✅ ML/Data Science integration
✅ Rapid prototyping
✅ Data processing pipelines
✅ Scientific computing
❌ High-concurrency I/O
❌ Real-time systems

## Go
✅ High-performance services
✅ System programming
✅ Concurrent workloads
✅ Microservices at scale
❌ Rapid prototyping
❌ Complex ORM needs

## Java (Spring Boot)
✅ Enterprise applications
✅ Complex business logic
✅ Transaction-heavy systems
✅ Large teams
❌ Quick MVPs
❌ Small projects

Databases

DatabaseTypeBest ForScaleComplexity
PostgreSQLRelationalGeneral purpose, ACIDHighMedium
MySQLRelationalWeb apps, read-heavyHighLow
MongoDBDocumentFlexible schemas, JSONHighLow
RedisKey-ValueCaching, sessionsVery HighLow
ElasticsearchSearchFull-text searchHighMedium
ClickHouseColumnarAnalytics, time-seriesVery HighMedium
DynamoDBKey-ValueServerless, AWSVery HighMedium
CassandraWide-columnWrite-heavy, distributedVery HighHigh

Database Selection Guide

Need ACID transactions?
├── YES → PostgreSQL
│
└── NO → What's your primary use case?
    ├── General purpose → PostgreSQL (still!)
    ├── Document storage → MongoDB
    ├── Caching → Redis
    ├── Search → Elasticsearch
    ├── Analytics → ClickHouse/BigQuery
    ├── Time-series → TimescaleDB/InfluxDB
    └── Key-value at scale → DynamoDB/Cassandra

Infrastructure

PlatformBest ForComplexityCost
VercelNext.js, frontendVery Low$ - $$
RailwaySimple deploymentsLow$ - $$
RenderGeneral appsLow$ - $$
AWSEverything, scaleHigh$ - $$$$
GCPML/Data, KubernetesHigh$ - $$$$
AzureEnterprise,.NETHigh$ - $$$$
DigitalOceanSimple, affordableLow$
Fly.ioEdge, globalMedium$ - $$

Stack Templates

Template 1: Modern SaaS Startup

┌──────────────────────────────────────────────────────────────────┐
│                     MODERN SAAS STACK                            │
├──────────────────────────────────────────────────────────────────┤
│                                                                  │
│  FRONTEND          BACKEND            DATABASE                   │
│  ─────────         ───────            ────────                   │
│  Next.js 14        Node.js/Express    PostgreSQL                 │
│  TypeScript        TypeScript         Prisma ORM                 │
│  Tailwind CSS      REST/GraphQL       Redis (cache)              │
│                                                                  │
│  INFRASTRUCTURE    AUTH               PAYMENTS                   │
│  ──────────────    ────               ────────                   │
│  Vercel            Clerk/Auth0        Stripe                     │
│  AWS S3            NextAuth           Stripe Billing             │
│  Cloudflare CDN                                                  │
│                                                                  │
│  MONITORING        CI/CD              ANALYTICS                  │
│  ──────────        ─────              ─────────                  │
│  Sentry            GitHub Actions     PostHog/Amplitude          │
│  Datadog           Vercel Preview     Mixpanel                   │
│                                                                  │
└──────────────────────────────────────────────────────────────────┘

Best for: B2B SaaS, 0-1M users
Team size: 2-10 engineers
Time to MVP: 4-8 weeks

Template 2: E-Commerce Platform

┌──────────────────────────────────────────────────────────────────┐
│                   E-COMMERCE STACK                               │
├──────────────────────────────────────────────────────────────────┤
│                                                                  │
│  FRONTEND          BACKEND            DATABASE                   │
│  ─────────         ───────            ────────                   │
│  Next.js (SSR)     Node.js/Python     PostgreSQL                 │
│  TypeScript        GraphQL/REST       Redis                      │
│  Tailwind/Styled   Medusa/Custom      Elasticsearch              │
│                                                                  │
│  PAYMENTS          SHIPPING           INVENTORY                  │
│  ────────          ────────           ─────────                  │
│  Stripe            ShipStation        Custom/ERP                 │
│  PayPal            EasyPost           Webhook sync               │
│                                                                  │
│  CDN               SEARCH             QUEUE                      │
│  ───               ──────             ─────                      │
│  CloudFront        Algolia/Elastic    SQS/BullMQ                 │
│  Cloudflare        Typesense          Redis                      │
│                                                                  │
└──────────────────────────────────────────────────────────────────┘

Best for: D2C, Marketplace
Team size: 5-20 engineers
Time to MVP: 8-16 weeks

Template 3: ML-Powered Product

┌──────────────────────────────────────────────────────────────────┐
│                    ML PRODUCT STACK                              │
├──────────────────────────────────────────────────────────────────┤
│                                                                  │
│  FRONTEND          API                ML SERVING                 │
│  ─────────         ───                ──────────                 │
│  React/Next.js     FastAPI            TorchServe/Triton          │
│  TypeScript        Python             Docker/K8s                 │
│                    Pydantic           ONNX Runtime               │
│                                                                  │
│  DATABASE          VECTOR DB          FEATURE STORE              │
│  ────────          ─────────          ─────────────              │
│  PostgreSQL        Pinecone           Feast                      │
│  Redis             Weaviate           Redis                      │
│                    pgvector                                      │
│                                                                  │
│  ML OPS            TRAINING           MONITORING                 │
│  ─────             ────────           ──────────                 │
│  MLflow            SageMaker          Weights & Biases           │
│  Airflow           Vertex AI          Prometheus/Grafana         │
│                                                                  │
└──────────────────────────────────────────────────────────────────┘

Best for: AI products, recommendation systems
Team size: 5-15 engineers + ML team
Time to MVP: 12-24 weeks

Template 4: Real-Time Application

┌──────────────────────────────────────────────────────────────────┐
│                   REAL-TIME STACK                                │
├──────────────────────────────────────────────────────────────────┤
│                                                                  │
│  FRONTEND          BACKEND            REAL-TIME                  │
│  ─────────         ───────            ─────────                  │
│  React             Node.js            Socket.io                  │
│  TypeScript        Express/Fastify    WebSocket                  │
│                    TypeScript         Redis Pub/Sub              │
│                                                                  │
│  DATABASE          CACHE              MESSAGE QUEUE              │
│  ────────          ─────              ─────────────              │
│  PostgreSQL        Redis              Redis Streams              │
│  Prisma            In-memory          Kafka (scale)              │
│                                                                  │
│  PRESENCE          STATE SYNC         CONFLICT RESOLUTION        │
│  ────────          ──────────         ───────────────────        │
│  Redis             CRDT/OT            Yjs/Automerge              │
│  Custom            LiveBlocks         Custom                     │
│                                                                  │
└──────────────────────────────────────────────────────────────────┘

Best for: Chat, collaboration, gaming
Team size: 5-15 engineers
Time to MVP: 8-16 weeks

Technology Trade-off Analysis

Language Selection Matrix

FactorJavaScript/TSPythonGoJavaRust
Learning CurveLowLowMediumMediumHigh
EcosystemExcellentExcellentGoodExcellentGrowing
PerformanceGoodModerateExcellentGoodExcellent
Hiring PoolLargeLargeMediumLargeSmall
Type SafetyTS: GoodOptionalExcellentExcellentExcellent
Memory SafetyGCGCGCGCCompile-time

Framework Selection Criteria

## Evaluation Checklist

1. **Team Expertise** (Weight: 30%)
   - Current skills alignment?
   - Learning curve acceptable?
   - Training resources available?

2. **Project Requirements** (Weight: 30%)
   - Performance requirements met?
   - Feature set complete?
   - Scalability path clear?

3. **Ecosystem** (Weight: 20%)
   - Package availability?
   - Community size?
   - Third-party integrations?

4. **Long-term Viability** (Weight: 20%)
   - Active maintenance?
   - Corporate backing?
   - Future roadmap?

Anti-Patterns to Avoid

Technology Selection Red Flags

Anti-PatternWhy It's BadBetter Approach
Resume-DrivenChoosing tech for career, not projectMatch to requirements
Hype-DrivenPicking latest without evaluationProven over trendy
Comfort-OnlyOnly familiar tech even when unsuitableEvaluate objectively
Over-EngineeringComplex stack for simple needsStart simple
Under-EngineeringSimple tools for complex needsPlan for growth

Common Mistakes

❌ "Let's use microservices from day one"
   → Start monolith, extract later

❌ "We need Kubernetes for our 3-person startup"
   → Use managed platforms (Vercel, Railway)

❌ "MongoDB because NoSQL is modern"
   → PostgreSQL handles 95% of use cases better

❌ "GraphQL for everything"
   → REST is simpler for most APIs

❌ "Let's build our own auth"
   → Use Auth0, Clerk, or established solutions

Migration Considerations

When to Consider Migration

TriggerAction
Performance bottlenecksProfile first, then consider
Team expertise mismatchTrain or hire before migrating
End of life/supportPlan 6-12 months ahead
Scale limitationsValidate limits with benchmarks
Security vulnerabilitiesPatch if possible, migrate if not

Migration Risk Assessment

LOW RISK:
- Library/package updates
- Minor version upgrades
- Adding new services

MEDIUM RISK:
- Database version upgrades
- Framework major versions
- New deployment platform

HIGH RISK:
- Language/framework rewrites
- Database technology changes
- Monolith to microservices

Quick Reference

"I'm building a..."

ProjectRecommended Stack
Blog/CMSNext.js + Headless CMS (Sanity/Contentful)
SaaS DashboardNext.js + Node.js + PostgreSQL
Mobile AppReact Native + Node.js + PostgreSQL
E-commerceNext.js + Medusa/Custom + PostgreSQL
Real-time ChatReact + Node.js + Socket.io + Redis
Data DashboardReact + Python/FastAPI + PostgreSQL
ML ProductReact + Python/FastAPI + PostgreSQL + Vector DB
API ServiceNode.js or Python + PostgreSQL

Stack Complexity Levels

ComplexityDescriptionExample Stack
MinimalSingle deployment, managed servicesVercel + Supabase
SimpleSeparate frontend/backendVercel + Railway + PostgreSQL
StandardMultiple services, cachingAWS ECS + RDS + Redis
ComplexMicroservices, event-drivenK8s + Multiple DBs + Kafka

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.99%
按下载量换算21

Claude

28.45%
按下载量换算18

Cursor

19.74%
按下载量换算12

Gemini CLI

8.42%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills