一键导入
project-setup
Set up new projects with proper structure, configuration, and best practices. Use this skill when creating new projects or initializing new codebases.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Set up new projects with proper structure, configuration, and best practices. Use this skill when creating new projects or initializing new codebases.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
WCAG compliance checking and accessibility improvements. Use for auditing websites, fixing a11y issues, and implementing inclusive design.
Android development patterns for Kotlin/Java including MediaProjection, Accessibility Service, Socket.IO, and foreground services. Use when working on TitanMirror or other Android projects.
Design RESTful APIs with proper routes, validation, error handling, and documentation. Use when building backend services for PSI Engine or other server applications.
Automate browser interactions including form filling, clicking, typing, navigation, and screenshot capture. Use this skill when testing web apps, automating uploads, or validating UI on TikTok, YouTube, or other web platforms.
Build Chrome Extensions with Manifest V3, background service workers, content scripts, and message passing. Use when developing TikTok Uploader extension or any browser extensions.
Automated CI/CD pipeline setup with GitHub Actions, deployment strategies, and automation workflows. Use for build automation, testing, and deployment.
| name | project-setup |
| description | Set up new projects with proper structure, configuration, and best practices. Use this skill when creating new projects or initializing new codebases. |
📁 project-name/
📁 src/
📁 components/ ← UI Components
📁 pages/ ← Page Components
📁 hooks/ ← Custom Hooks
📁 utils/ ← Utility Functions
📁 types/ ← TypeScript Types
📁 services/ ← API Services
📁 stores/ ← State Management
📁 assets/ ← Images, Fonts
📁 public/ ← Static files
📁 tests/ ← Test files
📄 .gitignore
📄 .env.example
📄 package.json
📄 README.md
📄 tsconfig.json
node_modules/
dist/
.env
*.log
.DS_Store
# Server
PORT=3000
# Database
DATABASE_URL=
# API Keys (replace with your own)
API_KEY=
{
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"lint": "eslint src/",
"format": "prettier --write src/"
}
}
# Create project
npx -y create-vite@latest ./ --template react-ts
# Install dependencies
npm install
# ESLint + Prettier
npm install -D eslint prettier eslint-config-prettier
git init
git add .
git commit -m "Initial commit"
# Copy example env
Copy-Item .env.example .env
npx -y create-vite@latest ./ --template react-ts
npx -y create-next-app@latest ./ --typescript --tailwind --eslint
📁 extension/
📄 manifest.json ← V3 manifest
📁 src/
📄 background.js
📄 content.js
📄 popup.html
npm run dev worksnpm run build succeedsnpm run test passed.env is in .gitignore