senior-fullstack
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseSenior Fullstack
资深全栈开发工具包
Complete toolkit for senior fullstack with modern tools and best practices.
面向资深全栈开发者的完整工具包,集成现代工具与最佳实践。
Quick Start
快速开始
Main Capabilities
核心功能
This skill provides three core capabilities through automated scripts:
bash
undefined本技能通过自动化脚本提供三大核心能力:
bash
undefinedScript 1: Fullstack Scaffolder
Script 1: Fullstack Scaffolder
python scripts/fullstack_scaffolder.py [options]
python scripts/fullstack_scaffolder.py [options]
Script 2: Project Scaffolder
Script 2: Project Scaffolder
python scripts/project_scaffolder.py [options]
python scripts/project_scaffolder.py [options]
Script 3: Code Quality Analyzer
Script 3: Code Quality Analyzer
python scripts/code_quality_analyzer.py [options]
undefinedpython scripts/code_quality_analyzer.py [options]
undefinedCore Capabilities
核心能力
1. Fullstack Scaffolder
1. 全栈脚手架工具
Automated tool for fullstack scaffolder tasks.
Features:
- Automated scaffolding
- Best practices built-in
- Configurable templates
- Quality checks
Usage:
bash
python scripts/fullstack_scaffolder.py <project-path> [options]用于全栈脚手架任务的自动化工具。
特性:
- 自动化脚手架搭建
- 内置最佳实践
- 可配置模板
- 质量检查
使用方法:
bash
python scripts/fullstack_scaffolder.py <project-path> [options]2. Project Scaffolder
2. 项目脚手架工具
Comprehensive analysis and optimization tool.
Features:
- Deep analysis
- Performance metrics
- Recommendations
- Automated fixes
Usage:
bash
python scripts/project_scaffolder.py <target-path> [--verbose]全面的分析与优化工具。
特性:
- 深度分析
- 性能指标评估
- 优化建议
- 自动化修复
使用方法:
bash
python scripts/project_scaffolder.py <target-path> [--verbose]3. Code Quality Analyzer
3. 代码质量分析工具
Advanced tooling for specialized tasks.
Features:
- Expert-level automation
- Custom configurations
- Integration ready
- Production-grade output
Usage:
bash
python scripts/code_quality_analyzer.py [arguments] [options]用于专项任务的高级工具。
特性:
- 专家级自动化
- 自定义配置
- 可集成现有工作流
- 生产级输出
使用方法:
bash
python scripts/code_quality_analyzer.py [arguments] [options]Reference Documentation
参考文档
Tech Stack Guide
技术栈指南
Comprehensive guide available in :
references/tech_stack_guide.md- Detailed patterns and practices
- Code examples
- Best practices
- Anti-patterns to avoid
- Real-world scenarios
完整指南位于 :
references/tech_stack_guide.md- 详细的模式与实践
- 代码示例
- 最佳实践
- 需规避的反模式
- 真实场景案例
Architecture Patterns
架构模式
Complete workflow documentation in :
references/architecture_patterns.md- Step-by-step processes
- Optimization strategies
- Tool integrations
- Performance tuning
- Troubleshooting guide
完整工作流文档位于 :
references/architecture_patterns.md- 分步流程
- 优化策略
- 工具集成
- 性能调优
- 故障排查指南
Development Workflows
开发工作流
Technical reference guide in :
references/development_workflows.md- Technology stack details
- Configuration examples
- Integration patterns
- Security considerations
- Scalability guidelines
技术参考指南位于 :
references/development_workflows.md- 技术栈详情
- 配置示例
- 集成模式
- 安全考量
- 可扩展性指南
Tech Stack
技术栈
Languages: TypeScript, JavaScript, Python, Go, Swift, Kotlin
Frontend: React, Next.js, React Native, Flutter
Backend: Node.js, Express, GraphQL, REST APIs
Database: PostgreSQL, Prisma, NeonDB, Supabase
DevOps: Docker, Kubernetes, Terraform, GitHub Actions, CircleCI
Cloud: AWS, GCP, Azure
编程语言: TypeScript, JavaScript, Python, Go, Swift, Kotlin
前端: React, Next.js, React Native, Flutter
后端: Node.js, Express, GraphQL, REST APIs
数据库: PostgreSQL, Prisma, NeonDB, Supabase
DevOps: Docker, Kubernetes, Terraform, GitHub Actions, CircleCI
云服务: AWS, GCP, Azure
Development Workflow
开发工作流
1. Setup and Configuration
1. 环境搭建与配置
bash
undefinedbash
undefinedInstall dependencies
Install dependencies
npm install
npm install
or
or
pip install -r requirements.txt
pip install -r requirements.txt
Configure environment
Configure environment
cp .env.example .env
undefinedcp .env.example .env
undefined2. Run Quality Checks
2. 运行质量检查
bash
undefinedbash
undefinedUse the analyzer script
Use the analyzer script
python scripts/project_scaffolder.py .
python scripts/project_scaffolder.py .
Review recommendations
Review recommendations
Apply fixes
Apply fixes
undefinedundefined3. Implement Best Practices
3. 落实最佳实践
Follow the patterns and practices documented in:
references/tech_stack_guide.mdreferences/architecture_patterns.mdreferences/development_workflows.md
遵循以下文档中记录的模式与实践:
references/tech_stack_guide.mdreferences/architecture_patterns.mdreferences/development_workflows.md
Best Practices Summary
最佳实践总结
Code Quality
代码质量
- Follow established patterns
- Write comprehensive tests
- Document decisions
- Review regularly
- 遵循既定模式
- 编写全面的测试用例
- 记录决策过程
- 定期进行代码评审
Performance
性能优化
- Measure before optimizing
- Use appropriate caching
- Optimize critical paths
- Monitor in production
- 优化前先进行测量
- 使用合适的缓存策略
- 优化关键路径
- 生产环境持续监控
Security
安全防护
- Validate all inputs
- Use parameterized queries
- Implement proper authentication
- Keep dependencies updated
- 验证所有输入
- 使用参数化查询
- 实现恰当的认证机制
- 保持依赖库更新
Maintainability
可维护性
- Write clear code
- Use consistent naming
- Add helpful comments
- Keep it simple
- 编写清晰的代码
- 使用一致的命名规范
- 添加有帮助的注释
- 保持代码简洁
Common Commands
常用命令
bash
undefinedbash
undefinedDevelopment
Development
npm run dev
npm run build
npm run test
npm run lint
npm run dev
npm run build
npm run test
npm run lint
Analysis
Analysis
python scripts/project_scaffolder.py .
python scripts/code_quality_analyzer.py --analyze
python scripts/project_scaffolder.py .
python scripts/code_quality_analyzer.py --analyze
Deployment
Deployment
docker build -t app:latest .
docker-compose up -d
kubectl apply -f k8s/
undefineddocker build -t app:latest .
docker-compose up -d
kubectl apply -f k8s/
undefinedTroubleshooting
故障排查
Common Issues
常见问题
Check the comprehensive troubleshooting section in .
references/development_workflows.md请查看 中的完整故障排查章节。
references/development_workflows.mdGetting Help
获取帮助
- Review reference documentation
- Check script output messages
- Consult tech stack documentation
- Review error logs
- 查阅参考文档
- 查看脚本输出信息
- 参考技术栈官方文档
- 查看错误日志
Resources
资源
- Pattern Reference:
references/tech_stack_guide.md - Workflow Guide:
references/architecture_patterns.md - Technical Guide:
references/development_workflows.md - Tool Scripts: directory
scripts/
- 模式参考:
references/tech_stack_guide.md - 工作流指南:
references/architecture_patterns.md - 技术指南:
references/development_workflows.md - 工具脚本:目录
scripts/