Quick Install (One-Click)
Install customizations directly in VS Code using install badges in the documentation:
- [View all Agents β](docs/README.agents.md) - Click to install individual agents
- [View all Instructions β](docs/README.instructions.md) - Click to install coding standards
- [View all Prompts β](docs/README.prompts.md) - Click to install scaffolding templates
Discover & Search with MCP
Use our MCP Discovery Server to browse and install customizations directly from GitHub Copilot Chat.
#### For Nav Users (Enterprise Allow List)
This MCP server is pre-approved on Nav's enterprise allow list and available through the MCP registry:
1. Install from Extensions View:
- Open VS Code Extensions view (
Cmd+Shift+X) - Search for
@mcp in the search bar - Find Nav Copilot Discovery in the MCP servers list
- Click Install
2. Or install from IntelliJ:
- Open Settings β Tools β MCP Servers
- Browse available MCP servers
- Install Nav Copilot Discovery
3. Use Discovery Tools in Copilot Chat:
```text
@workspace /mcp list_agents
@workspace /mcp search_customizations query:"kafka"
@workspace /mcp get_installation_guide type:"agent" name:"nais-agent"
```
#### For Non-Nav Users (Manual Configuration)
1. Add to VS Code Settings (settings.json):
```json
{
"github.copilot.chat.mcp.enabled": true,
"github.copilot.chat.mcp.servers": {
"nav-discovery": {
"type": "streamable-http",
"url": "https://mcp-onboarding.nav.no/mcp"
}
}
}
```
2. Authenticate via GitHub OAuth (requires Nav organization membership)
3. Use Discovery Tools in Copilot Chat:
```text
@workspace /mcp list_agents
@workspace /mcp search_customizations query:"kafka"
@workspace /mcp get_installation_guide type:"agent" name:"nais-agent"
```
Available Discovery Tools:
list_agents, list_instructions, list_prompts, list_skills - Browse all customizationssearch_customizations - Search by query, type, or tagsget_installation_guide - Get install instructions for any customization
Install with VS Code Tasks
Run the task: "Install Nav Copilot Customizations" from VS Code tasks menu (Cmd+Shift+P β "Tasks: Run Task")
Or install individually:
- Install Copilot Instructions - Main project instructions
- Install All Agents - All 6 specialized agents
- Install All Instructions - All 4 file-pattern rules
- Install All Prompts - All 3 scaffolding templates
- Install All Skills - All 5 production patterns
---