github-agentic-workflows

github-agentic-workflows is a skill for Claude Code, Codex from Hack23/European-Parliament-MCP-Server. It costs 42 tokens per session (2,636 once invoked), scanned A, original, Apache-2.0.

A guide to GitHub Agentic Workflows, a tool for defining AI-driven repository tasks in Markdown and compiling them into GitHub Actions workflows.

In plain words
What is it for?
Use it to create scheduled or event-triggered AI tasks, assign work to Copilot coding agents, coordinate stacked pull requests, and protect automated workflows from prompt injection and data leaks.
Why use it?
It helps automate repository work while documenting workflow steps, permissions, security checks, and the selected AI system in one place.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Codex.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/hack23/european-parliament-mcp-server/github-agentic-workflows
Any agent
npx skills add Hack23/European-Parliament-MCP-Server --skill github-agentic-workflows
Clone the repo
git clone --depth 1 https://github.com/Hack23/European-Parliament-MCP-Server

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for github-agentic-workflows

README.md
[![agentmods](https://agentmods.dev/badge/skills/hack23/european-parliament-mcp-server/github-agentic-workflows.svg)](https://agentmods.dev/skills/hack23/european-parliament-mcp-server/github-agentic-workflows)
Your own site
<a href="https://agentmods.dev/skills/hack23/european-parliament-mcp-server/github-agentic-workflows"><img src="https://agentmods.dev/badge/skills/hack23/european-parliament-mcp-server/github-agentic-workflows.svg" alt="Measured on agentmods" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,636 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.02636
Opus 5 $0.00021 $0.01318
Sonnet 5 $0.00008 $0.00527
Haiku 4.5 $0.00004 $0.00264

Measured 6d ago against content hash 9c0e6234eeef, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

github-agentic-workflows scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads MCP configurationlowAgent snooping

mcp.json carries server URLs and auth tokens; reading it lets a mod discover and abuse other integrations.

MCP server configuration is defined in `.github/copilot-mcp.json`. Secret references (`${{ secrets.* }}`) are resolved by the Copilot runtime. See `.github/copilot-mcp.json` for the canonical configuration.

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

.github/skills/github-agentic-workflows/SKILL.md · 270 lines

How it starts

The opening of the file, as written. The whole thing — 270 lines — stays where its author put it; the contents beside it link to each section on GitHub.

GitHub Agentic Workflows Skill

Purpose

Comprehensive guidance for GitHub Agentic Workflows (gh-aw) — a Go-based GitHub CLI extension that enables writing agentic workflows in natural language using markdown files, compiled into GitHub Actions workflows with defense-in-depth security. Also covers Copilot coding agent orchestration, MCP server configuration, stacked PRs, and OWASP Agentic security.

When to Use

  • ✅ Writing markdown-defined AI workflows (gh-aw) for automated repository tasks
  • ✅ Orchestrating Copilot coding agent assignments with base_ref and custom_instructions
  • ✅ Building multi-step agentic workflows with stacked PRs
  • ✅ Configuring safe outputs, permissions, and AI engine selection
  • ✅ Securing agentic pipelines against prompt injection and data exfiltration
  • ✅ Implementing Continuous AI patterns (scheduled + event-triggered AI automation)

GitHub Agentic Workflows (gh-aw)

Overview

GitHub Agentic Workflows (gh-aw) augments deterministic CI/CD with Continuous AI — systematic, automated application of AI to software collaboration. Workflows are defined in markdown with YAML frontmatter and compiled to GitHub Actions via gh aw compile.

Key capabilities: Issue triage, CI failure diagnosis, documentation maintenance, code quality improvement, metrics/analytics, security scanning, multi-repo coordination, project planning.

Workflow Definition Format

---
timeout-minutes: 5
on:
  schedule: daily           # or cron: "0 9 * * 1-5", or event triggers
  issue:
    types: [opened, reopened]
permissions:
  contents: read
  issues: read
  pull-requests: read
tools:
  github:
    toolsets: [issues, labels, pull_requests, repos]
safe-outputs:
  create-issue:
    title-prefix: "[report] "
    labels: [automated, report]
    close-older-issues: true
  add-labels:
    allowed: [bug, feature, enhancement, documentation]
  add-comment: {}
  create-pull-request:
    title-prefix: "[auto] "
    max-changed-files: 5
---

# Workflow Title

Natural language instructions for the AI agent describing what to do.

## Context
- Repository-specific guidance
- What to analyze or act on

## Rules
- Constraints and boundaries
- Output format requirements

Read the full file on GitHub · 270 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 270 lines · 42 tokens per session scan A 9c0e6234eeef

Subscribe to this mod's changes

github-agentic-workflows is a skill published in the GitHub repository Hack23/European-Parliament-MCP-Server (28 stars, last pushed yesterday), licensed Apache-2.0. It adds 42 tokens to every session and 2,636 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (reads mcp configuration). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

council-gate

Quality gate using LLM Council multi-model consensus for CI/CD pipelines. Use for automated approval workflows and pipeline quality checks. Keywords: gate, CI, CD, pipeline, automated approval, quality gate, GitHub Actions.

amiable-dev/llm-council · 50 tokens

publishing

Publishing and release workflow with semantic-release and GitHub Actions.

adeze/raindrop-mcp · 14 tokens

servicenow-cicd-devops

ServiceNow release-engineering surface — CI/CD app install/scan/rollback, DevOps change-control & artifact registration, update-set create/preview/commit/back-out, source-control apply/import, plugin activate/rollback, and ATF test-suite runs via the servicenow-api MCP server. Use when the agent must deploy or roll…

Knuckles-Team/servicenow-api · 185 tokens

source-command-triage-prs

Night-shift maintenance routine (cycle D). Triages failing checks on the agent fleet's own (Codex/) open PRs — auto-fixing mechanical classes as fix PRs, escalating judgment ones, skipping the rest. Never merges.

vscarpenter/gsd-task-manager · 57 tokens

gitlab-pipelines

CI/CD pipeline review on GitLab via the gitlab-api MCP server — review pipeline results for a project, a group, or the whole instance, drill into the CI jobs of a pipeline, and read a job's log; also trigger a pipeline on a ref. Use when the agent must review CI results across a project/group/organization, check…

Knuckles-Team/gitlab-api · 130 tokens

blazemeter-integrations

Comprehensive guide for BlazeMeter Integrations, including APM tools, CI/CD pipelines, and development tools. Use when working with integrations for (1) Integrating APM tools (AppDynamics, Datadog, New Relic, CloudWatch, DX APM, Dynatrace, Delphix), (2) Integrating CI/CD tools (Jenkins, GitHub Actions, GitLab CI/CD…

Blazemeter/bzm-mcp · 131 tokens