一键导入
init-project
First-time project setup after cloning
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
First-time project setup after cloning
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Fix bugs found in a code review
Create comprehensive feature plan with deep codebase analysis and research
Run the test suite
Run full validation suite (build, lint, type check, tests)
Technical code review for quality and bugs on recently changed files
Create an atomic commit with conventional commit format
| name | init-project |
| description | First-time project setup after cloning |
| disable-model-invocation | true |
Execute each step in order. Stop and report issues if any step fails.
dotnet --version # Requires .NET 9.0 or later
node --version # Requires Node.js 18+ (LTS recommended)
npm --version
dotnet restore MooBank.slnx
dotnet build MooBank.slnx --no-restore
If restore fails (401 Unauthorized for GitHub Packages):
ASM library packages are hosted on GitHub Packages. Instruct the user to:
read:packages scope at https://github.com/settings/tokensdotnet nuget add source "https://nuget.pkg.github.com/AndrewMcLachlan/index.json" \
--name "GitHub-AndrewMcLachlan" \
--username YOUR_GITHUB_USERNAME \
--password YOUR_GITHUB_PAT \
--store-password-in-clear-text
dotnet restore MooBank.slnxcd src/MooBank.Web.App && npm install
cd src/MooBank.Web.App && npm run build
If npm install fails (401/403 for @andrewmclachlan packages):
MooApp packages are hosted on GitHub Packages. Instruct the user to:
read:packages scope~/.npmrc: //npm.pkg.github.com/:_authToken=YOUR_GITHUB_PATnpm install# Backend
dotnet run --project src/MooBank.Web.Api/MooBank.Web.Api.csproj
# Frontend (separate terminal)
cd src/MooBank.Web.App && npm start
https://localhost:7005http://localhost:3005/appsettings.Development.json for connection string