architecture-design
系统架构设计方法论,包含架构模式选择、系统分层、目录结构设计
检测项目技术栈的通用方法,通过分析配置文件识别语言、框架、工具链
$ npx -y skills add echoVic/boss-skill --skill tech-stack-detection --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/tech-stack-detectionContext preview
The summary Claude sees to decide when to auto-load this skill.
检测项目技术栈的通用方法,通过分析配置文件识别语言、框架、工具链
name: shared/tech-stack-detection description: 检测项目技术栈的通用方法,通过分析配置文件识别语言、框架、工具链 version: 1.0.0 agent: shared type: methodology user-invocable: false agent-invocable: true dependencies: [] triggers: - 需要了解项目技术栈时 - 技术选型前需要检测现有技术时 - 生成框架特定的代码或配置时
在进行技术选型、架构设计、代码生成前,需要先了解项目当前使用的技术栈,以便:
使用 `Read` 或 `Glob` 工具检测项目根目录的配置文件:
| 文件 | 说明 | 检测内容 | |------|------|----------| | `package.json` | Node.js 项目配置 | dependencies, devDependencies, scripts | | `tsconfig.json` | TypeScript 配置 | 确认使用 TypeScript | | `next.config.js` | Next.js 配置 | 确认使用 Next.js | | `vite.config.js` | Vite 配置 | 确认使用 Vite | | `nuxt.config.js` | Nuxt 配置 | 确认使用 Nuxt |
**检测命令**:
# 检测是否存在 ls package.json tsconfig.json next.config.js vite.config.js 2>/dev/null # 读取 package.json Read(file_path: "package.json")
**关键依赖识别**:
| 文件 | 说明 | 检测内容 | |------|------|----------| | `requirements.txt` | pip 依赖 | 依赖列表 | | `pyproject.toml` | Poetry/PDM 配置 | 依赖和项目配置 | | `Pipfile` | Pipenv 配置 | 依赖 | | `setup.py` | 包配置 | 项目元数据 |
**关键依赖识别**:
| 文件 | 说明 | 检测内容 | |------|------|----------| | `go.mod` | Go 模块配置 | 依赖和 Go 版本 | | `go.sum` | 依赖校验和 | 确认依赖锁定 |
**关键依赖识别**:
| 文件 | 说明 | 检测内容 | |------|------|----------| | `Cargo.toml` | Cargo 配置 | 依赖和项目配置 | | `Cargo.lock` | 依赖锁定 | 确认依赖版本 |
**关键依赖识别**:
| 文件 | 说明 | 检测内容 | |------|------|----------| | `pom.xml` | Maven 配置 | 依赖和插件 | | `build.gradle` | Gradle 配置 | 依赖和任务 |
**关键依赖识别**:
| 文件 | 说明 | 检测内容 | |------|------|----------| | `Gemfile` | Bundler 配置 | 依赖 | | `Gemfile.lock` | 依赖锁定 | 确认依赖版本 |
**关键依赖识别**:
| 文件/目录 | 说明 | |-----------|------| | `prisma/schema.prisma` | Prisma 数据库配置 | | `drizzle.config.ts` | Drizzle ORM 配置 | | `ormconfig.json` | TypeORM 配置 | | `alembic/` | Python Alembic 迁移 | | `migrations/` | 数据库迁移目录 |
**数据库类型识别**:
| 文件 | 说明 | |------|------| | `Dockerfile` | Docker 容器化 | | `docker-compose.yml` | Docker Compose 多容器 | | `vercel.json` | Vercel 部署 | | `.github/workflows/` | GitHub Actions CI/CD | | `netlify.toml` | Netlify 部署 | | `railway.json` | Railway 部署 |
| 文件/依赖 | 框架 | |-----------|------| | `jest.config.js` | Jest | | `vitest.config.js` | Vitest | | `playwright.config.js` | Playwright | | `cypress.json` | Cypress |
| 依赖 | 框架 | |------|------| | `pytest` | pytest | | `unittest` | unittest (内置) |
| 文件 | 框架 | |------|------| | `*_test.go` | Go 内置测试 |
# 使用 Glob 查找配置文件
Glob(pattern: "{package.json,go.mod,Cargo.toml,pom.xml,requirements.txt,Gemfile}")# 读取主配置文件 Read(file_path: "package.json") # 或其他检测到的文件
从配置文件中提取:
以结构化格式输出:
## 技术栈检测结果 ### 语言和运行时 - **语言**:TypeScript - **运行时**:Node.js 20.x - **包管理器**:pnpm ### 前端框架 - **框架**:Next.js 14 (App Router) - **UI 库**:React 18 - **样式**:Tailwind CSS - **状态管理**:Zustand ### 后端框架 - **框架**:Next.js API Routes - **ORM**:Prisma - **数据库**:PostgreSQL ### 测试 - **单元测试**:Vitest - **E2E 测试**:Playwright ### 部署 - **容器化**:Docker - **CI/CD**:GitHub Actions - **托管**:Vercel
# 1. 检测配置文件 Glob(pattern: "package.json") # 2. 读取 package.json Read(file_path: "package.json") # 3. 分析依赖 # 发现: "next": "14.0.0", "react": "18.2.0", "prisma": "5.0.0" # 4. 输出结果 技术栈:Next.js 14 + React 18 + Prisma + PostgreSQL
# 1. 检测配置文件
Glob(pattern: "{requirements.txt,pyproject.toml}")
# 2. 读取配置
Read(file_path: "pyproject.toml")
# 3. 分析依赖
# 发现: fastapi, sqlalchemy, pytest
# 4. 输出结果
技术栈:FastAPI + SQLAlchemy + PostgreSQL + pytest1. **优先检测现有项目**:如果项目已存在配置文件,必须遵循现有技术栈 2. **新项目才选型**:只有在没有配置文件时,才进行技术选型 3. **版本兼容性**:注意依赖之间的版本兼容性 4. **生态一致性**:不要混用不同生态的工具(如 npm + poetry)
❌ **不检测就假设**:直接假设项目使用某技术,而不检测配置文件 ❌ **忽略版本**:只检测框架名称,不检测版本号 ❌ **混淆生态**:在 Node.js 项目中推荐 Python 工具 ❌ **重复检测**:在同一个任务中多次检测相同的配置文件
Languages / 语言 / 言語 / 언어 / Idiomas / Langues: English · 中文 · 日本語 · 한국어 · Español · Français · Português Boss is an auditable agent-team workflow for coding agents.
Repo: echoVic/boss-skill
系统架构设计方法论,包含架构模式选择、系统分层、目录结构设计
数据模型和API设计方法论,包含ERD设计、数据字典、RESTful API规范
后端API开发方法论,包括RESTful/GraphQL设计、请求验证、错误处理和安全实现
后端测试编写指南,包括单元测试、集成测试和E2E测试的编写方法和最佳实践
需求澄清 Skill。当用户只给了模糊描述时自动触发,通过业务提问把一句话翻译成完整需求,交给 Boss 流水线执行。 Triggers: '我想做一个', '帮我做', '有个想法', 'brainstorm', '帮我规划一下', '做个XX', 'I want to build' Does NOT…