Found 245 repositories(showing 30)
Lum1104
Skill that turn any codebase, Dockerfile, or docs into an interactive knowledge graph you can explore, search, and ask questions about. Multi-platform: Claude Code, Codex, Cursor, Copilot, Gemini CLI, and more.
thakkarparth007
Hacky repo to see what the Copilot extension sends to the server
cleodin
🌌 Explore 255+ essential skills for AI coding assistants like Claude Code and GitHub Copilot to enhance your development workflow.
heyitsgoad
This is my hub for Copilot prompts, custom agents, and video guides. I share practical examples, build instructions, and tips to help you explore and apply AI-driven workflows. Everything in one place—easy to browse, learn, and use.
MicrosoftLearning
Lab exercises for exploring copilot
faesel
A Tron-themed desktop app that visualises your GitHub Copilot CLI sessions — browse history, track token usage, and explore activity across all your coding sessions.
Explore the Azure AI Foundry quickstarts and tutorials with retail copilot context in mind.
A minimal Model Context Protocol (MCP) implementation built with Node.js and TypeScript. This project demonstrates client–server communication over stdio, structured message handling, and local data access, developed with VS Code and GitHub Copilot to explore modern AI tool integration workflows.
YoavLax
Interactive GitHub Copilot workshop using an NBA app to explore AI-assisted development, advanced workflows, and best practices in coding, testing, and optimization. Learn how to prompt effectively, debug with AI, and integrate intelligent automation.
Wang-Group
No description available
microsoft
Tutorial to explore NASA's HLS Data in Microsoft's Planetary Computer Using GitHub Copilot
ReshmiMehta14
A hands-on AI red teaming project exploring prompt injection, encoding bypass, jailbreaks, and embedded attacks across modern LLMs like DeepSeek AI, Grok AI and CoPilot
Shakiran-Nannyombi
This repo is designed to help developers and learners explore GitHub Copilot’s agentic mode and Copilot CLI in a practical, hands-on way.
mjunaidca
Let's explore, collaborate, contribute, and unlock the power of GPT-4, Bard and AI copilots
ParamMalviya
Develop foundational knowledge of Copilot for Microsoft 365 and explore real-world scenarios.
ferrarirosso
SPFx webpart to explore and test the Microsoft 365 Copilot Retrieval, Search, and Chat APIs (beta)
Drakonian
As you have probably noticed, Business Central is actively integrating AI and providing developer tools for working with large language models. One of these tools is the new page type PromptDialog. I suggest exploring this page type along with the new AI interfaces using simple example: create Copilot for generating Payment Terms records.
microsoft
This lab is about exploring how AI can help you tackle real challenges at work. You’ll define a problem, brainstorm solutions and choose the best option—with the help of Copilot.
faiz-oussama
MaghrebAI Copilot is an AI-powered travel planner that creates personalized Morocco trip itineraries. It provides detailed day-by-day plans with accommodations, restaurants, attractions, and transportation options, all visualized on interactive maps. Your intelligent travel companion for exploring Morocco.
rohjesus
{ "editor.fontSize": 14, "editor.lineHeight": 24, "editor.fontFamily": "JetBrains Mono", "editor.fontLigatures": true, "explorer.compactFolders": false, "editor.rulers": [80, 120], "editor.formatOnSave": true, "eslint.packageManager": "yarn", "[javascript]": { "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[javascriptreact]": { "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[typescript]": { "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[typescriptreact]": { "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "editor.defaultFormatter": "esbenp.prettier-vscode" }, "files.associations": { ".sequelizerc": "javascript", ".stylelintrc": "json", ".prettierrc": "json" }, // left signal on selected line "editor.renderLineHighlight": "gutter", "terminal.integrated.fontSize": 14, "workbench.iconTheme": "material-icon-theme", "workbench.startupEditor": "newUntitledFile", "editor.tabSize": 2, "extensions.ignoreRecommendations": true, "emmet.syntaxProfiles": { "javascript": "jsx" }, "emmet.includeLanguages": { "javascript": "javascriptreact" }, "gitlens.codeLens.recentChange.enabled": false, "gitlens.codeLens.authors.enabled": false, "gitlens.codeLens.enabled": false, "git.enableSmartCommit": true, "editor.parameterHints.enabled": false, "typescript.updateImportsOnFileMove.enabled": "never", "explorer.confirmDragAndDrop": false, "liveshare.featureSet": "insiders", "explorer.confirmDelete": false, "typescript.tsserver.log": "verbose", "javascript.suggest.autoImports": false, "typescript.suggest.autoImports": false, "workbench.activityBar.visible": true, // Sync config "sync.quietSync": false, "sync.autoDownload": true, "sync.gist": "secret", "sync.autoUpload": true, "sync.forceUpload": true, // Sync config "git.autofetch": true, "[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "git.confirmSync": false, "[html]": { "editor.defaultFormatter": "vscode.html-language-features" }, "liveServer.settings.donotShowInfoMsg": true, "editor.suggestSelection": "first", "editor.minimap.enabled": false, "editor.renderWhitespace": "none", "workbench.editor.untitled.hint": "hidden", "editor.inlineSuggest.enabled": true, "editor.bracketPairColorization.enabled": true, "security.workspace.trust.untrustedFiles": "open", "github.copilot.enable": { "*": true, "yaml": false, "plaintext": true, "markdown": true }, "window.nativeTabs": true, "workbench.colorTheme": "Winter is Coming (Dark Blue)", "html.autoClosingTags": true, "editor.linkedEditing": true, "[jsonc]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "tailwindCSS.includeLanguages": { "typescript": "javascript", // if you are using typescript "typescriptreact": "javascript" // if you are using typescript with react }, "editor.quickSuggestions": { "strings": true // forces VS Code to trigger completions when editing "string" content }, "tailwindCSS.experimental.classRegex": [ "tw`([^`]*)", // tw`...` "tw\\.[^`]+`([^`]*)`", // tw.xxx<xxx>`...` "tw\\(.*?\\).*?`([^`]*)" // tw(Component)<xxx>`...` ], "window.zoomLevel": 3 } Extensions Copy and paste into your integrated terminal to install code --install-extension bradlc.vscode-tailwindcss code --install-extension dbaeumer.vscode-eslint code --install-extension DotJoshJohnson.xml code --install-extension dracula-theme.theme-dracula code --install-extension dsznajder.es7-react-js-snippets code --install-extension eamodio.gitlens code --install-extension esbenp.prettier-vscode code --install-extension GitHub.copilot code --install-extension johnpapa.winteriscoming code --install-extension jpoissonnier.vscode-styled-components code --install-extension ms-python.python code --install-extension ms-vsliveshare.vsliveshare code --install-extension naumovs.color-highlight code --install-extension PKief.material-icon-theme code --install-extension Prisma.prisma code --install-extension ritwickdey.LiveServer code --install-extension rocketseat.rocketseatreactjs code --install-extension rocketseat.rocketseatreactnative code --install-extension rocketseat.theme-omni code --install-extension Shan.code-settings-sync
gu1lh3rm3s0rd1
Explore generative AI with Microsoft Copilot Explore Azure OpenAI Explore content filters in Azure OpenAI Desenvolvido com ChatGPT
Reskilll
Explore the essentials of Git and GitHub, pivotal tools in project management and version control for software development. From basic concepts to advanced commands, dive into the world of collaborative coding, culminating in a closing keynote featuring Github Copilot & Codespaces.
AndreaGriffiths11
AI is revolutionizing development. Explore how GitHub Copilot supercharges your coding workflows.
lukepadiachy
This repo is a hands-on experiment in customizing GitHub Copilot using repository-level instructions, prompt files, and chat modes. Each branch demonstrates a specific Copilot customization, instruction, or architectural pattern, allowing users to explore how Copilot adapts to different coding workflows and requirements.
Shuaib-8
The Travel Copilot is an AI-powered assistant designed to help users explore and ideate around travel plans. By leveraging LLMs, the Travel Copilot can understand user preferences, provide personalized recommendations, and assist with various travel-related tasks over a Question-Answering (QA) chat interface.
isikmert1
AI-powered Playwright test generation framework for GitHub Copilot. Uses Playwright CLI + MCP servers + agent skills to explore web apps, create test plans, generate working .spec.ts files, and self-heal failing tests. All from natural language prompts.
edudias1972
Explore generative AI with Microsoft Copilot
Jasmin319
Explore how Copilot can support Power BI with ready-to-use prompts, custom agents, and practical use cases for faster insights and more efficient reporting.
niznik-dev
Exploring how Copilot, ChatGPT, and Gemini can help us code
urRvi
Full-stack data catalog + lineage explorer with a retrieval-based copilot. FastAPI + React. Single Docker deploy.