A quick reference list of powerful tools and resources for setting up AI coding agents, customizing GitHub Copilot, and making your codebase prompt-friendly for better AI development workflows.
| Name | Link | Description |
|---|---|---|
| MCP Servers for Agent Mode | MCP | Official VS Code MCP (Managed Coding Platform) for running, managing, and scaling coding agents remotely in secure environments. |
| Awesome GitHub Copilot Customizations | Awesome Copilot | A curated list of plugins, tools, and workflows to extend, tweak, and supercharge GitHub Copilot for different development needs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "compilerOptions": { | |
| /* Visit https://aka.ms/tsconfig to read more about this file */ | |
| /* Projects */ | |
| "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */ | |
| "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */ | |
| "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */ | |
| /* Language and Environment */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/env python3 | |
| import argparse | |
| import io | |
| import json | |
| import os | |
| import sys | |
| import urllib.parse | |
| import urllib.request | |
| from typing import Optional, NamedTuple |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sClLQOkek3PlsAbDteBRX+F69oDNnaAlyyRgcKPdAtQU0JuN5Pmx5iD4/rMQXSZ9uCHLKKZA/b9Nk/H9JVsc7BBb5yLcul8GOCoIAHJzj+Q55LfS7e20HP+hkyzd6fhszW+f8pihxeyM6YraoZTG9sskGhwUAMuIISKaClAhXMcEn/nf88SBlJtBgegICcSdrmm/30b6+vER+UpNl31J07soV6hLfECnLepyizSX22A= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| vim.g.base46_cache = vim.fn.stdpath "data" .. "/base46/" | |
| vim.g.mapleader = " " | |
| -- bootstrap lazy and all plugins | |
| local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim" | |
| if not vim.uv.fs_stat(lazypath) then | |
| local repo = "https://github.com/folke/lazy.nvim.git" | |
| vim.fn.system { "git", "clone", "--filter=blob:none", repo, "--branch=stable", lazypath } | |
| end |
NewerOlder