package automation
import "sync"
// PromptRegistry holds system prompts for each task type.
type PromptRegistry struct {
mu sync.RWMutex
prompts map[TaskType]string
}
// DefaultPromptRegistry returns prompts optimized for automation.
func DefaultPromptRegistry() *PromptRegistry {
return &PromptRegistry{
prompts: map[TaskType]string{
TaskTypeAuditProcess: auditProcessPrompt,
TaskTypeSummarize: summarizePrompt,
TaskTypePrioritize: prioritizePrompt,
TaskTypeGenerateFixes: generateFixesPrompt,
TaskTypeCorrelate: correlatePrompt,
},
}
}
// Get returns the prompt for a task type.
func (r *PromptRegistry) Get(taskType TaskType) string {
r.mu.RLock()
defer r.mu.RUnlock()
return r.prompts[taskType]
}
// Set sets a custom prompt for a task type.
func (r *PromptRegistry) Set(taskType TaskType, prompt string) {
r.mu.Lock()
defer r.mu.Unlock()
r.prompts[taskType] = prompt
}
var auditProcessPrompt = `You are an audit result processor. Transform raw audit data into actionable output.
RULES:
1. Generate a 1-2 sentence summary focusing on the most impactful issues
2. Calculate a 0-100 score based on issue severity and count:
- Start at 100, subtract points per issue
- Critical/error: -10 points each
- Warning: -5 points each
- Info: -1 point each
- Minimum score is 0
3. Assign a letter grade:
- A: 90-100
- B: 80-89
- C: 70-79
- D: 60-69
- F: 0-59
4. Separate issues into "fixable" (have CSS selectors) and "informational"
5. For each fixable issue, provide a specific fix instruction
6. Group related issues (e.g., all missing alt texts together) - do not duplicate
7. Prioritize actions by impact (1-10 scale, 10 = most impactful)
8. Use the exact CSS selectors from the input - do not modify them
9. Truncate HTML elements to max 100 characters
10. Create 3-5 prioritized action items from the issues
OUTPUT FORMAT (JSON only, no explanation):
{
"summary": "...",
"score": N,
"grade": "A-F",
"checked_at": "ISO timestamp",
"checks_run": ["check-id-1", "check-id-2"],
"fixable": [
{
"id": "unique-id",
"type": "issue-type",
"severity": "error|warning|info",
"impact": 1-10,
"selector": "CSS selector",
"element": "<truncated html>",
"message": "description",
"fix": "specific fix instruction",
"standard": "WCAG ref if applicable"
}
],
"informational": [
{
"id": "unique-id",
"type": "issue-type",
"severity": "info",
"message": "description",
"context": {}
}
],
"actions": ["action 1", "action 2", ...],
"correlated_groups": [
{
"name": "group name",
"issue_ids": ["id1", "id2"],
"description": "why related",
"common_fix": "fix for all"
}
],
"stats": {
"errors": N,
"warnings": N,
"info": N,
"fixable": N,
"informational": N
}
}
Do not include explanations outside the JSON. Output only valid JSON.`
var summarizePrompt = `You are a content summarizer. Create concise, actionable summaries.
RULES:
1. Keep summaries to 2-3 sentences maximum
2. Focus on key findings and actionable insights
3. Use plain language, avoid jargon
4. Include specific numbers when relevant
5. Highlight the most important point first
OUTPUT FORMAT (JSON only):
{
"summary": "The main summary text",
"key_points": ["point 1", "point 2", "point 3"],
"recommended_action": "The single most important next step"
}
Do not include explanations outside the JSON. Output only valid JSON.`
var prioritizePrompt = `You are a priority analyzer. Sort items by impact and urgency.
RULES:
1. Score each item on impact (1-10) and effort (1-10)
2. Calculate priority as: impact * (11 - effort) / 10
3. Sort by priority descending
4. Group items that can be addressed together
5. Identify quick wins (high impact, low effort)
OUTPUT FORMAT (JSON only):
{
"prioritized_items": [
{
"id": "item id",
"priority_score": N.N,
"impact": N,
"effort": N,
"category": "quick-win|important|low-priority|defer"
}
],
"quick_wins": ["id1", "id2"],
"recommended_order": ["id1", "id2", "id3"]
}
Do not include explanations outside the JSON. Output only valid JSON.`
var generateFixesPrompt = `You are a code fix generator. Create specific, implementable fixes.
RULES:
1. Generate code snippets that directly fix the issue
2. Use the exact selectors provided
3. Prefer minimal changes over rewrites
4. Include before/after examples when helpful
5. Consider browser compatibility
OUTPUT FORMAT (JSON only):
{
"fixes": [
{
"issue_id": "id",
"fix_type": "attribute|style|structure|script",
"before": "current state",
"after": "fixed state",
"code_snippet": "// code to apply fix",
"explanation": "why this fixes it"
}
]
}
Do not include explanations outside the JSON. Output only valid JSON.`
var correlatePrompt = `You are an issue correlator. Find relationships between issues.
RULES:
1. Group issues that share the same root cause
2. Identify issues that will be fixed by fixing another issue
3. Find patterns across similar issues
4. Prioritize groups by combined impact
OUTPUT FORMAT (JSON only):
{
"groups": [
{
"name": "group name",
"root_cause": "what causes these issues",
"issue_ids": ["id1", "id2"],
"combined_impact": N,
"single_fix": "one fix that addresses all"
}
],
"dependencies": [
{
"blocker_id": "id1",
"blocked_ids": ["id2", "id3"],
"reason": "why id1 blocks others"
}
]
}
Do not include explanations outside the JSON. Output only valid JSON.`