A minimal multi-agent system with an orchestrator, a planner, a coder, and a designer working together providing orchestration between Claude, Codex and Gemini.
Install all agents listed below into VS Code Insiders.
| Title | Type | Description |
|---|
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| using 'main.bicep' | |
| param location = 'italynorth' | |
| param aksClusterName = 'aks-yt01' | |
| param agentPoolName = 'nodepool1' | |
| param kubernetesVersion = '1.31.8' | |
| param nodeCount = 1 | |
| param nodeVMSize = 'Standard_DS2_v2' | |
| param aadAdminGroupObjectIds = [ | |
| '9beb87c3-ec36-4b33-84b5-1efd0136e498' |
| param location string = resourceGroup().location | |
| param aksClusterName string | |
| param agentPoolName string | |
| param kubernetesVersion string | |
| param nodeCount int | |
| param nodeVMSize string = 'Standard_DS2_v2' | |
| param aadAdminGroupObjectIds array | |
| param acrName string | |
| param aksIdentityName string | |
| param aksKubeletIdentityName string |
| # Definisci i parametri | |
| $organization = "micheleferracin" # Sostituisci con il nome della tua organizzazione | |
| $project = "Parts Unlimited" # Sostituisci con il nome del tuo progetto | |
| $pat = "YOUR PAT HERE" # with read work-item permission | |
| $openApiPat = "YOUR OPEN API TOKEN HERE" | |
| function Replace-ImageUrlsInMarkdown { | |
| param ( | |
| [string]$markdownFilePath, | |
| [string]$fixedFolder |
| import { AdapterDateFns } from "@mui/x-date-pickers/AdapterDateFns"; | |
| import { LocalizationProvider } from "@mui/x-date-pickers"; | |
| import Button from "@mui/material/Button"; | |
| import { Formik, Form } from "formik"; | |
| import * as React from "react"; | |
| import useFetchWithMsal from "../hooks/useFetchWithMsal"; | |
| import { protectedResources } from "../authConfig"; | |
| import { Stack } from "@mui/system"; | |
| import { DatePicker } from "@mui/x-date-pickers"; | |
| import TextField from "@mui/material/TextField"; |
| dotnet tool install --global dotnet-coverage | |
| dotnet sonarscanner begin /k:"PROJECT_KEY" /d:sonar.host.url="http://localhost:9000" /d:sonar.cs.vscoveragexml.reportsPaths=coverage.xml /d:sonar.login="sqp_XXXXXXXXXXXXXX"; | |
| dotnet build --no-incremental | |
| dotnet-coverage collect "dotnet test" -f xml -o "coverage.xml"; |
| import { useState, useCallback } from "react"; | |
| import { InteractionType, PopupRequest } from "@azure/msal-browser"; | |
| import { useMsal, useMsalAuthentication } from "@azure/msal-react"; | |
| import { | |
| ExponentialBackoff, | |
| retry, | |
| handleAll, | |
| circuitBreaker, |