This directory contains 24 agent files for GitHub Copilot and GitHub Agentic Workflows. It is the single source of truth for every agent persona used across the repository.
Canonical long-form catalog: see
AGENTS.mdat the repository root for full capability matrices, skill-mapping tables, and invocation examples. Workflow prompt imports (not agent files): see.github/prompts/README.md.
gh-aw distinguishes two ways to package a reusable persona. Both live in this directory, but they are used for different things.
| Kind | Filename convention | Frontmatter shape | Used by |
|---|---|---|---|
| Persona agent (Copilot Agent File) | <name>.md |
name, description, tools: ["*"] |
assign_copilot_to_issue, create_pull_request_with_copilot, or a single workflow that needs exactly one persona |
| Workflow-specialist agent | <name>.agent.md |
name, description, optional disable-model-invocation: true |
Invoked by name from within agentic workflows or manual flows (not auto-selected by Copilot) |
| Shared developer instructions | developer.instructions.md |
description, applyTo: "**/*" |
Applied repository-wide to every Copilot session |
Per gh-aw's packaging & imports guide, a workflow may import at most one Copilot Agent File, but can mix it with any number of plain-prompt imports from .github/prompts/.
These are the production personas that human maintainers assign to GitHub issues and PRs. They match the catalog in AGENTS.md and the "🎯 Agent Quick Reference" in copilot-instructions.md.
| # | File | Persona | Primary domain |
|---|---|---|---|
| 1 | security-architect.md |
security-architect |
Security architecture, ISMS compliance (ISO 27001 / NIST CSF / CIS Controls v8.1), STRIDE threat modeling |
| 2 | documentation-architect.md |
documentation-architect |
C4 architecture models, Mermaid diagrams, Hack23 documentation standards |
| 3 | quality-engineer.md |
quality-engineer |
HTML/CSS validation, accessibility (WCAG 2.1 AA), link checking, CI quality gates |
| 4 | frontend-specialist.md |
frontend-specialist |
Static HTML/CSS, responsive design, 14-language localization, modern frontend |
| 5 | isms-compliance-manager.md |
isms-compliance-manager |
Hack23 ISMS enforcement, audit preparation, gap analysis |
| 6 | deployment-specialist.md |
deployment-specialist |
GitHub Pages, CI/CD automation, GitHub Actions security |
| 7 | devops-engineer.md |
devops-engineer |
CI/CD pipelines, infrastructure automation, monitoring, performance optimization |
| 8 | intelligence-operative.md |
intelligence-operative |
Political science, OSINT, Swedish politics, behavioral analysis, risk indicators |
| 9 | news-journalist.md |
news-journalist |
Political journalism, editorial standards, OSINT/INTOP data-driven reporting |
| 10 | content-generator.md |
content-generator |
Automated content generation, intelligence reports, 14-language templated rendering |
| 11 | data-pipeline-specialist.md |
data-pipeline-specialist |
CIA data consumption, ETL workflows, caching strategies, validation |
| 12 | data-visualization-specialist.md |
data-visualization-specialist |
Chart.js / D3.js, interactive dashboards, political metrics visualization |
| 13 | task-agent.md |
task-agent |
Product analysis, issue creation, Playwright testing, agent coordination |
| 14 | ui-enhancement-specialist.md |
ui-enhancement-specialist |
Design system, cyberpunk theme, CSS-only data visualizations, accessibility |
Persona agents in this repo use the minimal Copilot Agent File contract:
---
name: <agent-name>
description: <one-line summary of expertise>
tools: ["*"]
---MCP servers are not declared per-agent; they are configured repository-wide in .github/copilot-mcp.json and made available to every agent automatically.
// 1. Assign a persona to an existing issue
assign_copilot_to_issue({
owner: "Hack23",
repo: "riksdagsmonitor",
issue_number: 123,
custom_agent: "intelligence-operative",
custom_instructions: "Build a voting-discipline dashboard for 2026 Q1"
})
// 2. Delegate a task that should produce a PR
create_pull_request_with_copilot({
owner: "Hack23",
repo: "riksdagsmonitor",
title: "Add coalition-cohesion panel",
problem_statement: "Implement a CSS-only stacked-bar panel ...",
base_ref: "main"
})Full invocation examples, skill-mapping tables, and per-persona capabilities live in AGENTS.md.
These agents are not selected automatically by Copilot (most carry disable-model-invocation: true). They encode reusable procedures for specific CI / authoring flows. They are referenced by name from agentic workflows, manual tasks, or other agents.
| # | File | Agent | Purpose |
|---|---|---|---|
| 1 | agentic-workflows.agent.md |
agentic-workflows |
Create, debug, and upgrade gh-aw workflows with intelligent prompt routing |
| 2 | ci-cleaner.agent.md |
ci-cleaner |
Format sources, run linters, fix issues, run tests, recompile workflow lock files |
| 3 | contribution-checker.agent.md |
contribution-checker |
Evaluate a PR against the target repository's CONTRIBUTING.md |
| 4 | create-safe-output-type.agent.md |
(procedure) | Guide for adding a new safe-output type to gh-aw |
| 5 | custom-engine-implementation.agent.md |
(procedure) | Implement a custom agentic engine inside gh-aw |
| 6 | grumpy-reviewer.agent.md |
grumpy-reviewer |
Critical code reviewer with 40+ years of (sarcastic) experience |
| 7 | interactive-agent-designer.agent.md |
interactive-agent-designer |
Wizard that guides users through creating agents, prompts, and workflow descriptions |
| 8 | technical-doc-writer.agent.md |
technical-doc-writer |
AI technical documentation writer using GitHub Docs voice |
| 9 | w3c-specification-writer.agent.md |
w3c-specification-writer |
Technical specification writer following W3C conventions |
| File | Applies to | Purpose |
|---|---|---|
developer.instructions.md |
**/* (every file in every session) |
Cross-cutting Developer Instructions for GitHub Agentic Workflows — style, shell-safety, commit hygiene |
| Constraint | Value | Enforced by |
|---|---|---|
| Maximum file size | 16 KB | GitHub Copilot agent runtime |
Frontmatter tools: |
["*"] for persona agents |
Repository convention (MCP servers configured globally) |
| ISMS governance | CEO approval for changes under .github/agents/ |
Change_Management.md — Normal change |
| AI attribution | AI-assisted edits require human review + DCO sign-off | AI_Policy.md |
| Prohibited reading | Do not read .github/agents/* from other agents (see copilot-instructions.md <disallowed_actions>) |
Repository policy |
flowchart TD
A[I need to do …] --> B{Is it a single<br/>well-scoped issue?}
B -- yes --> C{Domain?}
B -- no, it's a recurring<br/>workflow → .agent.md or gh-aw
C --> D[Security → security-architect]
C --> E[Docs/diagrams → documentation-architect]
C --> F[HTML/CSS/a11y → quality-engineer or ui-enhancement-specialist]
C --> G[Political analysis → intelligence-operative]
C --> H[News article → news-journalist or content-generator]
C --> I[CI/CD → deployment-specialist or devops-engineer]
C --> J[Data pipeline → data-pipeline-specialist]
C --> K[Visualisation → data-visualization-specialist]
C --> L[Compliance audit → isms-compliance-manager]
C --> M[Product issues → task-agent]
style A fill:#0a0e27,stroke:#00d9ff,color:#e0e0e0
style B fill:#1a1e3d,stroke:#ff006e,color:#e0e0e0
See AGENTS.md §"Best Practices" for full decision guidance.
AGENTS.md— canonical persona catalog with skill mapping and invocation examplesSKILLS.md— 91 agent skills by category.github/skills/README.md— per-skill index.github/prompts/README.md— prompt modules imported by agentic workflows.github/workflows/README.md— workflow catalogWORKFLOWS.md— full CI/CD and agentic workflow referencecopilot-instructions.md— repository-wide Copilot rules
📋 Document owner: CEO | 🏷️ Classification: Public | 🔄 Review cycle: Quarterly