Playbook Guide VS Code Extension
Playbook Guide helps engineers bootstrap and validate a Modern AI Playbook setup in any repository.
Quick Start
After installing from the VS Code Marketplace:
- Open a repository folder in VS Code.
- Open Command Palette (
Ctrl+Shift+P).
- Run
Playbook Guide: Daily Start.
- Run
Playbook Guide: Validate Agent Setup.
- Run
Playbook Guide: Run Full Setup Sequence (optional, executes tool/setup commands).
Playbook Guide: Initialize Project is optional and available as a manual fallback.
The extension creates and maintains:
.github/agents/playbook-guide.agent.md
AGENTS.md
memory-bridge.md
Use Playbook Guide: Update Memory Bridge at the end of each session to capture decisions and next steps.
Command Output (Actual Extension Behavior)
This extension manages workspace files and guidance. It can also execute a full setup sequence when you run Playbook Guide: Run Full Setup Sequence.
Typical outputs users will see:
Playbook Guide auto-setup completed for this workspace.
Playbook Guide initialized. Created: X, Updated: Y.
Daily start ready: review memory bridge, define a plan, then start implementation.
Playbook Guide setup looks good.
Validate Agent Setup checks these files:
.github/agents/playbook-guide.agent.md
AGENTS.md
memory-bridge.md
If checks fail, details are shown in the Playbook Guide output channel.
Run Full Setup Sequence executes setup flow steps and prints a status table in the Playbook Guide output channel. It checks and/or attempts:
- Prerequisites (
git, node, npm, code)
- Optional repository clone (or use current workspace)
- Copilot CLI check and install attempt
- Dependency install (
npm install) when package.json exists
- Test run (
npm test) when package.json exists
- Starts Copilot CLI and sends
/login
Automation boundaries:
- Browser-based authentication still requires user confirmation.
- External installs may fail due to org policy, admin permissions, or restricted shell access.
- Opening the cloned repository in a new VS Code window is prompted for confirmation.
- Agency CLI installation is intentionally excluded from the public marketplace extension.
Commands
- Playbook Guide: Initialize Project
- Playbook Guide: Daily Start
- Playbook Guide: Update Memory Bridge
- Playbook Guide: Validate Agent Setup
- Playbook Guide: Run Full Setup Sequence
What it creates
.github/agents/playbook-guide.agent.md
AGENTS.md
memory-bridge.md
The extension is idempotent and avoids destructive overwrites.
Development
npm install
npm run compile
Press F5 in VS Code to launch an Extension Development Host.
Package
npm run package:vsix
Publish
npx vsce login <publisher-name>
npm run publish:patch
You need a VS Code Marketplace publisher and PAT.
Local Install
In VS Code:
- Open Extensions view
- Select the menu in the top-right corner
- Choose Install from VSIX...
- Pick the generated
.vsix file