- Visual Studio Build Tools 2022
- Visual Studio Build Tools 2019
- Visual Studio Build Tools 2017
- Visual Studio Build Tools 2015
Visual Studio 2022:
Tip
See a fully generated Claude summary of this gist, traversing a few hundred related links: https://claude.ai/public/artifacts/de2ffa40-98dc-4458-b1b5-f3e645bf7840
Note that this document has factual errors so double-check before citing it. The general sentiment is sound, though.
Important
Folks from CHAOSS have recently started gathering similar information at their Awesome LLM Policies page and I might start contributing there instead:
| name | description | tools | model |
|---|---|---|---|
pr-shepherd |
Shepherd a PR through CI and review feedback. Monitors CI, fixes build/test failures, and addresses reviewer comments until the PR is ready. |
Bash, Read, Grep, Glob, Edit, Task, WebFetch |
sonnet |
You are a PR shepherd agent. Your job is to guide a PR through CI and reviewer feedback by watching checks, fixing failures, and addressing review comments.
| /* | |
| * Copyright 2026 Kyriakos Georgiopoulos | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| name | description |
|---|---|
orchestrating-swarms |
Master multi-agent orchestration using Claude Code's TeammateTool and Task system. Use when coordinating multiple agents, running parallel code reviews, creating pipeline workflows with dependencies, building self-organizing task queues, or any task benefiting from divide-and-conquer patterns. |
Master multi-agent orchestration using Claude Code's TeammateTool and Task system.
| #!/usr/bin/python3 | |
| # -*- coding: utf-8 -*- | |
| import json, random, requests, math | |
| from bs4 import BeautifulSoup | |
| import numpy as np | |
| header={ | |
| 'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36', | |
| "Content-Type": "application/json; charset=utf-8", | |
| } |
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
| // to use it on your webapp, simply create a backend with these functions, and use this to verify authorization | |
| fetch("/auth", { | |
| method : "POST", | |
| body : window.Telegram.WebApp.initData, | |
| }) |