en un clic
init-project
First-time project setup after cloning
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
First-time project setup after cloning
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle 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