feat: add Swedish payroll & VAT skills and init support contact route (#202)

Add Claude Code skills for Swedish payroll and VAT compliance reference.
Initialize extension system in the support contact API route so email
service is available.

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jakob Wennberg
2026-04-08 21:39:17 +02:00
committed by GitHub
co-authored by Claude Opus 4.6
parent 0baeea303f
commit dec9a37d2d
15 changed files with 1319 additions and 0 deletions
+3
View File
@@ -3,6 +3,9 @@ import { NextResponse } from 'next/server'
import { getEmailService } from '@/lib/email/service'
import { SUPPORT_RECIPIENT_EMAIL } from '@/lib/support'
import { requireCompanyId } from '@/lib/company/context'
import { ensureInitialized } from '@/lib/init'
ensureInitialized()
function escapeHtml(s: string): string {
return s.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;')