Skip to content

Commit 7b872f6

Browse files
brunoborgesCopilot
andcommitted
chore: sync with upstream — rename, deps, tests, workshop updates
Incorporate upstream changes from microsoft/vscode-agent-lab-soc-ops: - Rename Soc Ops to Bingo Mixer - Bump dependencies (vite 8, @vitejs/plugin-react 6, etc.) - Add 'corners' to BingoLine type - Add 22 new tests (41 total) for bingoLogic - Update workshop content (VS Code 1.113, dogfooding, hooks, TDD) - Update VS Code settings (agent hooks, debug logging, launch.json) - Remove Playwright MCP from mcp.json - Keep fork-specific repo links and cross-language links Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent b37c9af commit 7b872f6

18 files changed

Lines changed: 1314 additions & 1658 deletions

.vscode/launch.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Launch in integrated browser",
6+
"request": "launch",
7+
"type": "editor-browser",
8+
"webRoot": "${workspaceFolder}",
9+
"url": "http://localhost:5173/",
10+
"preLaunchTask": "npm: dev"
11+
}
12+
]
13+
}

.vscode/mcp.json

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
11
{
22
"servers": {
3-
"microsoft/playwright-mcp": {
4-
"type": "stdio",
5-
"command": "npx",
6-
"args": [
7-
"@playwright/mcp@latest",
8-
"--browser=msedge",
9-
// "--headless=true" // Run in faster headless mode
10-
]
11-
}
123
}
134
}

.vscode/settings.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
2-
"chat.customAgentInSubagent.enabled": true,
3-
"scm.repositories.selectionMode": "single",
42
"chat.promptFilesRecommendations": {
53
"setup": "resourceFilename == 'README.md'"
64
},
5+
"chat.tools.terminal.enableAutoApprove": true,
76
"chat.tools.terminal.autoApprove": {
87
"npm run lint": true,
98
"npm run dev": true,
@@ -16,8 +15,12 @@
1615
"github.copilot.chat.githubMcpServer.toolsets": [
1716
"repos,issues,pull_requests,code_search,copilot,web_search"
1817
],
19-
"chat.viewTitle.enabled": true,
20-
"chat.viewSessions.enabled": true,
21-
"github.copilot.chat.cli.customAgents.enabled": true,
22-
"scm.repositories.explorer": true
23-
}
18+
"workbench.browser.enableChatTools": true,
19+
"github.copilot.chat.agentDebugLog.enabled": true,
20+
"github.copilot.chat.agentDebugLog.fileLogging.enabled": true,
21+
"imageCarousel.explorerContextMenu.enabled": true,
22+
"imageCarousel.chat.enabled": true,
23+
"chat.customizationsMenu.enabled": true,
24+
"chat.useCustomizationsInParentRepositories": true,
25+
"chat.useCustomAgentHooks": true
26+
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Soc Ops
1+
# Bingo Mixer
22

3-
Social Bingo game for in-person mixers. Find people who match the questions and get 5 in a row!
3+
Bingo Mixer is a social bingo game for in-person mixers. Find people who match the questions and get 5 in a row!
44

55
📚 **[View Lab Guide](workshop/GUIDE.md)**
66
🚀 **[Start with setup flow](workshop/01-setup.md)**

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
77
<meta name="theme-color" content="#2563eb" />
8-
<meta name="description" content="Social Bingo - Find people who match the questions!" />
9-
<title>Soc Ops - Social Bingo</title>
8+
<meta name="description" content="Bingo Mixer - Find people who match the questions!" />
9+
<title>Bingo Mixer</title>
1010
</head>
1111
<body>
1212
<div id="root"></div>

0 commit comments

Comments
 (0)