Fix internal inconsistencies in the escape room course#2
Open
matthewwilson wants to merge 1 commit into
Open
Conversation
Three places where the course contradicted itself or the actual repo layout: - Act 2 name: README and lesson 0 called it "The Sea Trials", but lessons 4-7 and copilot-instructions.md call it "The Wireless Room". Settled on The Wireless Room (also the correct 14 April setting). - Stale paths: lessons referenced .github/copilot/agents, .github/copilot/hooks and .github/copilot/.mcp.json, and copilot-instructions.md referenced .github/.mcp.json. The real layout is .github/agents/, .github/hooks/ and a root .mcp.json. Lesson 4's config sample also showed args ["../../server/index.js"]; corrected to ["server/index.js"] with cwd "." to match the shipped .mcp.json. - Act 1 dispatch: lesson 2 suggested /fleet for what lesson 1 and copilot-instructions.md frame as a task-tool subagent exercise. /fleet is the Act 3 concept; replaced with natural-language task-tool dispatch of three background researcher subagents. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
While reviewing the IOA escape room slides against this course, three places where the course contradicted itself (or the actual repo layout) came to light. This fixes them so the course is internally consistent.
Changes
Act 2 name. The
README.mdand the lesson 0 welcome table called Act 2 "The Sea Trials", but lessons 4-7 andcopilot-instructions.mdcall it "The Wireless Room". Settled on The Wireless Room - it is the dominant name and the historically correct setting for the 14 April voyage (the sea trials were 2 April).Stale paths. Several lessons referenced
.github/copilot/agents/,.github/copilot/hooks/and.github/copilot/.mcp.json, andcopilot-instructions.mdreferenced.github/.mcp.json. The real layout is.github/agents/,.github/hooks/and a root.mcp.json. Lesson 4's config sample also showedargs: ["../../server/index.js"]; corrected to["server/index.js"]with"cwd": "."to match the shipped.mcp.json.Act 1 dispatch command. Lesson 2 suggested
/fleet …for an exercise that lesson 1 andcopilot-instructions.mdframe as a task-tool subagent exercise./fleetis the Act 3 concept; using it in Act 1 blurs the subagents → MCP → fleet arc. Replaced with natural-language task-tool dispatch of three background researcher subagents (the hints already pointed atrun_in_background: true).Related
Companion PR on the slide-decks repo aligns the IOA slides with the implemented course: instil/slide-decks#3
🤖 Generated with Claude Code