🎯

observability-setup

🎯Skill

from navikt/copilot

VibeIndex|
What it does

Configures and sets up comprehensive observability infrastructure for Nav applications, including logging, monitoring, tracing, and metrics integration with Nais platform standards.

observability-setup

Installation

Install skill:
npx skills add https://github.com/navikt/copilot --skill observability-setup
8
-
Last UpdatedJan 26, 2026

Skill Details

SKILL.md

Overview

# πŸ€– Nav Copilot Customizations

A curated collection of GitHub Copilot customizations for building Nav applications following Nav's development standards, including Aksel design system, Nais platform patterns, and Security Playbook.

πŸš€ What is Nav Copilot Customizations?

This repository provides specialized GitHub Copilot customizations for the Nav ecosystem:

  • πŸ€– [6 Custom Agents](#-agents) - Specialized AI assistants for Nav-specific domains (Nais, Aksel, Kafka, Auth, Observability, Security)
  • πŸ“‹ [4 Instructions](#-instructions) - File-pattern-based coding standards that apply automatically
  • ⚑ [3 Prompts](#-prompts) - Quick scaffolding templates for common Nav patterns
  • 🎯 [5 Skills](#-skills) - Production-proven patterns extracted from real Nav repositories

πŸ”§ How to Use

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 customizations
  • search_customizations - Search by query, type, or tags
  • get_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

---

πŸ€– Agents

Specialized AI assistants for the Nav ecosystem. Use them by calling @agent-name in Copilot Chat or when assigning issues to Copilot coding agent.

Available agents: @nais-agent, @auth-agent, @kafka-agent, @aksel-agent, @observability-agent, @security-champion-agent

πŸ‘‰ [View full agent documentation β†’](docs/README.agents.md)

---

πŸ“‹ Instructions

File-pattern-based rules that Copilot applies automatically when creating or modifying files matching specific patterns.

Available instructions: Testing, Kotlin/Ktor, Next.js/Aksel, Database migrations

πŸ‘‰ **[View full instructions documenta