SkillAgentSearch skills...

PlatformPlatform

A platform designed for building enterprise-grade, multi-tenant products using Azure, .NET, React, TypeScript, Infrastructure as Code, etc.

Install / Use

/learn @platformplatform/PlatformPlatform

README

PlatformPlatform Resource Groups

<h4 align="center">

App Gateway Account Main Back Office Cloud Infrastructure

GitHub issues with enhancement label GitHub issues with roadmap label GitHub issues with bug label

Coverage Quality Gate Status Security Rating Reliability Rating Maintainability Rating

</h4>

👋 Welcome to PlatformPlatform

Kick-start building top-tier B2B & B2C cloud SaaS products with sleek design, fully localized and accessible, vertical slice architecture, automated and fast DevOps, and top-notch security.

Built to demonstrate seamless flow: backend contracts feed a fully-typed React UI, pipelines make fully automated deployments to Azure, and a multi-agent AI workflow where PlatformPlatform-expert agents collaborate to deliver complete features following the opinionated architecture. Think of it as a ready-made blueprint, not a pile of parts to assemble.

What's inside

  • Backend - .NET 10 and C# 14 adhering to the principles of vertical slice architecture, DDD, CQRS, and clean code
  • Frontend - React 19, TypeScript, TanStack Router & Query, ShadCN 2.0 with Base UI for accessible UI
  • CI/CD - GitHub actions for fast passwordless deployments of docker containers and infrastructure (Bicep)
  • Infrastructure - Cost efficient and scalable Azure PaaS services like Azure Container Apps, Azure PostgreSQL, etc.
  • Developer CLI - Extendable .NET CLI for DevEx - set up CI/CD is one command and a couple of questions
  • AI rules - 30+ rules & workflows for Claude Code - sync to other editors can be enabled via .gitignore
  • Multi-agent workflow (Experimental) - Specialized autonomous AI agents expert in PlatformPlatform's architecture

Multi Agent Workflow

Follow our up-to-date roadmap with core SaaS features like SSO, monitoring, alerts, multi-region, feature flags, back office for support, etc.

Show your support for our project - give us a star on GitHub! It truly means a lot! ⭐

Getting Started

TL;DR: Open the PlatformPlatform solution in Rider or Visual Studio and run the Aspire AppHost project.

Prerequisites

For development, you need .NET, Docker, and Node. And GitHub and Azure CLI for setting up CI/CD.

<details> <summary>Install prerequisites for Windows</summary>
  1. Open a PowerShell terminal as Administrator and run the following command to install Windows Subsystem for Linux (required for Docker). Restart your computer if prompted.

    wsl --install
    
  2. From an Administrator PowerShell terminal, use winget (preinstalled on Windows 11) to install any missing packages:

    winget install Microsoft.DotNet.SDK.10
    winget install Git.Git
    winget install Docker.DockerDesktop
    winget install Microsoft.AzureCLI
    winget install GitHub.cli
    
  3. Install Node.js — the version must match .node-version. We recommend fnm which auto-installs the exact version via the Developer CLI. When using an IDE like Rider, ensure the active fnm version matches .node-version.

    # Option A: fnm (recommended)
    winget install Schniz.fnm
    
    # Option B: Node.js directly
    winget install OpenJS.NodeJS
    
</details> <details> <summary>Install prerequisites for Mac</summary>

Open a terminal and run the following commands (if not installed):

  1. Install Homebrew, a package manager for Mac

  2. Install packages

    brew install --cask dotnet-sdk
    brew install --cask docker
    brew install git azure-cli gh
    
  3. Install Node.js — the version must match .node-version. We recommend fnm which auto-installs the exact version via the Developer CLI. When using an IDE like Rider, ensure the active fnm version matches .node-version.

    # Option A: fnm (recommended)
    brew install fnm
    
    # Option B: Node.js directly
    brew install node
    
</details> <details> <summary>Install prerequisites for Linux (Ubuntu/Debian)</summary>

Open a terminal and run the following commands (if not installed):

  1. Install basic tools

    sudo apt update && sudo apt install -y git wget curl libnss3-tools
    
  2. Add Microsoft package repository

    source /etc/os-release
    wget https://packages.microsoft.com/config/$ID/$VERSION_ID/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
    sudo dpkg -i packages-microsoft-prod.deb
    rm packages-microsoft-prod.deb
    
  3. Install .NET SDK and Docker

    sudo apt-get update && sudo apt-get install -y dotnet-sdk-10.0 docker.io docker-compose-v2
    
    sudo systemctl enable --now docker
    sudo usermod -aG docker $USER
    
  4. Install Node.js — the version must match .node-version. We recommend fnm which auto-installs the exact version via the Developer CLI. When using an IDE like Rider, ensure the active fnm version matches .node-version.

    # Option A: fnm (recommended)
    curl -fsSL https://fnm.vercel.app/install | bash
    
    # Option B: Node.js directly
    curl -fsSL https://deb.nodesource.com/setup_24.x | sudo -E bash -
    sudo apt-get install -y nodejs
    
  5. Trust the HTTPS development certificate

    echo 'export SSL_CERT_DIR="$HOME/.aspnet/dev-certs/trust:${SSL_CERT_DIR:-/usr/lib/ssl/certs}"' >> ~/.bashrc
    
    source ~/.bashrc
    
    dotnet dev-certs https --trust
    
  6. Log out and log back in to apply Docker group and shell configuration changes.

  7. (Optional) If using Snap Chromium, trust the certificate in its sandbox

    certutil -d sql:$HOME/snap/chromium/current/.pki/nssdb -L >/dev/null 2>&1 || (mkdir -p $HOME/snap/chromium/current/.pki/nssdb && certutil -d sql:$HOME/snap/chromium/current/.pki/nssdb -N --empty-password)
    dotnet dev-certs https --trust
    
  8. (Optional) Install GitHub CLI and Azure CLI (needed for CI/CD setup)

    (type -p wget >/dev/null || (sudo apt update && sudo apt-get install wget -y)) \
    && sudo mkdir -p -m 755 /etc/apt/keyrings \
    && wget -qO- https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null \
    && sudo chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg \
    && echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null
    sudo apt-get update && sudo ap
    
View on GitHub
GitHub Stars403
CategoryOperations
Updated1d ago
Forks52

Languages

C#

Security Score

100/100

Audited on Mar 26, 2026

No findings