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

better-t-stack更好的堆栈

Agent Skill

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

总安装

432

周安装

18

GitHub Stars

4

下载量

144
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dimitrigilbert/ai-skills --skill better-t-stack

简介

现代 CLI 工具,用于搭建端到端类型安全的 TypeScript 全栈项目脚手架。

  • 支持自定义配置前端、后端、数据库、ORM、认证等组件组合。
  • 提供增量添加功能模块与部署配置的能力,简化新项目启动流程。
  • 使用前应确认目标技术栈是否在支持范围内,避免不兼容组合报错。
  • better-t-stack 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Better-T-Stack

Better-T-Stack is a modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with customizable configurations. This skill provides expert guidance for using it effectively.

When to Use This Skill

Use this skill when:

  • Creating a new TypeScript project with frontend, backend, database, ORM, auth, or addons
  • Adding features (addons, deployment config) to an existing Better-T-Stack project
  • Troubleshooting compatibility issues between stack components
  • Deciding on the right stack combination for a project's needs
  • Understanding CLI options and their interactions

Quick Start

Interactive Mode

npx create-better-t-stack@latest

Follow the prompts to choose your stack interactively.

Non-Interactive (Recommended for Agents)

npx create-better-t-stack@latest my-project \
  --frontend tanstack-router \
  --backend hono \
  --database sqlite \
  --orm drizzle \
  --auth better-auth \
  --addons turborepo \
  --yes

Add to Existing Project

cd my-existing-project
npx create-better-t-stack@latest add --addons pwa biome --install

Key Commands

create - Create new project

create-better-t-stack [project-directory] [options]

Core flags:

  • --template [template]: Use predefined stack (choices: "mern", "pern", "t3", "uniwind", "none")
  • --frontend <type>: tanstack-router, next, react-router, nuxt, svelte, solid, astro, native-uniwind, native-nativewind, none
  • --backend <type>: hono, express, fastify, elysia, convex, self, none
  • --database <type>: sqlite, postgres, mysql, mongodb, none
  • --orm <type>: drizzle, prisma, mongoose, none
  • --auth <provider>: better-auth, clerk, none
  • --api <type>: trpc, orpc, none
  • --addons <types...>: pwa, tauri, biome, turborepo, starlight, fumadocs, etc.
  • --yes: Use defaults, skip prompts (RECOMMENDED for automation)
  • --yolo: Bypass all validations (use with caution)

add - Add to existing project

create-better-t-stack add [options]

Used in project directory with bts.jsonc. Supports adding addons and deployment configs.

Critical Compatibility Rules

Must-Have Pairings

  • Database + ORM: Always required together (both must be non-none)
  • MongoDB: Requires prisma or mongoose (not drizzle)
  • Workers runtime: Requires hono backend, drizzle or prisma ORM, SQLite database

Single-Selection Constraints

  • Web frameworks: Only one allowed (tanstack-router, next, etc.)
  • Native frameworks: Only one allowed (native-uniwind or native-nativewind)
  • Backend: Only one allowed
  • Database: Only one allowed
  • ORM: Only one allowed

API Compatibility

  • tRPC: Not supported with nuxt, svelte, solid, or astro frontends (use oRPC instead)
  • oRPC: Works with all frontends

Frontend + Backend Rules

  • Web + Native: Can combine one web + one native
  • Self backend (fullstack): Only supports next, tanstack-start, nuxt, and astro
  • Convex backend: Not compatible with solid or astro frontends

Cloudflare Workers Constraints

--runtime workers REQUIRES:
  backend: hono (only)
  orm: drizzle or prisma (no mongoose)
  database: sqlite only (no postgres, mysql, mongodb)
  db-setup: d1 only (no docker)

Addon Compatibility

Some addons require specific frontends:

  • PWA: Requires tanstack-router, react-router, solid, or next
  • Tauri: Requires tanstack-router, react-router, nuxt, svelte, solid, or next
  • Others: No frontend restrictions

Common Stack Patterns

Using Predefined Templates

npx create-better-t-stack my-app --template t3

Available templates:

  • t3: Modern full-stack TypeScript stack
  • mern: MongoDB, Express, React, Node
  • pern: PostgreSQL, Express, React, Node
  • uniwind: React Native with NativeWind styling
  • none: No predefined template (configure manually)

Templates set multiple options at once. You can override specific flags:

npx create-better-t-stack my-app --template t3 --database postgres

Full-Stack Web App (Default)

npx create-better-t-stack my-webapp \
  --frontend tanstack-router \
  --backend hono \
  --database sqlite \
  --orm drizzle \
  --auth better-auth \
  --addons turborepo \
  --yes

Backend-Only API Server

npx create-better-t-stack my-api \
  --frontend none \
  --backend fastify \
  --runtime node \
  --database postgres \
  --orm prisma \
  --api trpc \
  --yes

Frontend-Only SPA

npx create-better-t-stack my-frontend \
  --frontend next \
  --backend none \
  --api none \
  --yes

Web + Native App

npx create-better-t-stack my-app \
  --frontend next native-uniwind \
  --backend hono \
  --database sqlite \
  --orm drizzle \
  --auth better-auth \
  --yes

Cloudflare Workers App

npx create-better-t-stack my-workers \
  --runtime workers \
  --backend hono \
  --database sqlite \
  --orm drizzle \
  --db-setup d1 \
  --yes

Important Notes

Mobile Development

When using native frontends with local backend development:

# Use machine IP, not localhost
EXPO_PUBLIC_SERVER_URL=http://192.168.1.X:3000

bts.jsonc File

  • Created automatically during project initialization
  • Stores stack configuration for add command
  • Safe to delete if you don't use add command
  • Must exist for add command to work

Programmatic API

For automation and CI/CD:

import { init } from "create-better-t-stack";

const result = await init("my-project", {
  frontend: ["tanstack-router"],
  backend: "hono",
  database: "sqlite",
  orm: "drizzle",
  auth: "better-auth",
  yes: true
});

if (!result.success) {
  console.error(result.error);
}

Best Practices

  1. Always use --yes flag for agent-driven tasks to avoid interactive prompts
  2. Start with recommended defaults, then customize as needed
  3. Validate compatibility before generating commands - check critical rules above
  4. Use --yolo only when you're certain about compatibility and want to skip validation
  5. Keep bts.jsonc if you plan to use add command later
  6. Match database type to production needs (sqlite for dev, postgres/mysql/mongodb for prod)
  7. Choose ORM based on database: Drizzle for SQL, Mongoose for MongoDB

Reference Documentation

For complete details on:

Troubleshooting

Common Issues

"Incompatible addon/frontend combination"

  • Check COMPATIBILITY.md for addon requirements
  • Some addons (PWA, Tauri) require specific frontends

"Cannot select multiple web frameworks"

  • Use only one web framework at a time
  • Can combine one web + one native (e.g., --frontend next native-uniwind)

"MongoDB database is not compatible with Cloudflare Workers runtime"

  • Workers runtime only supports SQLite with Drizzle/Prisma
  • Use a different runtime or database

"Database requires an ORM"

  • Must select both database and ORM (both non-none)
  • MongoDB requires Mongoose or Prisma (not Drizzle)

"Backend 'self' only supports Next.js and TanStack Start"

  • Use a different backend (hono, express, etc.) for other frontends
  • Or switch frontend to next or tanstack-start

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.49%
按下载量换算57

Claude

30.34%
按下载量换算44

Cursor

18%
按下载量换算26

Gemini CLI

8.88%
按下载量换算13

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills