Gå til hovedindhold

MCP & CLI BuildersOpen SourceAgent Skill Standard

Agent Skills

Åben standard til at give AI-agenter nye kompetencer og domæneekspertise

Agent Skills definerer et standardiseret SKILL.md-format, der pakker instruktioner, scripts og ressourcer i bærbare, maskinopdagbare kompetencepakker til AI-agenter.

Kom hurtigt i gang

skills/my-skill/SKILL.md

Kom i gang med Agent Skills i dit projekt.

---
name: my-danish-data-skill
description: Query Danish public registries and normalize results for agent consumption.
---

# Danish Data Access Skill

## When to use
Activate this skill when the agent needs to query Danish public data registries.

## Instructions
1. Use the DAWA API for address lookups: https://api.dataforsyningen.dk/adresser
2. Use the CVR API for company lookups: https://cvrapi.dk/api
3. Always validate and normalize response data before returning

Om Agent Skills

Agent Skills er en open source-specifikation og community-standard til at pakke domæneekspertise i strukturerede skill-filer, som AI-kodeagenter kan opdage og eksekvere. En skill er en mappe med en SKILL.md-fil (med YAML-frontmatter til metadata og Markdown til instruktioner), valgfrie hjælpescripts, eksempler og referencemateriale. Skills publiceres via et discovery-endpoint (/.well-known/agent-skills/index.json) i overensstemmelse med schemas.agentskills.io, så agenter autonomt kan finde og aktivere relevante kompetencer. Specifikationen dækker hurtigstart til oprettelse af skills, best practices, optimering af beskrivelser til LLM-forståelse, evalueringsrammer og integration af scripts. Agent Skills understøttes allerede af Google Antigravity IDE, Cursor og andre agentmiljøer.

Danske data- og produkt-guides

Hvordan Agent Skills bruges til dansk digital infrastruktur.

Publish Danish Data Access Skills via Agent Skills Discovery

AgentAccess.dk

Expose a /.well-known/agent-skills/index.json on your Danish platform so that AI agents can autonomously discover and activate skills for querying CVR, DAWA, DMI, and other Danish registries.

# Serve a discovery index from your Next.js app
# app/.well-known/agent-skills/index.json/route.ts
import { NextResponse } from 'next/server'

export function GET() {
  return NextResponse.json({
    schema: 'https://schemas.agentskills.io/discovery/0.2.0',
    skills: [
      { slug: 'cvr-lookup', name: 'CVR Company Lookup', path: '/skills/cvr-lookup/SKILL.md' },
      { slug: 'dawa-address', name: 'DAWA Address Normalization', path: '/skills/dawa-address/SKILL.md' },
    ]
  })
}

Create a SKILL.md for Danish MitID HITL Safeguards

Package the MitID Human-in-the-Loop safeguard workflow as a portable Agent Skill that any compatible agent runtime can discover and follow.

---
name: mitid-hitl-safeguards
description: Mandatory Human-in-the-Loop safeguards when encountering Danish MitID or NemLog-in auth gates.
---

# MitID HITL Safeguards

When the agent encounters a MitID or NemLog-in authentication gate:
1. **STOP** all autonomous actions immediately
2. **NOTIFY** the human operator with the URL and context
3. **WAIT** for explicit human confirmation before proceeding
4. **NEVER** attempt to automate MitID app-swaps, SMS challenges, or CAPTCHA flows

Nøglefunktioner

  • Standardiseret SKILL.md-format med YAML-frontmatter og Markdown-instruktioner
  • Maskinopdagbar via /.well-known/agent-skills/index.json-endpoint
  • Understøtter hjælpescripts, eksempler og referencemateriale i skill-pakker
  • Best practices og evalueringsrammer for skill-kvalitet
  • Optimerede beskrivelsesretningslinjer for maksimal LLM-forståelse
  • Kompatibel med Google Antigravity IDE, Cursor og andre agentmiljøer