Troubleshooting
Plugin not found after update
Section titled “Plugin not found after update”Clear VS Code cache and restart:
- macOS:
~/Library/Application Support/Code/agentPlugins/ - Windows:
%APPDATA%\Code\agentPlugins\ - Linux:
~/.config/Code/agentPlugins/
Hooks fail with “command not found”
Section titled “Hooks fail with “command not found””- Verify paths in
hooks.jsonare relative to the plugin root directory - Ensure bash scripts have executable permissions (
chmod +x) - Check shebang line:
#!/bin/bashor#!/usr/bin/env bash
Agents not visible in VS Code
Section titled “Agents not visible in VS Code”- Requires VS Code 1.113.0 or later
- Enable
chat.plugins.enabledin VS Code settings - Verify plugin installation via the Extensions panel
GitHub authentication errors
Section titled “GitHub authentication errors”- VS Code: Sign out and sign back in via the Copilot extension
- CLI: Run
gh auth loginand ensure the Copilot scope is included - Verify your token has required permissions (repo, read:org)
MCP servers not connecting
Section titled “MCP servers not connecting”- Verify
.mcp.jsonexists at the plugin root - Restart VS Code to reload MCP configuration
- Check network connectivity to MCP endpoints
- For Azure DevOps MCP: ensure
npx @azure-devops/mcp@nextresolves
Tool extensions not syncing
Section titled “Tool extensions not syncing”- Ensure
.github/devsquad/tool-extensions/YAML files exist - Run the sync script manually
- Check sessionStart hook output for warnings
- Verify plugin version matches the extensions
Work items not creating
Section titled “Work items not creating”- Verify board configuration in
.memory/board-config.md - Check GitHub or Azure DevOps permissions
- GitHub: Labels are created automatically if they do not exist
- Azure DevOps: Verify process template detection (Scrum, Agile, Basic, CMMI)
Markdown lint warnings
Section titled “Markdown lint warnings”Some rules are intentionally disabled in .markdownlint.yaml:
- MD013: Line length (tables and links frequently exceed 80 chars)
- MD033: Inline HTML (Azure DevOps mermaid uses
:::mermaid) - MD041: First-line heading (agent files start with YAML frontmatter)